Tagged Questions
The eventvalidation tag has no wiki summary.
4
votes
7answers
5k views
ListBox elements rearranged with JavaScript causing event validation error on postback
I have created an item swapper control consisting in two listboxes and some buttons that allow me to swap items between the two lists. The swapping is done using javascript. I also move items up and ...
3
votes
1answer
301 views
ASP.Net Event Validation fails on Android phone browser
We're running a fairly large site, and a lot of our visitors have started using their Android based cellphones to visit the site. However when they try to login, we get an Event Validation error:
...
3
votes
2answers
913 views
Disabling ASP.NET EventValidation
We're tired of getting exceptions regarding "Invalid postback or callback argument" in our web app. What scenario(s) causes this error?
After talking to users, we've determined that one possible ...
2
votes
2answers
345 views
Tracing invalid postback or callback argument
In my unhandled exception logging I see this error sporadically through the day on a given page. I don't have any controls that I create programmatically on the page or databind any buttons onto the ...
2
votes
4answers
701 views
How do I prevent exceptions from half-loaded pages' form submission while using asp.net event validation?
I have a page with some dynamically added buttons. If you click a button before the page has fully loaded, it throws the classic exception:
Invalid postback or callback argument.
Event ...
1
vote
1answer
73 views
Error on Postback
i have a webpage that has a grid on it. When you click edit, a popup modal window opens. Inside the popup modal window, there is a grid and below it a dropdownlist and a save button. When you click ...
1
vote
0answers
96 views
exception:Invalid postback or callback argument. Event validation is enable, caused by jQuery
Well I've been reading about this (actually not here in stackOverflow), and I have a few question and need some advice about this "old" topic.
Firtst at all, what I do?
Change value of a on ...
1
vote
2answers
102 views
Event validation: Allow __doPostBack for one control and *any* arguments
I'm using
__doPostBack(clientIdOfSomeButton, someData);
to create a PostBack in JavaScript. The problem is that someData is not known in advance, and event validation kicks in because I cannot ...
1
vote
1answer
847 views
se the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation
guys, I have a usercontrol in my asp.net 3.5 application and I am passing some plain text on button click event. button is situated in the usercontrol. but when I fire the event, I am getting the ...
1
vote
0answers
626 views
Event validation issue with updatepanel “Invalid postback or callback argument”
I am an UpdatePanel virgin and I'm having problems.
I have 2 drop down lists. I am basically trying to update the contents of the second drop down depending on what I select on the first drop down. ...
1
vote
1answer
3k views
ClientScriptManager.RegisterForEventValidation with HiddenField
I am trying to use to use ClientScriptManager.RegisterForEventValidation to register a hidden field and value that I am adding with ClientScriptManager.RegisterHiddenField. I doing this during the ...
0
votes
0answers
19 views
Event Validation - Is it truly necessary for Js Heavy applications
This thing is really show stopper, i've been thinking about event validation and is this really necessary. I am looking into ways to avoid event validation for building a webservice-javascript ...
0
votes
0answers
125 views
Getting Column Index when selecting cell in GridView
Below is the code that I use to select each individual cell. However, when I do select that cell, I need the data in that cell, the rowIndex and columnIndex. Unfortunately after all the research and ...
0
votes
0answers
45 views
Postback using WebClient and EventValidation
There's a web page from one of our subsidiaries. The page has EventValidation turned on. I've tried grabbing it and passing it as a postback value, but that doesn't work (obviously). Any ideas ...
0
votes
0answers
28 views
regarding EVENTVALIDATION viewstate in aspx page
why EVENTVALIDATION viewstate is being render in page. i thought that i work with user control & include it in page that is why it is coming in page. so i made changes like EnableViewState="false" ...
0
votes
0answers
35 views
Transfer session from web bot to user
A website that I'm working on enables users to enter login and password information for several other websites so they can be automatically logged in to all of these from one place with just a one ...
0
votes
0answers
201 views
Hardcoded validationKey in web.config, still get Validation of viewstate MAC failed on submission of form
ASP.NET 2.0, IIS 5.1, Running on my local machine.
I've read many places that this happens when a form hasn't fully been rendered, so the EventValidation field hasn't been rendered, but this is not ...
0
votes
1answer
63 views
When 'ViewState' of a form is changed?
There are to hidden fields on every standard ASP.NET form: __VIEWSTATE and __EVENTVALIDATION. When the value for these fields would change for a specific form ?
0
votes
4answers
388 views
Disable EventValidation for single control, is it possible?
I know this is a very debated topic, and usually when you are thinking about this as a solution you might want to rethink your UI logic.
I know I can pass validation using ...
0
votes
2answers
1k views
How to reset ASP.NET Form? aspnetForm.reset() causes Event Validation invalid postback error
I need to reset an ASP.NET form. I am trying to use document.aspnetForm.reset() but then whenever I try to do anything after that I get an event validation error. How can I reset my form without ...
0
votes
1answer
835 views
ASP.NET Master Page: Event Validation Error
I included a repeater in my master page.
The repeater has a button that I set its CommandArgument.
However when I click the button I get the following exception:
System.ArgumentException: Invalid ...