Posts

Showing posts from October, 2015

checkbox all for radioButtonList Control Inside Gridview in Asp.Net C#

In gridview Design code .................................................. <asp:GridView ID="gvUserMenus" runat="server" EmptyDataText="No Records"  RowStyle-Height="20px" ShowHeaderWhenEmpty="true" >                     <Columns>                         <%-- <asp:BoundField DataField="MainMenu" HeaderText="MainMenu" ItemStyle-Width="150" />                                                     <asp:BoundField DataField="SubMenu" HeaderText="SubMenu" ItemStyle-Width="150" />                                                     <asp:BoundField DataField="MenuItem" HeaderText="MenuItem...

Gridview Fixed Headers Using CSS in Asp.net

              <div id="DataDiv" style="overflow-y: auto; height: 455px; min-height: 0px;" >  <asp:GridView ID="gvUserMenus" runat="server" EmptyDataText="No Records" HeaderStyle-CssClass="csHeader" > </ asp:GridView> </div> =>applying css ..............................  .csHeader {             position: fixed !important;             margin-top: -24px;         }

Fixed headers in gridview using small javascript

IN aspx page  <div id="DivRoot" align="left">                             <div style="overflow: hidden;" id="DivHeaderRow">                             </div>                             <div style="overflow: auto;" onscroll="OnScrollDiv(this)" id="DivMainContent">                                                             <asp:GridView ID="gvAuditLogDetails" runat="server" EmptyDataText="No Records" HeaderStyle-BackColor="Red" HeaderStyle-ForeColor="White" CssClass="table" RowStyle-Height="20px" Width="1323px" HeaderStyle-Height="10px" >               ...

Asp.net MVC knowlege for experiance

The below 77 points are vary use full to all try to read all 1) What is MVC? MVC is a pattern which is used to split the application's implementation logic into three components: models, views, and controllers. 2) Can you explain Model, Controller and View in MVC? Model – It’s a business entity and it is used to represent the application data. Controller – Request sent by the user always scatters through controller and it’s responsibility is to redirect to the specific view using View() method. View – It’s the presentation layer of MVC. 3) Explain the new features added in version 4 of MVC (MVC4)? Following are features added newly – Mobile templates Added ASP.NET Web API template for creating REST based services. Asynchronous controller task support. Bundling the java scripts. Segregating the configs for MVC routing, Web API, Bundle etc. 4) Can you explain the page life cycle of MVC? Below are the processed followed in the sequence - App initializatio...