DataGrid with edit,insert & delete but with no ViewState !?

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default DataGrid with edit,insert & delete but with no ViewState !?

    is this possible and how?
    Tomo Tomo Guest

  2. Similar Questions and Discussions

    1. Edit, Add , Delete Data from a DataGrid
      Hi... I am pretty new to the .NET especially Visual C++.NET . I have a question maybe the experts here can answer. I have an XML file and the...
    2. Howto insert delete rows into a ASP.net datagrid?
      Hi I am a newbie ASP.net programmer and can't find a decent code sample to insert/delete/edit rows in a ASP.net datagrid. Thanks Jim
    3. Datagrid Edit, Insert & Update Checkbox (ASP.NET Using VB.NET)
      Hi you guys. If you could possible help me here. I am quite new to .NET coming over from VB and with limited ASP development. I am having a problem...
    4. Add/Edit/Delete Fields in Datagrid
      You can edit in-place abyway. Suggest you consifer using right click invoked context menus for Insert/Delete functions, its cleaner "Jordan...
    5. Insert a Datatable or Datagrid into ViewState?
      Is it possible to insert the contents of an entire datatable or datagrid into ViewState so that is can be persisted between calls to and from the...
  3. #2

    Default Re: DataGrid with edit,insert & delete but with no ViewState !?

    Tomo Tomo wrote:
    > is this possible and how?
    Yes. You can turn off viewstate on the datagrid, but you will
    need a way to keep the state of the EditItemIndex property
    (and also page/sort info if you use paging/sorting).
    You could do this by creating your own property with ViewState,
    or you could add a hidden field.

    --

    Jos


    Jos 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