How To Set Gridview Column Width Dynamically In Asp.Net C# ...

Neeraj Code Solutions- asp.net ,C#,MVC,Javascript,Sql Server,Jquery,Gridview,HTML5 ,Datalist
  • Home
  • Home ASP.NET With C# CSS GridView How to set Gridview column width dynamically in Asp.Net C# How to set Gridview column width dynamically in Asp.Net C# ASP.NET With C#, CSS, GridView In this article, I will show you how to set column- width of gridview in asp.net .We can use several methods to achieve it just like source code (grid view property), code behind(C#) and CSS. First Method:- we can set the columns width by using ItemStyle-Width property just like below :- <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false"> <Columns> <asp:BoundField DataField="Name" HeaderText="Name" ItemStyle-Width="50px" /> <asp:BoundField DataField="Contactno" HeaderText="Contactno" ItemStyle-Width="50px" /> <asp:BoundField DataField="Brithday" HeaderText="Brithday" ItemStyle-Width="50px" /> </Columns> </asp:GridView> Second Method:- We can call the columns’s width from code behind just like below :- For this code we need to need to call RowDataBound. protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { GridView1.Columns[0].ItemStyle.Width = 50; GridView1.Columns[1].ItemStyle.Width = 50; GridView1.Columns[2].ItemStyle.Width = 50; } } Third method:- We can set the column width using css but we call this call on only code behind because we can not directly call the css in column from source code and if we call on this gridview then it will be set whole gridview width not the columns. We can use this method like below:- Source code:- <style type="text/css"> .columnwidth { width: 50px; } </style> Codebehind:- protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { for (int i = 0; i > e.Row.Cells.Count; i++) { e.Row.Cells[i].CssClass = "columnwidth"; } } } How to set Gridview column width dynamically in Asp.Net C# How to set Gridview column width dynamically in Asp.Net C# Reviewed by NEERAJ SRIVASTAVA on 11:36:00 AM Rating: 5 Share This: Facebook Twitter Google+ Pinterest Linkedin GridView

    No comments:

    Subscribe to: Post Comments ( Atom )

    Category

    AngularJS ASP.NET With C# CSS Datalist GridView Interview Questions & Answer Java Script JQuery MVC Power BI Share Point Sql Server

    Bitto Properties

    Bitto Properties

    STOP BEGGARY

    STOP BEGGARY

    RECENT

    • Contact us form in Asp.net c# In this article, we send a mail to the admin after filling the contact us . Maximum website or blog have contained the contact us. Many t...
    • Benefits of using Inheritance in C#.net Once a behavior (method) or property is defined in a super class (base class), that behavior or property is automatically inherited by a...
    • How to Get Table information in SQL Server like Column Name, Data Type, Character length, Default Values etc How to Get Table information in SQL Server  like Column Name, Data Type, Character length, Default Values etc Through this article, we c...
    • How to count item values comma-separated values in SQL SERVER We have a table like below:   IN this Picture, we want to count item values separated with commas like the below image: ( Count of ite...
    • Login page in asp.net c# with sql database I have written this article basically for the fresher and the beginners. On their mind that how to create a login page and contact with th...

    POPULAR

    • Login page in asp.net c# with sql database I have written this article basically for the fresher and the beginners. On their mind that how to create a login page and contact with th...
    • How to send forgot password link on email for reset in asp.net C# In this article, I will show that how to send a reset password link on the mail. We need maximum time to use the code in our project so I...
    • How to set calendar in textbox in asp.net C# As pervious we have seen How to set calendar intextbox in asp.net using jquery but if want to called calendar pure by asp.net control ...
    • How to delete particular row in grid view in asp.net c# In this article, I will show you that how we can delete the particular row in the grid view. We will add the link button in the grid view...
    • Validation / Protection of textbox to Copy, Cut, Paste and Contextmenu in asp.net c# In this article, I will protect the text to perform the copy, cut and paste for the security purpose. Many time we need to perform this, ...

    FEATURED

    • Login page in asp.net c# with sql database I have written this article basically for the fresher and the beginners. On their mind that how to create a login page and contact with th...
    • How to send forgot password link on email for reset in asp.net C# In this article, I will show that how to send a reset password link on the mail. We need maximum time to use the code in our project so I...
    • How to set calendar in textbox in asp.net C# As pervious we have seen How to set calendar intextbox in asp.net using jquery but if want to called calendar pure by asp.net control ...
    • How to delete particular row in grid view in asp.net c# In this article, I will show you that how we can delete the particular row in the grid view. We will add the link button in the grid view...
    • Validation / Protection of textbox to Copy, Cut, Paste and Contextmenu in asp.net c# In this article, I will protect the text to perform the copy, cut and paste for the security purpose. Many time we need to perform this, ...

    Pages

    • Home
    • Privacy Policy

    washing machine repair

    washing machine repair

    daily health letters

    daily health letters

    Home Maintenance Company

    Home Maintenance Company

    Created By

    Design By DMD Solutions Powered by Blogger.

    Từ khóa » Html.grid Mvc Column Width