G
Gvnn
Hi,
I've a little problem, i've an asp.net page, with a runat server form,
like this:
<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="index.aspx.vb" Inherits="indexGstPro"%>
<HTML>
<HEAD>
</HEAD>
<body>
<form runat="server" method="post" id="indexGstPro">
</form>
</body>
</HTML>
now i want to go to another page by clicking a link, i've made this
javascript code:
document.indexGstPro.action = 'page.aspx';
document.indexGstPro.submit();
The page submits correctly, but the page i want to go return me this error:
System.Web.HttpException: The viewstate is invalid for this page and
might be corrupted
How can i solve the problem?
Gvnn
I've a little problem, i've an asp.net page, with a runat server form,
like this:
<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="index.aspx.vb" Inherits="indexGstPro"%>
<HTML>
<HEAD>
</HEAD>
<body>
<form runat="server" method="post" id="indexGstPro">
</form>
</body>
</HTML>
now i want to go to another page by clicking a link, i've made this
javascript code:
document.indexGstPro.action = 'page.aspx';
document.indexGstPro.submit();
The page submits correctly, but the page i want to go return me this error:
System.Web.HttpException: The viewstate is invalid for this page and
might be corrupted
How can i solve the problem?
Gvnn