public string generaterandomno()
{
string aa = "1234567890qwertyuiopasdfghjklzxcvbnm";
string R_code = "";
Random rnd = new Random();
for (int i = 0; i < 8; i++)
{
int a = rnd.Next() % (aa.ToString().Length - 1);
R_code += aa[a];
}
...
Thursday, July 25, 2013
how to implement Country-State-city using Dropdownlist in asp.net with ajax
for design page of your aspx page paste the below code
<table>
<tr>
<td>
Select Country:
</td>
<td>
<asp:DropDownList runat="server" ID="ddlcountry">
</asp:DropDownList>
...