Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help with asp.net....
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00812283
Message ID:
00812897
Views:
14
>how does datapipe or dataset works?

Datapipe code in C#:
string strConnection = "SERVER=(local);Trusted_Connection=Yes ";
string strSQLforListBox = "select distinct ap_applpg as master_page from depappl where ap_applpg <> ' ' order by 1 " ;


SqlConnection objConnection = new SqlConnection(strConnection);
SqlCommand objCommand = new SqlCommand(strSQLforListBox, objConnection);

objConnection.Open();
MmDropDownList10.DataSource = objCommand.ExecuteReader();
MmDropDownList10.DataTextField = "master_page";
MmDropDownList10.DataBind();
objConnection.Close();


DataSet can be done through your GUI. Just click away. Read the help too.

__Stephen
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform