<% '****************************************************************************************************************** 'System Name : ELIS Ver 1.0 '****************************************************************************************************************** 'File Name : inc_html.asp 'File Description : System HTML Configuration 'Developer : Taejin Kwon 'Date : 3/29/2009 'Modifier(Date) : None '****************************************************************************************************************** ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderText ' Description : Text包访 HTML ' Parameters : pStr, pStrAttList ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderText(ByVal pStr, ByVal pStrAttList) FuncRenderText = "" & pStr & "" End Function ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderSPAN ' Description : SPAN Tag积己 ' Parameters : pStr, pStrAttList ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderSPAN(ByVal pStr, ByVal pStrAttList) FuncRenderSPAN = "" & pStr & "" End Function ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderBold ' Description : 苯篮 巩磊肺 ' Parameters : pStr ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderBold(ByVal pStr) FuncRenderBold = "" & pStr & "" End Function ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderScript ' Description : Script Tag 积己 ' Parameters : pStr, pStrAttList ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderScript(ByVal pStr, ByVal pStrAttList) FuncRenderScript = "" End Function ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderLink ' Description : Link 积己 ' Parameters : pUrl, pHtmText, pStrAttList ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderLink(ByVal pUrl, ByVal pHtmText, ByVal pStrAttList) FuncRenderLink = "" & pHtmText & "" End Function ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderImage ' Description : 捞固瘤 积己 ' Parameters : pUrlSource, piWidth, piHeight, pStrDesc, pStrAttList ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderImage(ByVal pUrlSource, ByVal piWidth, ByVal piHeight, ByVal pStrDesc, ByVal pStrAttList) FuncRenderImage = "" End Function ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderTable ' Description : Table Tag积己 ' Parameters : pHtmRows, pStrAttList ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderTable(ByVal pHtmRows, ByVal pStrAttList) FuncRenderTable = "" & pHtmRows & "" End Function ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderTR ' Description : TR Tag 积己 ' Parameters : pStrTemp, pStrAttList ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderTR(ByVal pStrTemp, ByVal pStrAttList) FuncRenderTR = "" & pStrTemp & "" End Function ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderTD ' Description : TD Tag 积己 ' Parameters : pStrTemp, pStrAttList ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderTD(ByVal pStrTemp, ByVal pStrAttList) FuncRenderTD = "" & pStrTemp & "" End Function Function FuncRenderTDMenu(ByVal pStrTemp, ByVal pStrAttList, ByVal pLayer) FuncRenderTDMenu = "" & pStrTemp & "" End Function ' ----------------------------------------------------------------------------- ' Function Name : FuncRenderButton ' Description : Button Tag积己 ' Parameters : pStr, pStrAttList ' Returns : String ' Notes : None ' ----------------------------------------------------------------------------- Function FuncRenderButton(ByVal pStr, ByVal pStrAttList) FuncRenderButton = "" & pStr & "" End Function %>