My click event:
<div id="btncontinue3">
<table ><tr><td>
<input id="btncon3" type="button" value="Continue" />
</td></tr>
</table>
</div>
while click on button Button , calling ajax call. i got the all hidden values on page load. So everything passing correctly.
my ajax call webmethod
[WebMethod(EnableSession = true)]
public static string Getmethod(string Country, string Zipcode, string tableName)
{
DataTable dt = new DataTable();
dt = getdtmethod();// here i am getting all values :
dt.TableName=tableName;
string result;
using (StringWriter sw = new StringWriter())
{
dt.WriteXml(sw);
result = sw.ToString();
}
return result;
}
i checked xml string. i got like follow
<DocumentElement>
<Ratesval>
<code>11A</code& ...
Go to the complete details ...