2012-08-17 68 views
0

我有,當我給iframe代碼HTML使用iframe調用我的aspx頁面到html頁面,怎麼做?

<iframe runat="server" src="~/Contactus.aspx" style="width: 840px; height: 233px"></iframe> 

被正確地給予src路徑錯誤。但它顯示錯誤:

Server Error in '/' Application. The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly. Requested URL: /contact us/~/Contactus.aspx

回答

1

查看錯誤被返回:Requested URL: /contact us/~/Contactus.aspx

嘗試修改代碼是這樣的:

<iframe runat="server" src="Contactus.aspx" style="width: 840px; height: 233px"></iframe> 
+0

感謝u人... – 2012-08-20 10:20:57

相關問題