一个asp问题!(50分)

  • 主题发起人 主题发起人 dean_2008
  • 开始时间 开始时间
D

dean_2008

Unregistered / Unconfirmed
GUEST, unregistred user!
大家好!现在我写了几个网页,都是html写的。现在把它放到服务器中打开时时必须要“域名(或者ip)/index.html”的形式,请大家说一下如何用asp直接调用这个首页(即index.html)把首页改成asp的。目的是直接用域名就可以访问
谢谢!
 
改文件名或设置服务器默认首页就可以了。
 
看来你对网站不甚了解,服务器本就可以设置一个文件为主页,默认为index.htm(l),IIS的是default.htm(l)
 
谢谢两位!解决散分!
 
没必要该后缀名
只要在IIS的菜单里选-文档选项卡
在默认文档里增加你想默认打开的网页文件名
如果不能本地操作那就改首业文件名,一般都是INDEX。ASP
INDEX。HTML
 
顺便我也问下
ASP怎么处理外文编码?
数据库用MS SQL
在网页里显示都正常,一存数据库读出就都是问号。
 
<%@LANGUAGE=&quot;VBSCRIPT&quot;
CODEPAGE=&quot;28596&quot;%>
<!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;
&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;>
<%response.charset=&quot;iso-8859-6&quot;%>
<%session.CodePage=&quot;28596&quot;%>
<html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;>
<head>
<meta http-equiv=&quot;Content-Type&quot;
content=&quot;text/html;
charset=iso-8859-6&quot;
/>
这样设置显示不了response.wirter内容
 
在iis中改变默认页面
或者写个default.htm内容如下
<html>
<head>
<meta http-equiv=&quot;refresh&quot;
content=&quot;0;
url=http://domain.com/index.html&quot;>
</head>
</html>
 
后退
顶部