Ask a Question related to ASP Database, Design and Development.
-
michaaal #1
How can I create a YES/NO column?
I use this code to dynamically create a column in a table...
strSQL = "CREATE TABLE (FirstName TEXT(30), LastName TEXT(20));"
conn.execute(strSQL)
This will create two text columns. How can I create some YES/NO columns?
michaaal Guest
-
Move bound column to right of dynamic column in datagrid?
I have a datatable that I am binding to a C# ASP.NET 1.1 web page. I also want to put an "Edit" column on the datagrid. However, whenever I use... -
How do I create a YES/NO column in my table?
I use this code to create a table dynamically... strSQL = "CREATE TABLE (FirstName TEXT(30), LastName TEXT(20));" conn.execute(strSQL) This... -
Is it possible to create a custom header/footer - not with column names but with html
I want to know if it is possible to create my own header and footer which contains arbitrary text/html items in a datagrid . Look at the included... -
Convert an MS Access Yes/No column to a checkbox column in C# datagrid
Currently I have a datagrid displaying the multiple columns of data (text and numerical) found in a table in MS Access. In the Access table,... -
how to Add different controls(textBox,DropDownList or some ) in the same column,based upon the value in the previous column (Say second Colum which contain dropdown with some values) ?
I am new to ASP.NET. I am facing problem with datagrid. I will explain prob now. In the datagrid the first column is name in the second...



Reply With Quote

