Free Search Engine Submission Search Engine Submission - AddMe ASP.NET Help, ASP.NET Tutorials, ASP.NET Programming, ASP.NET Tricks

Monday, February 15, 2010

Display Dropdown items in textbox

Take the one dropdown list and one textbox
set the both autopostback property=true

public void ddp1_SelectedIndexChanged(object Sender,EventArgs e)
{
txt.Text=ddp1.SelectedItem.ToString()/Text;
}

1 comment: