我正在尝试将现有的经典asp页面重定向到.aspx页面。在我的应用程序中,我有sfcRecInspedt.asp这是经典的asp页面。我在ASP.net中更改了它,保持名称相同,现在我有sfcRecInspedt.aspx和sfcRecInspedt.aspx.cs。
我将如何更改我的代码,以便如果用户点击指向经典asp页面的新打算,它应该转到sfcRecInspedt.aspx页面?
请从以下代码中找到我重定向到经典asp页面的代码。
<td width=60%>
<td colspan=10 align="right">
<%lparam="lAdd=Add &lfromdate=" & lfromdate & "<odate=" & ltodate & "&lplantid=" & lplantid%>
<a href="JavaScript:GotoNewWindow('sfcRecInspedt.asp?<%=lparam%>',<%=clng(Session("WIDTH"))%>,<%=clng(Session("HEIGHT"))%>);">
<img src="/images/newe.gif" border="0" alt="New" valign="middle"><font face="Arial, Helvetica, sans-serif" size="1">New</font></a>
答案 0 :(得分:0)
在网络配置文件中的结束configuration
标记之前添加以下内容。用适当的路径替换路径和目的地。
<location path="folderName/sfcRecInspedt.asp">
<system.webServer>
<httpRedirect enabled="true" destination="http://foo.com/sfcRecInspedt.aspx"
httpResponseStatus="Permanent" />
</system.webServer>
</location>