Click here to Skip to main content
15,891,529 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: ASP.NET Pin
nagendrathecoder2-Sep-09 0:28
nagendrathecoder2-Sep-09 0:28 
GeneralRe: ASP.NET Pin
Blikkies2-Sep-09 3:13
professionalBlikkies2-Sep-09 3:13 
GeneralRe: ASP.NET Pin
Abhijit Jana2-Sep-09 4:38
professionalAbhijit Jana2-Sep-09 4:38 
QuestionSharp Map on Google Map Pin
shwethaV2-Sep-09 0:15
shwethaV2-Sep-09 0:15 
Questionthree fields in single Dropdown with space Pin
rummer1-Sep-09 23:33
rummer1-Sep-09 23:33 
AnswerRe: three fields in single Dropdown with space Pin
nagendrathecoder2-Sep-09 0:10
nagendrathecoder2-Sep-09 0:10 
AnswerRe: three fields in single Dropdown with space Pin
Christian Graus2-Sep-09 0:11
protectorChristian Graus2-Sep-09 0:11 
AnswerRe: three fields in single Dropdown with space Pin
sashidhar2-Sep-09 0:13
sashidhar2-Sep-09 0:13 
U can Do it in two ways u can directly retrive the data from the database in the form of store procedure
or
U can take the three fields i.e. id,name,degination from the database and while displaying u can combine them .

DropDownDrivers.DataSource = Reservation.GetDriver();
        DropDownDrivers.DataTextField = "id"+"-"+"name"+"-"+"name";
        //optional
        //DropDownDrivers.DataValueField = "id"+"-"+"name"+"-"+"name";
        DropDownDrivers.DataBind();
        DropDownDrivers.Items.Insert(0, "Select");

and if u Insert the above data again u can use separotor operator as "-"
and u can take the value




string[] data1 = transkey1.Split('-');

 string Id = data1[0].ToString();
 string name = data1[1].ToString();
 string delegation = data1[2].ToString();


If It Helps Let Me Know
QuestionDrag and drop and Ajax? Pin
AndyBrew701-Sep-09 22:55
AndyBrew701-Sep-09 22:55 
AnswerRe: Drag and drop and Ajax? Pin
Not Active1-Sep-09 23:29
mentorNot Active1-Sep-09 23:29 
QuestionProblem in passing value to popup window Pin
nagendrathecoder1-Sep-09 22:43
nagendrathecoder1-Sep-09 22:43 
AnswerRe: Problem in passing value to popup window Pin
Not Active1-Sep-09 23:34
mentorNot Active1-Sep-09 23:34 
GeneralRe: Problem in passing value to popup window Pin
nagendrathecoder2-Sep-09 0:08
nagendrathecoder2-Sep-09 0:08 
Questionhow we get only year of the system Pin
rummer1-Sep-09 22:40
rummer1-Sep-09 22:40 
AnswerRe: how we get only year of the system Pin
nagendrathecoder1-Sep-09 22:53
nagendrathecoder1-Sep-09 22:53 
GeneralRe: how we get only year of the system Pin
Christian Graus2-Sep-09 0:12
protectorChristian Graus2-Sep-09 0:12 
GeneralRe: how we get only year of the system Pin
sashidhar2-Sep-09 19:27
sashidhar2-Sep-09 19:27 
QuestionMemory allocation error in odbc driver + mysql data base Pin
rinku soni 231-Sep-09 22:04
rinku soni 231-Sep-09 22:04 
AnswerRe: Memory allocation error in odbc driver + mysql data base Pin
Abhishek Sur1-Sep-09 22:24
professionalAbhishek Sur1-Sep-09 22:24 
AnswerRe: Memory allocation error in odbc driver + mysql data base Pin
Christian Graus1-Sep-09 22:29
protectorChristian Graus1-Sep-09 22:29 
Questionscroll bar for gridview Pin
haleemasher1-Sep-09 21:06
haleemasher1-Sep-09 21:06 
AnswerRe: scroll bar for gridview Pin
Coding C#1-Sep-09 21:28
Coding C#1-Sep-09 21:28 
GeneralRe: scroll bar for gridview Pin
haleemasher1-Sep-09 21:40
haleemasher1-Sep-09 21:40 
AnswerRe: scroll bar for gridview Pin
Abhishek Sur1-Sep-09 21:38
professionalAbhishek Sur1-Sep-09 21:38 
AnswerRe: scroll bar for gridview Pin
Abhijit Jana1-Sep-09 23:11
professionalAbhijit Jana1-Sep-09 23:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.