㈠ 生成静态页面的代码应该怎么写
只能每页都生成一个单独的页面文件,
比如说你你面的参数是 aaa.aspx?pageindex=1&pagesize=10
那么你第一页生成 aaaa-1-10.html ,第二页生成 aaaa-2-10.html, 那么你在生成静态页时, 页面上的链接也要相应的修改成静态页的URL。 比如说, 你把页面上的所有aaa.aspx?pageindex=2&pagesize=10的连接全部改成 aaaa-2-10.html
依此类推。
还有一个办法就是把 htm 为后缀的请求交给你的WEB程序处理,像是生成静态页面了,其实还是动态的(也就是URL重写啦)。
㈡ 用html如何制作一个简单的网页代码
1、首先,在计算机桌面上创建一个新文件夹,然后在该文件夹中创建一个新的文本文档。内
㈢ 求简单的HTML静态页面代码
其实这里有人已经说了,用锚点 2.html# 但是这样的换就是一个固定的的方,还是跳一下,只不过位置不一样,再一个就点击的时候,用js的cookie记录下来位置,,到了html2的时候,读出cookie显示位置,不过我觉得你想要的结果应该是用一个iframe,里面显示1.html,点击的后改iframe的src=2.html,这样页面就不会跳了,页面就不会动
㈣ 求html静态页面的代码,简单点的
<html><head> <title>滚动字幕</title> </head>
<body text=#ff0000 bgcolor=#ccff99>
<marquee>请进入音乐休闲屋</marquee>
<marquee direction=left>看我还会动呢,并且是从右向左移动
</marquee> <p>
<marquee direction =right behavior=scroll>我从左向右一圈一圈的移回动
</marquee > <p>
<marquee scrollamount=18>我是不是移动的比较答快?
</marquee> <P>
<marquee loop=3 bgcolor=blue>我的底色是蓝的,我循环三次即停止移动
</marquee > <p>
</body> </html>
㈤ html静态网页代码,跳转问题
给你个思路吧,改造onsubmit,改成方法,比如toPage(); 写function,先获取你的var page=this. elements.value,然后判断这内个page是奇数容偶数if(page%2==0),这是我的思路
㈥ 求生成静态html页的代码
示列代码
1.定义(template.htm)html模板页面
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body >
<table $htmlformat[0] height="100%" border="0" width="100%" cellpadding="10" cellspacing="0" bgcolor="#eeeeee" style="border:1px solid #000000">
<tr>
<td width="100%" valign="middle" align="left">
<span style="color: $htmlformat[1];font-size: $htmlformat[2]">$htmlformat[3]</span>
</td>
</tr>
</table>
</body>
</html>
2.asp.net代码:
//---------------------读html模板页面到stringbuilder对象里----
string[] format=new string[4];//定义和htmlyem标记数目一致的数组
StringBuilder htmltext=new StringBuilder();
try
{
using (StreamReader sr = new StreamReader("存放模板页面的路径和页面名"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
htmltext.Append(line);
}
sr.Close();
}
}
catch
{
Response.Write("<Script>alert('读取文件错误')</Script>");
}
//---------------------给标记数组赋值------------
format[0]="background="/blog/bg.jpg"";//背景图片
format[1]= "#990099";//字体颜色
format[2]="150px";//字体大小
format[3]= "<marquee>生成的模板html页面</marquee>";//文字说明
//----------替换htm里的标记为你想加的内容
for(int i=0;i<4;i++)
{
htmltext.Replace("$htmlformat["+i+"]",format[i]);
}
//----------生成htm文件------------------――
try
{
using(StreamWriter sw=new StreamWriter("存放路径和页面名",false,System.Text.Encoding.GetEncoding("GB2312")))
{
sw.WriteLine(htmltext);
sw.Flush();
sw.Close();
}
}
catch
{
Response.Write ("The file could not be wirte:");
}
㈦ html静态网页代码跳转问题 求代码
<inputtype="text"name=""id="txt">
<inputtype="button"value="查询"name=""id="btn">
<script>
varstr=document.getElementById('txt');
varbtn=document.getElementById('btn');
btn.onclick=function(){
varstrVal=str.value;
if(strVal!=""){
window.location.href="http://www.某某.com/"+strVal+".html";
};
}
</script>
需要JavaScript来实现,不过,请注意一点,正常开发当中通常不会这么操作的,因为当你无法获取到相应页面的时候,会找不到相应页面。