Insert a Datatable or Datagrid into ViewState?

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

  1. #1

    Default 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
    server? It's on an intranet, so bandwidth isn't too much of a concern here.

    --
    Stephajn Craig


    Stephajn Craig Guest

  2. Similar Questions and Discussions

    1. How to insert datatable data into database at a time
      Hi TO All I am doing one task, in that i want to insert datatable data int database at a time.i.e., i am creating one datatable and i a...
    2. UserControl inside of datagrid - loses its viewstate when datagrid is re-bound on postback
      I have a simple usercontrol, a datepicker which contains 3 dropdownlist , it resides inside a datagrid column and i set the selecteddate property of...
    3. Datatable Relations and Datagrid
      I know you can create two datatables in a dataset and then link them up using a data relation. But to make use of this I would like to know do you...
    4. Help with Delete in DataTable and DataGrid
      Hi, Can someone please help with a problem I have. The BOL I think are useless in explaining what I want to do. I have a datagrid, that is...
  3. #2

    Default Re: Insert a Datatable or Datagrid into ViewState?


    "Stephajn Craig" <s.craig@NOSPAMfunsunvacations.com> wrote in message
    news:OCUPGnJUDHA.3024@tk2msftngp13.phx.gbl...
    > 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
    > server? It's on an intranet, so bandwidth isn't too much of a concern
    here.
    >
    Why not just put it in Session state?

    If you have enough memory on your web server it would be much cheaper,
    faster and easier.

    David


    David Browne 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