asp.Net error

Associate
Joined
4 Jun 2009
Posts
353
Location
UK
Anybody good with asp.net ? i need help with this file. I'm trying to make my website in asp.net and its uploaded to the remote server where our websites are held for uni and comes up with this error and the web.config file does not contain these lines. Anybody shed some light on this please?

http://i.imgur.com/CL99R.jpg
 
Sounds like your using ASP User Roles from v2.

Thats a generic fall back error. Basically, you have no configuration set up for Roles in web.config. So asp.net will default to the machine.config.

You won't be able to edit the machine.config on a remote server. You can override the settings using web.config inside your web root.

You need to research asp.net roles from framework v2. That will give you some configuration settings about state persistence.

http://msdn.microsoft.com/en-us/library/ff647401.aspx#paght000013_step1
 
Back
Top Bottom