I need to change the contents of the datafield to make it look a bit
more userfriendly.
What I have at the moment is as follows:
<asp:BoundColumn DataField="retired" HeaderText="Retire
Status"></asp:BoundColumn>
Where the "retired" is extacted from a database table and has a bit
datatype; ...
more >>
I have a datagrid that I created and fill a dataset using a stored proc.
and bind it. The first column( a linkbutton button column) in the DG
contains a number, the second a name. When the user presses the button I
need the number displayed on the link. The number is a field from the
database. ...
more >>
I have a datagrid on a page .. which can be very large .. a couple of
hundred rows and 20 columns. Some of the columns are custom templates
allowing the user to enter in text or select a checkbox .. since there are
several postbacks while interacting with the page .. reducing the viewstate
size...
more >>
I created a simple datagrid that was populated from a SQL stored procedure.
SP
Select LNAME + FNAME as NAMETEXT, DATEHIRE as DATETEXT from employees
did this in ASP.NET>>
tmpSQL.SQLDB.Open()
tmpSQL.SQLCmd.CommandType = CommandType.StoredProcedure
tmpSQL.SQLCmd.CommandText = "SP_GETNAMES"
...
more >>