2

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

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
Josh
  • 6,256
  • 2
  • 37
  • 56

2 Answers2

8

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

Amal Sirisena
  • 1,479
  • 10
  • 10
2

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

Cody C
  • 4,757
  • 3
  • 29
  • 36