ASP.NET Default Document

前端 未结 5 574
孤街浪徒
孤街浪徒 2021-01-23 12:05

i have default.aspx and index.html. I uploaded both to the server, but i want my first page start with index.html. What should I do?

5条回答
  •  心在旅途
    2021-01-23 12:35

    in your default.aspx page write this in your code behind if you don't have access to IIS.

    Response.Redirect("index.htm");
    

提交回复
热议问题