0
我有一個asp.net3.5網站,想在iis上部署此網站。部署後我的默認頁面無法重定向到另一個頁面。需要幫助瞭解爲什麼頁面不重定向 我的默認頁面是爲什麼Context.RewritePath方法無法在iis上工作
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs)
Response.Write("hello")
Context.RewritePath("~/asp/Default.aspx", False)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
需要幫助,爲什麼Context.RewritePath這種方法不working.my服務器版本的Windows Server 2008 R2,IIS 7.0版,網站上的3.5
發展。如果有任何查詢plz問,感謝先進。