Komal
Komal

Reputation: 3

asp.net website problem

I have my asp .net website. I have uploaded that. But is shows code of default.aspx page and not the design.

Please help me

Thanks

Upvotes: 0

Views: 57

Answers (1)

Oded
Oded

Reputation: 499382

IIS will by default display the page default.aspx.

You can change this in your IIS settings and change it to pick up another file by default (though it will allow multiple names).

Alternatively, change the filename of your default page to default.aspx.

Other possibilities:

  • The .NET framework is not installed on the server
  • The .NET framework is not registered on IIS (in the framework directory run aspnet_regiis)

Upvotes: 3

Related Questions