I've added the additional code you might need to put in... Please see the code in bold below,
Code: ( vbnet )
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArg s)
Dim con As New SqlConnection
con.ConnectionS tring = "Integrated Security=True;d ata source=ph-erwinm1;" & "persist security info=false;Init ial Catalog=ITP"
...
User Profile
Collapse
-
I'm not sure how you're binding your Gridviews behind the scenes, or what your architechture is. Could you post some source code?
Here's one way in which this could be done (in C#), assuming that your UI relies on the underlying business objects to deliver data ,
aspx
<!-- item gridview -->
<asp:GridView ID="GridView1" runat="server" AutoGenerateCol umns="False"...Leave a comment:
-
wouldn't a TreeView have just one root node? Is breaking up the Navigation Menu into different TreeViews an option?Leave a comment:
-
Why don't you try using an Arraylist (or more specifically a Generic List) for your input instead?
If you have not choice but to store your input in a string[] , see if this works,
//this would be your original input array
string[] arrayinput = new string[] { "hello", "world" };
//convert it to a generic list of strings
List<string> test = new List<string>(ar rayinput);...Leave a comment:
No activity results to display
Show More
Leave a comment: