Binding Data to text box

Please support our ASP.NET advertiser: Intel Parallel Studio Home
Thread Solved

Join Date: Sep 2009
Posts: 21
Reputation: sudharani is an unknown quantity at this point 
Solved Threads: 1
sudharani sudharani is offline Offline
Newbie Poster

Binding Data to text box

 
0
  #1
Sep 5th, 2009
Hi friends,
I have created a form with a dropdown list and a text box and i have a table named customer with fields cid and name in database.
I successfully binded the cid column to dropdown list.now my problem is i want to bind the name into the text box based on cid selected in drop down list.
Please helpme doing this.
I need it very urgent.
Thanks.
Reply With Quote Quick reply to this message  
Join Date: Sep 2007
Posts: 66
Reputation: reach_yousuf is an unknown quantity at this point 
Solved Threads: 12
reach_yousuf reach_yousuf is offline Offline
Junior Poster in Training

Re: Binding Data to text box

 
0
  #2
Sep 7th, 2009
Hello dear

You can use select_IndexChangeEvent Like this...
  1. Protected Sub MyDropDownList_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyDropDownList.SelectedIndexChanged
  2.  
  3. Mytextbox.text = MyDropDownList.selectedItem.text
  4.  
  5. End Sub
And make sure Your Dropdownlist must have Autopostback property = true

Mark as solved if it helps you!!!
Yousuf
Software Developer
Reply With Quote Quick reply to this message  
Join Date: Sep 2009
Posts: 21
Reputation: sudharani is an unknown quantity at this point 
Solved Threads: 1
sudharani sudharani is offline Offline
Newbie Poster

Re: Binding Data to text box

 
0
  #3
Sep 7th, 2009
ThanK U for your immediate reply.
But the Text Box should display the corresponding name of customer once i select the cid (Customer iD) from the drop down list.
I need coding in c#.
Reply With Quote Quick reply to this message  
Join Date: Aug 2009
Posts: 19
Reputation: praveenkumarm is an unknown quantity at this point 
Solved Threads: 2
praveenkumarm praveenkumarm is offline Offline
Newbie Poster

Re: Binding Data to text box

 
0
  #4
Sep 8th, 2009
Hi,
You might have stored the name of the customer in the database.
Just write a query to fetch the name from the table and add it to the textbox.

protected void dropdownlst_selectectchange(object s, evetntargs s)
{
string str=dropdownlist1.selecteditem.text;
string sql="select name from customer where custid="+str;
sqlcommand cmd=new sqlcommand(sql,connectionstring)
sqldatareader dr=cmd.executereader()
while(dr.read())
{
textbox1.text=dr[0].tostring();
}

}
Reply With Quote Quick reply to this message  
Join Date: Sep 2009
Posts: 21
Reputation: sudharani is an unknown quantity at this point 
Solved Threads: 1
sudharani sudharani is offline Offline
Newbie Poster

Re: Binding Data to text box

 
0
  #5
Sep 8th, 2009
Originally Posted by praveenkumarm View Post
Hi,
You might have stored the name of the customer in the database.
Just write a query to fetch the name from the table and add it to the textbox.

protected void dropdownlst_selectectchange(object s, evetntargs s)
{
string str=dropdownlist1.selecteditem.text;
string sql="select name from customer where custid="+str;
sqlcommand cmd=new sqlcommand(sql,connectionstring)
sqldatareader dr=cmd.executereader()
while(dr.read())
{
textbox1.text=dr[0].tostring();
}

}
Thank U very much praveen,
Now i have another problem that i am not able to select other cid from the drop down list.If i select another "cid" from the DDL also it is not effecting.It is always displaying the first item of the list.
How to solve this.please help me.
Reply With Quote Quick reply to this message  
Join Date: Aug 2009
Posts: 19
Reputation: praveenkumarm is an unknown quantity at this point 
Solved Threads: 2
praveenkumarm praveenkumarm is offline Offline
Newbie Poster

Re: Binding Data to text box

 
0
  #6
Sep 8th, 2009
Hi,
May be you have not set the AutoPostBack property to true.
<aspropDownList ID="DropDownList1" runat="server" AutoPostBack="true" OnSelectedIndexChanged="dropdownlst_selectectchange">
</aspropDownList>

thank you,
regards
Reply With Quote Quick reply to this message  
Join Date: Sep 2009
Posts: 21
Reputation: sudharani is an unknown quantity at this point 
Solved Threads: 1
sudharani sudharani is offline Offline
Newbie Poster

Re: Binding Data to text box

 
0
  #7
Sep 9th, 2009
Hello Praveen,
I have given the property AutoPostBack to true.still it is giving only first item in the list.I did the code in page_load event.
Is it require to add the code in betwwen if(!page.IsPostBack) condition .
reply me soon
Thank U
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC