skip to Main Content

HTML Text Wrapping

I am working on an image/text box for my website, and I want the image to stay to the left of the text, which I got working with only 1 or 2 lines of text beside it: It stays beside…

VIEW QUESTION

I want to make a required field validator for each text box having blank spaces in gridview using javascript in asp.net C#

<div style="height: 500px; overflow: scroll;" id="divEmployee" runat="server"> <asp:GridView ID="gView" runat="server" AllowPaging="false" AutoGenerateColumns="False" CssClass="LabelText" DataKeyNames="Id" EmptyDataText="No Data Found !" EnableModelValidation="True" OnRowEditing="gView_RowEditing" Width="100%"> <HeaderStyle CssClass="GridHeader" Height="30px" /> <PagerStyle CssClass="GridRowPage" Font-Size="10pt" /> <RowStyle CssClass="NormalGridRow" Height="30px" /> <FooterStyle CssClass="GridHeader" /> <Columns> <asp:BoundField DataField="Id" HeaderStyle-HorizontalAlign="Center"…

VIEW QUESTION
Back To Top
Search