导航到子文件夹

时间:2013-09-03 06:33:17

标签: javascript asp.net navigation

我需要将页面加载重定向到index.html页面的子文件夹aspx页面。我正在使用以下代码并收到错误。

window.location.href = 'URL= HMIS/Login.aspx'</script>

错误

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: /URL= /HMIS/Login.aspx

3 个答案:

答案 0 :(得分:0)

试试这个:

top.location='HMIS/Login.aspx'

答案 1 :(得分:0)

您是否尝试过:window.location.href ='HMIS / Login.aspx'?

答案 2 :(得分:0)

试试这个: window.location.href ='URL = ../ HMIS / Login.aspx'

代替: window.location.href ='URL = HMIS / Login.aspx'

如果你使用的是javascript,那么在asp。中使用..(双点)~~