TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Venkata Subbareddy
999
770
99.3k
How to Generate Based on Location AutoGenerate Number using
May 27 2015 9:36 AM
Hi Every one,
Today Iam develop one module here i faced Some Many Problems Please solve them..
Actully when user select The Location in dropdownlist based Location First 3 letters + auto increment Id Will Be Display On TextBox ..... Please Give Suggesttions in the Below iam writeing Logic Let me know Any modifications....
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 Test";
SqlCommand com = new SqlCommand(s, con);
int count = Convert.ToInt16(com.ExecuteScalar()) + 1;
TxtUserid.Text = dpCity.SelectedItem.Text + count;
con.Close();
}
Reply
Answers (
2
)
How to retrive the DropDownListValue to TextBox using asp.n
How to generate the Autounique id