Click to See Complete Forum and Search --> : Not Loading


PeOfEo
02-18-2003, 11:44 AM
I am not sure what is wrong with this but in some of my asp.net stuff pages just dont load. Does anyone have an explanation for this? The link in my signiture to the message board is the page that I am having problems with.

PeOfEo
02-18-2003, 12:49 PM
Somoen posted on my forum saying they did not get the error. Well it seems to be working right now but this error random. Its an evil monster that lurks in the shadows. Here is what happens is sometimes pages just dont load and you have to hit refresh and resend the data... sever times in a row. Other times the login and register pages are down and they say missing parameters in my sql. It shows code that looks like it should be working fine. My forum works sometimes but sometimes it doesnt. its really weird because I have not altered it at all. I just dont get why my errors are so random

PeOfEo
02-18-2003, 04:33 PM
Ok what does it mean when it says "corrupted view state"
I have been getting this error more and more often on my log in and sign up page 'Server error in "/" application" then it goes on to talk about an unhandled expression. What exactly does that mean and how can I avoid and or fix it?

Ribeyed
02-20-2003, 07:36 AM
hi Peofeo,
I was having a look through your code and spotted 1 coding error that you have repeated on all your pages. You have the following code within your script tag and all the ASP.NET web controls:

runat=server

this is not the correct syntax, it should be this:

runat="server"

This would cause major problems. I am still going through you're code at the moment.

PeOfEo
02-20-2003, 11:21 AM
Huh? I tried to compress the data base but It did not work. I am going to make a log in on another site but as I am doing it I am going to go through that code with a fine toothed comb to see what I can spot. Did the runat="server" help at all? Do you think the view state errors and the loading problems?

Ribeyed
02-20-2003, 11:48 AM
hi,
yes it did help sort that problem. All ASP.NET web controls, and scripts need runat="server". If this is not present or your syntax is wrong then it will not run correctly. The web controls will not be run at server and not of your code would work correctly. Will get back to you soon with working code.