Forum: C# Aug 1st, 2009 |
| Replies: 2 Views: 284 I m creating columns at runtime,I want to know how add delete & edit buttons in each row & to create them at runtime..Foll code create columns at runtime -
protected void Page_Load(object... |
Forum: C# Jul 31st, 2009 |
| Replies: 4 Views: 1,225 thx very much one problem is solved,I want to ask that is there any to set tag in Gridview,As In listview we have tag & for each row it is different, I want to delete the row from the gridview, on... |
Forum: C# Jul 30th, 2009 |
| Replies: 4 Views: 1,225 I want to fill GridView ,But i dont want to use datasource..I want to use the method,thru which i add the data using row by row
As in VB.net
Dim row0 As String() = {"A","B","C"};
... |
Forum: C# Jul 18th, 2009 |
| Replies: 4 Views: 619 I m not able to replace the contents,help me out!!!
protected void Button1_Click(object sender, EventArgs e)
{
string a = "11-22-33-44-55";
string [] Array;
int... |
Forum: C# Apr 3rd, 2009 |
| Replies: 5 Views: 589 |
Forum: C# Apr 1st, 2009 |
| Replies: 5 Views: 589 hi frnd, Now i got the checboxes status,But now I want to get the cell value of second column whose corresponding checkboxes are checked.
On Net,I found but its not working....Help me out...
... |
Forum: C# Apr 1st, 2009 |
| Replies: 5 Views: 589 Thx Very much,It worked........... |
Forum: C# Apr 1st, 2009 |
| Replies: 5 Views: 589 I bound gridview with databse..property Checkbox -true .
I have three columns roll,name ,roll.
I want that on button_click, roll nos are displayed whose checkboxes are checked in gridview--... |
Forum: C# Mar 21st, 2009 |
| Replies: 0 Views: 433 I want to add data to dataGridView.Mine code is as below-
protected void Page_Load(object sender, EventArgs e)
{
this.GridView1.rowcount = 3;
... |
Forum: C# Mar 15th, 2009 |
| Replies: 2 Views: 476 Mine code split strings using "^", I want to split the strings using "^^^^",
string b = "mansi^^^^sharma";
But i m not getting it,Cz split takes just one char.
Mine code is as below- |