从默认 .aspx 之外的文件启动 asp.net 项目?
我想从除 Default.aspx
之外的文件启动我的项目
例如:MasterFile.aspx
在Visual Studio 2010
中是否有执行此操作的设置?
谢谢。
I wanna start my project from a file except Default.aspx
e.g : MasterFile.aspx
Is there a setting for doing that in Visual Studio 2010
?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IIS
的一个版本与另一版本的默认页面设置有些不同。如果您有 IIS7 或 IIS Express,则在 web.config 文件中添加以下条目
或者您可以使用 urlMappings,
设置默认值文档(IIS 6.0)
Default page settings is somewhat different from one version of
IIS
to another version.If you have IIS7 or IIS Express then add following entry in web.config file
Or you may use urlMappings,
Setting Up Default Documents (IIS 6.0)
除了上面的评论之外,当您在 IIS 上部署时,在虚拟目录或应用程序配置中将默认文档名称设置为 MasterFile.aspx,并且当用户在浏览器中只有应用程序 url 时也会加载页面。
Plus to the comment above, when you deploy on IIS set the default document name to MasterFile.aspx in the virtual directory or application configuration and page will be loaded also when users only have application url in browsers.