.net设置首页的代码怎么写
发布网友
发布时间:2022-04-29 21:14
我来回答
共4个回答
热心网友
时间:2022-06-22 23:10
直接在解决方案里点击你那个要设为首页的界面,右键设为启动项,那最先显示的就是首页了。
热心网友
时间:2022-06-22 23:11
你的项目是在本地演示,还是要搭建在IIS中?
本地演示的话,在VS中,记得可以右键单击“设置为起始页”
如果是在IIS搭建的话,是可以指定主目录的(相对路径)
热心网友
时间:2022-06-22 23:11
string op = null;
op = MyTool.selectop();
public static string selectop()
{
string op = null;
cookieTool ct = new cookieTool();
op = ct.readCookie("xxx", "op");
if (op == null)
{
if (HttpContext.Current.Session["op"] == null)
{
HttpContext.Current.Response.Redirect("Index.html");
}
else
{
op = HttpContext.Current.Session["op"].ToString();
}
}
return op;
}
热心网友
时间:2022-06-22 23:12
IIS配置