Hi
I want to post data from my
VB application to one such a site which was developed in ASP.NET. There was 2 stages of web pages I want to post my data. For that Im created a 1st .htm file and then collect all the relevant information. Now in body onload event, i was called form's submit procedure. It works fine for the first page. Now Im designed 2nd .htm file and then collect all the relevant inforation and then submit that page. But it was not worked. It was again navigated to default page. My process looks like following..
For 1st page, i was copy the entire page(.aspx) using view source, and then paste into .htm file and then remove all the unwanted info like scripts... By considering only controls, now i dynamically add my data into that controls and then posted...
I can't access directly 2nd page, so that after submission of data to first page, and then by using above said procedure, i was create 2nd htm and then again post data on that page.
Here my problem is with VIEWSTATE, What happened is that when i prepare 2nd page by entering data to first page, one filed's data is appended to my viewstate and then shown in 2nd page.
Also I was tried to collect viewstate dynamically when i navigate to next pages, But it was not worked. It was navigate to default page.
What was the problem could be?
Regards,
TRS