012. xfnToHtmlString
xfnToHtmlString 함수
Teamdata21의 CSS 스타일이 적용된 HTML 소스가 반환되는 함수입니다.
구문
xfnToHtmlString(strContents As String, Optional ByVal strTitle As String = "") As String
구성요소
strContents
strTitle
설 명
HTML의 본문을 의미합니다.
페이지의 Title을 의미합니다.
반환값
성공 : HTML 태그가 포함된 문자열(String)이 반환됩니다.
참고
유사한 함수
문자열을 Contents로 삼아 HTML 파일을 생성합니다.
xfnToHtml(strContents As String, Optional ByVal blnForceResultOpen As Boolean = False
, Optional ByVal strFilePathName As String = "", Optional ByVal strTitle As String = "") As Boolean
레코드셋을 Contents로 삼아 HTML 태그를 생성합니다.
xfnRst2HTML(rst As ADODB.Recordset, Optional objColCaptions As xProperties
, Optional intDisplayType As xENM_HTML_DISP_TYPE = xenmHtmlDisp_Table) As String
예제
코드
?xfnToHtmlString("Contents가 들어갈 부분입니다.","HtmlTitle부분입니다.")
<html>
<head>
<title>HtmlTitle부분입니다.</title>
<style type="text/css">
<!--
/* TeamData21에 특화된 <h1> ~ <h6> 태그 활용을 위한 스타일 시작 */
h1
{
color: #1F487C;
margin: 1.2em 0em 0.8em 0em;
font: normal normal bold 2em Batang, Verdana, AppleGothic, Sans-serif;
}
h2
{
color: #1F487C;
margin: 1.2em 0em 0.8em 0em;
font: normal normal bold 1.7em "malgun gothic", Verdana, AppleGothic, Sans-serif;
}
h3
{
color: #1F487C;
margin: 1.2em 0em 0.8em 0em;
font: normal normal bold 1.4em "malgun gothic", Verdana, AppleGothic, Sans-serif;
}
h4
{
color: #1F487C;
margin: 1.2em 0em 0.8em 0em;
font: normal normal bold 1.1em "malgun gothic", Verdana, AppleGothic, Sans-serif;
}
/* TeamData21에 특화된 <h1> ~ <h6> 태그 활용을 위한 스타일 종료 */
/* TeamData21에 특화된 소스코드를 위한 스타일 시작 */
code pre
{
padding: 0.5em 0.5em 0.5em 0.5em ;
background-color:#DBE5F1;
width:640px;
overflow:scroll;
color: #000000;
}
/* TeamData21에 특화된 소스코드를 위한 스타일 종료 */
/* TeamData에 특화된 테이블 헤더 스타일 시작*/
.teamdata_table th
{
background-color:#4F81BD;
color:#FFFFFF;
font-weight:bold;
}
.teamdata_table table
{
boder: solid 1px #FFFFFF;
}
.teamdata_table tr
{
background-color:#E9EDF4;
padding: 5px;
}
.teamdata_table td
{
padding: 5px;
font: normal normal normal 1em "malgun gothic", Verdana, AppleGothic, Sans-serif;
}
/* TeamData에 특화된 테이블 헤더 스타일 종료*/
-->
</style>
</head>
<body>
<!-- HTML CONTENTS START by TFaccess -->
Contents가 들어갈 부분입니다.
<!-- HTML CONTENTS END by TFaccess -->
</body>
</html>