----------------------------------------------------------
Try this
protected void Page_Load(objec t sender, EventArgs e)
{
if (!IsPostBack)
{
// Code for Binding Data to DropDownList goes Here
}
}...
User Profile
Collapse
-
-
-
-
Import SQL Server data to a DAT file
Hi all,
I want to know how to import SQL Server(2005) data into a DAT file. Can anyone help me on this. -
ListBox
protected void btnSelectAll_Cl ick(object sender, EventArgs e)
{
foreach (ListItem list in ListBox1.Items)
{
ListItem lst = new ListItem();
lst.Value = list.Value;
lst.Text = list.Text;
ListBox2.Items. Add(lst);
}
...Leave a comment:
-
Usage of Asp.net objects
Hi all,
I am beginner in Asp.net, so i need some help on the practical use of Asp.net objects.
Can anyone help me on this!
No activity results to display
Show More
Leave a comment: