Datagrid on Webform - How to update? Help

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Datagrid on Webform - How to update? Help

    Hi,

    I'm using Vb.NET webform, connecting to sql server database on the local
    machine. I used datagrid propery builder to add the edit, update and cancel
    colum. On the code, i have:

    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
    System.EventArgs) Handles MyBase.Load
    SqlDataAdapter1.Fill(DataSet11)
    DataGrid1.DataBind()
    End Sub

    When i run the page, i can see the content on the browser, but when i click
    on update, nothing happens.
    Any tips/ideas how i can do the update?

    Thanks,
    Ash


    Ash Guest

  2. Similar Questions and Discussions

    1. Print WebForm DataGrid
      Is it possible to print a webfor datagrid and if so how? Thanks, Dave -- Message posted via http://www.dotnetmonster.com
    2. Testing existance of a datagrid control on a webform
      Hi all, I have a usercontrol (a textbox with dropdown calendar that fills the textbox with the selected date) that I implement in a datagrid in a...
    3. To all Gurus: How can I edit/update a DataGrid in a DataGrid (nested DataGrid)? Possible?
      Hello, I am searching the whole Internet for a good example how to edit/update a DataGrid in a DataGrid (nested DataGrid). I know how to...
    4. bind data to a textbox in a template column in WebForm DataGrid
      Hi, I am trying to put a textbox in a template column both for displaying and editing. When I add the following line to the HTML code...
    5. Update webform with changes in a popup form
      You'll want to use Window.Opener to reference the original window. Here's an example: window.opener.document.reload(true); Here's more info:...
  3. #2

    Default Datagrid on Webform - How to update? Help

    Hi,

    I'm using Vb.NET webform, connecting to sql server database on the local
    machine. I used datagrid propery builder to add the edit, update and cancel
    colum. On the code, i have:

    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
    System.EventArgs) Handles MyBase.Load
    SqlDataAdapter1.Fill(DataSet11)
    DataGrid1.DataBind()
    End Sub

    When i run the page, i can see the content on the browser, but when i click
    on update, nothing happens.
    Any tips/ideas how i can do the update?

    Thanks,
    Ash


    Ash Guest

  4. #3

    Default Datagrid on Webform - How to update? Help

    Hi,

    I'm using Vb.NET webform, connecting to sql server database on the local
    machine. I used datagrid propery builder to add the edit, update and cancel
    colum. On the code, i have:

    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
    System.EventArgs) Handles MyBase.Load
    SqlDataAdapter1.Fill(DataSet11)
    DataGrid1.DataBind()
    End Sub

    When i run the page, i can see the content on the browser, but when i click
    on update, nothing happens.
    Any tips/ideas how i can do the update?

    Thanks,
    Ash


    Ash Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139