Horje
gridview edit update delete in asp.net textbox size Code Example
gridview edit update delete in asp.net textbox size
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if ((e.Row.RowState & DataControlRowState.Edit) > 0)
            {
                TextBox tb = (TextBox)e.Row.Cells[5].Controls[0];
                tb.Width = 40;
                TextBox tb1 = (TextBox)e.Row.Cells[6].Controls[0];
                tb1.Width = 60;
                TextBox tb2 = (TextBox)e.Row.Cells[7].Controls[0];
                tb2.Width = 60;
            }
        }




Csharp

Related
xamarin c# switch on hotspot Programmatically Code Example xamarin c# switch on hotspot Programmatically Code Example
how to make a destroy reference in unity Code Example how to make a destroy reference in unity Code Example
Precision comparison in C# Code Example Precision comparison in C# Code Example
get xml from URL Code Example get xml from URL Code Example
hacker typer.com Code Example hacker typer.com Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8