我想测试我的网络主机 asp.net 功能 - 相当于“phpinfo”页面 - 是否有一个独立的 aspx 页面我可以上传以测试 asp.net 是否正确运行以及它正在运行什么版本等。
谢谢,
乔什
i want to test my web hosts asp.net capabilities - equivalent to a 'phpinfo' page - is there a standalone aspx page I can upload to test that asp.net is correctly running and what version etc it is running.
Thanks,
Josh
发布评论
评论(2)
正如 Cody 所说,空白的 default.aspx 页面应该可以工作,但我建议启用该页面的跟踪,以获取有关主机 ASP.NET 设置的一些更有用的信息,即
MSDN 文档
As Cody said, a blank default.aspx page should work, but I recommend enabling tracing for the page as well to get some more useful information about your host's ASP.NET setup ie
MSDN Doc
你能不能只创建一个空白的default.aspx页面,除了<% Response.Write("Hello World") %> 在源中。?
Can you just make a blank default.aspx page with nothing but <% Response.Write("Hello World") %> in the source.?