Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ChrisBrunner

    Selections don't stick on PostBack with CheckBoxList

    Hi all, I'm using the CheckBoxList control for the first time. AutoPostBack is set to "True". My problem is that on postback, none of the items seem to be selected. What could I be doing wrong? The code is here: http://pastebin.ca/4114 I'm talking about the code around line 73. There is a...
  2. ChrisBrunner

    Fetch PostBack data with Request.Form?

    Whoops, I didn't refresh before posting that last comment. I think Veep said exactly what I needed. Thank you so much!
  3. ChrisBrunner

    Fetch PostBack data with Request.Form?

    Yes, that's what I'm still working on. =/ Is there not a simple variable that represents what header the user clicked on to sort? Or an easy way to create one? My script reads a query from a DB table, executes it, and then displays the data using the datagrid. AFAIK, in order to make the...
  4. ChrisBrunner

    Fetch PostBack data with Request.Form?

    Obviously, I know almost nothing about ASP.NET. All I need is the name of the column header that was clicked. I have to use AutoGenerateColumns and can't define the columns in advance. So, I thought if I could read all of the POST variables, I could parse the "1" out of...
  5. ChrisBrunner

    Fetch PostBack data with Request.Form?

    Sorry, I didn't state my question very clearly. I have a datagrid on my page that's bound to some data. JavaScript postback functions like the one above are generated by IIS. I'm looking for a way to read the data being posted back (dgrdOutput:_ctl1:_ctl1" in this case) so I can parse it and...
  6. ChrisBrunner

    Fetch PostBack data with Request.Form?

    __doPostBack('dgrdOutput:_ctl1:_ctl1','') is one of the javascript functions on my page. Can I use Request.Form to retrieve this? If not, is there another way? I'm just trying to use the "_ctl1:_ctl1" part in my script. Thanks alot in advance.
  7. ChrisBrunner

    sorting DataGrid without knowing names of fields

    Hi all, I have a DataGrid that's never populated using the same SQL query. Since the column (field) names are usually different, I don't know of a way to create a SortView based on a member of my dataset's DefaultView. Is it still possible to sort this DataGrid? If so, how? Thanks in advance

Part and Inventory Search

Back
Top