Arrow_Raider
Nov 22nd, 2003, 09:30 AM
I have this snipet of code i pulled off the forum on brinkster
<script language="C#" runat="server">
protected override object LoadPageStateFromPersistenceMedium() {
object o = null;
try{
o = base.LoadPageStateFromPersistenceMedium();
} catch {}
return o;
}
</script>
Its evidently supposed to ignore viewstate errors, which i get a lot on brinkster cause something is wrong with their servers and they are too lazy to fix the problem. My site is in vb.net, so like could someone convert that code into vb.net
<script language="C#" runat="server">
protected override object LoadPageStateFromPersistenceMedium() {
object o = null;
try{
o = base.LoadPageStateFromPersistenceMedium();
} catch {}
return o;
}
</script>
Its evidently supposed to ignore viewstate errors, which i get a lot on brinkster cause something is wrong with their servers and they are too lazy to fix the problem. My site is in vb.net, so like could someone convert that code into vb.net