User Profile

Collapse

Profile Sidebar

Collapse
numena79
numena79
Last Activity: Feb 26 '08, 03:17 AM
Joined: Oct 5 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • 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"
    ...
    See more | Go to post

    Leave a comment:


  • 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"...
    See more | Go to post

    Leave a comment:


  • wouldn't a TreeView have just one root node? Is breaking up the Navigation Menu into different TreeViews an option?
    See more | Go to post

    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);...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...