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

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

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

<%@ Page Trace="true" %>

MSDN Doc

link|improve this answer
I would do the same – balexandre Jun 21 '09 at 19:39
that's just what i was looking for - great to know - thanks – Josh Jun 21 '09 at 19:53
feedback

Can you just make a blank default.aspx page with nothing but <% Response.Write("Hello World") %> in the source.?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.