Just trying to connect an ASP.NET page to an SQL database. When I run
the page, I get no errors but no recordset results are returned via the
datagrid control -- it is completely blank.
The only thing displayed is the "Job Dispatch List" page title which
executed as plain HTML.
Code is as ...
more >>
I have a form with a datagrid control. And I have a button that will
retrieve data and upon postback, the datagrid gets populated.
What I would like to have is, upon the loading of the form (before
postback), have the datagrid display the header with all the column
headings.
Right now, n...
more >>
Hi everyone,
I'm binding an ArrayList to a DataGrid for the first time (I'm used to
binding DataSets and DataTables) and I was wondering if I could somehow
"name" the ArrayList, so that I can refer to it as a DataField in an
asp:BoundColumn?
In essence, I'm doing this:
ArrayList Arr1 ...
more >>
I have a datagrid with a button column. When the user clicks a button in the
datagrid, a PDF should open in a child window. To make this happen, I use
the grid's ItemDataBound event to add client side code to call a JavaScript
function to open the PDF window.
Most of the time it works corre...
more >>