Hi Every One ,
i have Small doubt Asap solvethem,
When User Click The DropDown List Display TextBox ... actually Iam Writing Logic Code Let me know in my code where small Mistake...
protected void dpCity_SelectedIndexChanged(object sender, EventArgs e)
{
AutoNumber();
}
public void AutoNumber()
{
SqlConnection con = new SqlConnection("Data Source=SERVER;Initial Catalog=MuraliIIT;User ID=sa;Password=rits@1234");
con.Open();
string s = "select count(*) from NewStudentRegistrationForm";
SqlCommand com = new SqlCommand(s, con);
int count = Convert.ToInt16(com.ExecuteScalar()) + 2;
// dpCity.SelectedItem.Text = dpCity.SelectedItem.Text + count;
TxtUserid.Text = dpCity.SelectedItem.Text + count;
con.Close();
}

Venkata SubbareddyPosted May 27, 2015, 2:30 PM
Venkata SubbareddyPosted May 27, 2015, 2:27 PM
Shubham KumarPosted May 27, 2015, 2:23 PM
Venkata SubbareddyPosted May 27, 2015, 2:21 PM
Shubham KumarPosted May 27, 2015, 1:58 PM
Venkata SubbareddyPosted May 27, 2015, 1:50 PM
Shubham KumarPosted May 27, 2015, 1:39 PM