Author: newtoasp123 | Posted on: 4/1/2009 5:28:05 PM | Views : 941

 I have a content page that has some readonly labels and submit button. The form data should submit to "netsuite" url. Netsuite doesn't accept the entire viewstate. When I click the submit button, entire viewstate is posted to the NetSuite which is resulting in an error from netsuite. I need the functionality like how hidden fields are posted in classic asp. ( that is just hiddenfield name and value). I don't want to send the viewstate. I tried setting EnableViewState to false for the page and all the server controls. I still see _EVENTARGUMENT and so on in the beginning of data that is posted to netsuite. How I can avoid this unnecessary data. How to post to a page that is not asp.net page? Is there any alternative to just specifying the action attribute to my netsuite url? In any other way Can I send only the "input type=hidden" field name and value pairs to the netsuite when I click a button? Please help me.

...

Go to the complete details ...