0
protected void Page_Load(object sender, EventArgs e)
{
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()) + 2;
txt1.Text = "E00" + count; con.Close();
}
Accepted 0
After selecting dropdown value
in button click or dropdownselected index changed method use the following code
try
{
con.Open();
SqlCommand cmd = new SqlCommand("select max(cast (Code as int)) as id from Location", con);
SqlDataReader dr = cmd.ExecuteReader();
if (dr.Read())
{
j = Convert.ToInt16(dr["id"].ToString()) + 1;
}
else
{
j = 1;
}
}
catch (Exception ex)
{
j = 1;
}
finally
{
if (con.State == ConnectionState.Open)
con.Close();
}
Label.Text= droploc.SelectedValue.Trim()+j.ToString();
Try this its working fine...
0
dp1.Text = "dp1.SelectedValue" + count.ToString();
corrct or wrong???
0
kindly convert dropdown value in integer type then add count if you have want to dropdown value with addition of incremented value.
0
prtap Bro...
small Help.
I need some information iam writing below the code.
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()) + 2;
dp1.Text = "dp1.SelectedValue" + count;
con.Close();
result:
only Display Dropdown value but i need DropDownvalue+increment value
0
ur welcome and thanx for appriciation
0
Thanks Bro,
But I need some information iam writing below the code.
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()) + 2;
dp1.Text = "dp1.SelectedValue" + count;
con.Close();
result:
only Display Dropdown value but i need DropDownvalue+increment value
0
I write in the Below code id not increment just add please let me know where am doing Wrong...
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Data Source=SERVER;Initial Catalog=MuraliIIT;User ID=sa;Password=rits@1234");
string s = "select count(*) from Test";
com = new SqlCommand(s, con);
con.Open();
count = Convert.ToInt16(com.ExecuteScalar()) + 2;
txt1.Text = "E00" + count;
con.Close();
}
0
iam new devloper am fullconfusion please proved Query infomation Pratap ...
actually Task is When User choose the Dropdown in location generate The Location+ id please provide source code...
0
create a SP or query and from front end send a dropdown list value for adding location with your query and append tha location with your query which provide to you by me in my previous answer..
This will work for you dear...
0
hi...
When user will select his location then..
but here u must need dropdown option for select user location...
Label14.Text =
"dropdownlist.text "
+ strnewid;
am not sure.. but u can try it...
Thanks..
0
upendra Pratap ,
Please provide Sample Code of How to generate userid =loc+automatically increment value..............
0
i have the Three Locations when user Click the one loctions and Generate loc+ id and user click the secound Locations Generated loc+id...... give c# code
0
check this
http://www.dotnetcurry.com/showarticle.aspx?ID=966
http://www.c-sharpcorner.com/Blogs/6872/
http://www.aspdotnet-suresh.com/2012/04/set-custom-auto-generatedincrement.html
You should add location with your SQL query when user select like:
select 'FHMS' + max(SUBSTRING ( couserid ,5 , 5 ))+1 as nextkey from testtable
0
0
Dipankar ,
my task requrired C# Source code give me any Logic..
0