1、每次喝多了都特别想你,后来我发现,不喝多也特别想你。
2、也许再多的语言都是华丽的谎言,我却是想写下三个字在你的手心:我爱你。没有再多勇气对你说多少诺言,但,此生,我愿在你身旁。
3、只要看到你的笑,世界就没有那么糟。
4、最好的感觉是,当我朝你看过去时,你已经在凝视着我。
5、有的人最害怕生不逢时,而我最害怕的是生未逢你。
6、每次跟你见面都在想该用什么表情什么动作,结果一见到你就变得手足无措,满脑子都是喜欢你、喜欢你、好喜欢你。
7、我一点都不遗憾没有在最好的时光遇见你,因为遇见你之后最好的时光才开始。
8、我只敢用余光打量你。那时只觉得你水边明秀,雪里温柔,横竖都顺眼。
9、从海边来的你见惯了大海的模样,见过海潮汹涌时的澎湃人心,也见过退潮后的一片滩涂。
10、接受孤独,接受失去,接受自己是不完整的,偶尔还会被变故打败。也许接受是难以下咽的,但在无法承受的时候,要学会放过自己。
11、我现在在做两件事,一件是变优秀,第二件是等你。
12、我的愿望是一夜暴富,不然抱你也好。
13、所谓风花雪月,就是我想跟你谈个恋爱。
14、没有尊重,爱会走掉。没有在乎,爱会无聊。没有诚实,爱会不爽。没有信任,爱会不牢。
15、我以为世界上最甜的是草莓酱,没想到是你。
16、已经南北隔离,你再要不高兴我如何受得所以大家看远一些,忍耐一些,我的爱你,你最知道,岂容再说。
17、你再也遇不到一个人这样爱你,我亦不会再这样爱一个人。
18、我想在爱你一次,一爱就爱一生那种,十指紧扣,一起漫步,想和你一起做很多很多有趣的事,陪伴着一起白头,一起终老。
19、从前的星星也不是特别好看,直到一不小心望进你的眼睛。
20、我也想浪荡一生,却一不小心钟情了一个人。
这要查看以下几个地方:
1、表单提交过程有无安全字符过滤函数,如果有是怎么替换的。
2、数据存入数据库时有无安全字符过滤函数,如果有是怎么替换的。
3、前台页面显示数据库数据又是怎么还原被替换的字符。
最简单的办法是找到一个有相似链接的地方,在后台观察下他是怎么写的,然后依葫芦画瓢就可以了。
ss=requestform("ss")←错误在这
responsewrite ss
)←错误在这
)←这是正确的
你写的“)”是错误是,要用字母的“)”
把这 )换成 ) 就可以了,如下:
ss=requestform("ss")
responsewrite ss
-----------------------------------------------------------
最好的代码我定义。
dim ss '定义一个ss
ss = Trim(RequestForm("ss"))
ResponseWrite(ss)
1)asp生成html的方式
要生成文件肯空要用到FSO(FileSystemObject)组件,通过asp生成静态网页主要有两种方式:
a、生成的内容由多部分连接而成;
b、生成的内容基于模板生成。
2)方式1:生成的内容由多部分连接而成
步骤:
a、设计要输出网页的布局
b、设计生成HTML的asp文件
例子:
输出网页的布局:
<html>
<head>
<title>标题</title>
<style type="text/css">
<!--
article_title {
font-size: 22px;
font-weight: bold;
text-align: center;
padding-top: 10px;
padding-bottom: 20px;
}
content {
text-indent: 18px;
font-size: 16px;
line-height: 230%;
text-align: left;
}
from {
font-size: 14px;
text-align: right;
padding-right: 15px;
padding-top: 15px;
}
feature_bar {
font-size: 14px;
color: #999999;
text-align: center;
padding-bottom: 15px;
}
-->
</style>
</head>
<body>
<table width="80%">
<tr>
<td><div class="article_title">标题</div>
<div class="feature_bar">作者: 录入时间: 录入: </div>
<div class="content">内容</div>
<div class="from">来源:</div> </td>
</tr>
</table>
</body>
</html>
把源代码中的所有的 " 替换成 "",作用是在ASP中输出双引号。
设计asp文件:
<% Option Explicit %>
<html>
<head>
<title>ASP生成HTML</title>
<style type="text/css">
<!--
align_right_top {
text-align: right;
vertical-align: top;
}
align_left_10px {
text-align: left;
padding-left: 10px;
}
-->
</style>
</head>
<body>
<form method="post" action="action=create">
<table width="80%">
<tr>
<td class="align_right_top" >HTML文件名称:</td>
<td class="align_left_10px"><input name="HtmlFileName" type="text" id="HtmlFileName" /></td>
</tr>
<tr>
<td class="align_right_top" >文章标题:</td>
<td class="align_left_10px"><input name="title" type="text" id="title" /></td>
</tr>
<tr>
<td class="align_right_top">作者:</td>
<td class="align_left_10px"><input name="author" type="text" id="author" /></td>
</tr>
<tr>
<td class="align_right_top">录入:</td>
<td class="align_left_10px"><input name="editor" type="text" id="editor" /></td>
</tr>
<tr>
<td class="align_right_top">输入时间:</td>
<td class="align_left_10px"><input name="EditTime" type="text" id="EditTime" /></td>
</tr>
<tr>
<td class="align_right_top">文章内容:</td>
<td class="align_left_10px"><textarea name="content" cols="55" rows="20" id="content"></textarea></td>
</tr>
<tr>
<td class="align_right_top">来源:</td>
<td class="align_left_10px"><input name="from" type="text" id="from" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="Submit" value="提交" /></td>
</tr>
</table>
</form>
<%
if Trim(RequestQueryString("action"))="create" then
dim title , author , editor , EditTime , content , from , html
title=Trim(RequestForm("title"))
editor=Trim(RequestForm("editor"))
EditTime=Trim(RequestForm("EditTime"))
content=Trim(RequestForm("content"))
from=Trim(RequestForm("from"))
html="<html>"_ '粘贴上面的修改后的 输出网页布局的源代码
&"<head>"_ ‘并用 _ 与 & 把各行连接起来 或删除多余空格使源代码写在一行
&"<title>"&title&"</title>"_
&"<style type=""text/css"">"_
&"article_title {"_
&"font-size: 22px;"_
&"font-weight: bold;"_
&"text-align: center;"_
&"padding-top: 10px;"_
&"padding-bottom: 20px;"_
&"}"_
&"content {"_
&"text-indent: 18px;"_
&"font-size: 16px;"_
&"line-height: 230%;"_
&"text-align: left;"_
&"}"_
&"from {"_
&"font-size: 14px;"_
&"text-align: right;"_
&"padding-right: 15px;"_
&"padding-top: 15px;"_
&"}"_
&"feature_bar {"_
&"font-size: 14px;"_
&"color: #999999;"_
&"text-align: center;"_
&"padding-bottom: 15px;"_
&"}"_
&"</style>"_
&"</head>"_
&"<body> "_
&"<table width=""80%"">"_
&"<tr>"_
&"<td><div class=""article_title"">"&title&"</div>"_
&"<div class=""feature_bar"">作者:"&author&" 录入时间:"&EditTime&" 录入:"&editor&" </div>"_
&"<div class=""content"">"&content&"</div>"_
&"<div class=""from"">来源:"&from&"</div> </td>"_
&"</tr>"_
&"</table>"_
&"</body> "_
&"</html>"
dim HtmlFileName ,HtmlFile , fs , FileStream
HtmlFileName=Trim(RequestForm("HtmlFileName"))
if instr(HtmlFileName,"html")=false then
HtmlFileName="NoNamehtml"
end if
HtmlFile=ServerMapPath(HtmlFileName)
set fs=CreateObject("ScriptingFileSystemObject")
set FileStream=fsCreateTextFile(HtmlFile)
FileStreamWriteLine Html
FileStreamclose
set FileStream=nothing
responseWrite("<script>alert('生成"&HtmlFileName&"文件成功!');historygo(-1);</script>")
end if
%>
</body>
</htm>
把上面的asp文件保存放到服务器上即可运行
3)方式2:生成的内容基于模板生成
思想:
给模板asp传递参数,使用“MSXML2XMLHTTP”读取基于参数传递的asp模板的网页源代码,
再使用FSO组件生成静态网页。
步骤:
a、设计有参数传递的asp模板
b、设计asp控制页
设计asp模板:(保存成templateasp)
<% Option Explicit %>
<%
dim HtmlFileName ,title , author , editor ,EditTime ,content ,from
HtmlFileName=Trim(RequestQueryString("HtmlFileName"))
title=Trim(RequestQueryString("title"))
author=Trim(RequestQueryString("author"))
editor=Trim(RequestQueryString("editor"))
EditTime=Trim(RequestQueryString("EditTime"))
content=Trim(RequestQueryString("content"))
from=Trim(RequestQueryString("from"))
%>
<html>
<head>
<title><%= title %></title>
<style type="text/css">
<!--
article_title {
font-size: 22px;
font-weight: bold;
text-align: center;
padding-top: 10px;
padding-bottom: 20px;
}
content {
text-indent: 18px;
font-size: 16px;
line-height: 230%;
text-align: left;
}
from {
font-size: 14px;
text-align: right;
padding-right: 15px;
padding-top: 15px;
}
feature_bar {
font-size: 14px;
color: #999999;
text-align: center;
padding-bottom: 15px;
}
-->
</style>
</head>
<body>
<table width="80%">
<tr>
<td><div class="article_title"><%= title %></div>
<div class="feature_bar">作者:<%= author %> 录入时间:<%= EditTime %> 录入:<%= editor %> </div>
<div class="content"><%= content %></div>
<div class="from">来源:<%= from %></div> </td>
</tr>
</table>
</body>
</html>
设计asp文件:(保存成htmlasp)
<% Option Explicit %>
<html>
<head>
<title>ASP生成HTML</title>
<style type="text/css">
<!--
align_right_top {
text-align: right;
vertical-align: top;
}
align_left_10px {
text-align: left;
padding-left: 10px;
}
-->
</style>
</head>
<body>
<form method="post" action="action=create">
<table width="80%">
<tr>
<td class="align_right_top" >HTML文件名称:</td>
<td class="align_left_10px"><input name="HtmlFileName" type="text" id="HtmlFileName" /></td>
</tr>
<tr>
<td class="align_right_top" >文章标题:</td>
<td class="align_left_10px"><input name="title" type="text" id="title" /></td>
</tr>
<tr>
<td class="align_right_top">作者:</td>
<td class="align_left_10px"><input name="author" type="text" id="author" /></td>
</tr>
<tr>
<td class="align_right_top">录入:</td>
<td class="align_left_10px"><input name="editor" type="text" id="editor" /></td>
</tr>
<tr>
<td class="align_right_top">输入时间:</td>
<td class="align_left_10px"><input name="EditTime" type="text" id="EditTime" /></td>
</tr>
<tr>
<td class="align_right_top">文章内容:</td>
<td class="align_left_10px"><textarea name="content" cols="55" rows="20" id="content"></textarea></td>
</tr>
<tr>
<td class="align_right_top">来源:</td>
<td class="align_left_10px"><input name="from" type="text" id="from" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="Submit" value="提交" /></td>
</tr>
</table>
</form>
<%
function getHTTPPage(url)
dim Http
set Http=servercreateobject("MSXML2XMLHTTP")
Httpopen "GET",url,false
Httpsend()
if Httpreadystate<>4 then
exit function
end if
getHTTPPage=bytesToBSTR(HttpresponseBody,"GB2312")
set http=nothing
if errnumber<>0 then errClear
end function
Function BytesToBstr(body,Cset)
dim objstream
set objstream = ServerCreateObject("adodbstream")
objstreamType = 1
objstreamMode =3
objstreamOpen
objstreamWrite body
objstreamPosition = 0
objstreamType = 2
objstreamCharset = Cset
BytesToBstr = objstreamReadText
objstreamClose
set objstream = nothing
End Function
%>
<%
if Trim(RequestQueryString("action"))="create" then
dim title , author , editor , EditTime , content , from , html
title=Trim(RequestForm("title"))
editor=Trim(RequestForm("editor"))
EditTime=Trim(RequestForm("EditTime"))
content=Trim(RequestForm("content"))
from=Trim(RequestForm("from"))
'读取传递参数后的模版源代码,地址根据具体情况而定
html=getHTTPPage("http://127001/templateasp"_
&"title="&title&"&editor="&editor&"&EditTime="_
&EditTime&"&content="&content&"&from="&content&"")
dim HtmlFileName ,HtmlFile , fs , FileStream
HtmlFileName=Trim(RequestForm("HtmlFileName"))
if instr(HtmlFileName,"html")=false then
HtmlFileName="NoNamehtml"
end if
HtmlFile=ServerMapPath(HtmlFileName)
set fs=CreateObject("ScriptingFileSystemObject")
set FileStream=fsCreateTextFile(HtmlFile)
FileStreamWriteLine Html
FileStreamclose
set FileStream=nothing
responseWrite("<script>alert('生成"&HtmlFileName&"文件成功!');historygo(-1);</script>")
end if
%>
</body>
</htm>
把templateasp与htmlasp 放在同一目录通过服务器运行后即可。
4)结论
通过比较可以看出,通过方式一生成的html文件源代码比较乱,而通过模板生成的html文件源代码跟原先模板的源代码一致。
用ASP输出JAVASCRIPT代码就可以了:
responsewrite("<script>windowopen('aaasp','');</script>")
欢迎分享,转载请注明来源:浪漫分享网
评论列表(0条)