How To Use ASP.NET

Status
Not open for further replies.

amit.bajoria

New Member
Messages
6
Reaction score
0
Points
0
I created a web page in ASP.NET using Visual Studio 2010 and published that on my x10hosting server.
My problem is whenever i try to open that page i get one blank web page only...:frown:.
Plz give a solution for this problem.


[P.S.] Sorry for my bad English.
 

amit.bajoria

New Member
Messages
6
Reaction score
0
Points
0
I've gone through that guide. Created a new web.config file as that guide suggests, But the problem is still there.:frown:
 

masshuu

Head of the Geese
Community Support
Enemy of the State
Messages
2,293
Reaction score
50
Points
48
ASP.net is run under mono on a linux server, so there are some considerations you need to keep in mind.
.net 2.0 is fully supported, have not tested 3.5 or 4, though technically those should be supported, since the mono version is 2.6
filenames are case sensitive under linux, so default.aspx.cs is not the same as Default.aspx.cs
Use forward-slash /////// when accessing stuff(IE: File.ReadAllLines("./data/SomeDirectories/MoreStuff/someData.xml"))
Otherwise your scripts should work.
 
Status
Not open for further replies.
Top