No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Hi Please check out this code it will really help you. <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" BorderStyle="Solid" CellPadding="4" DataKeyNames="CategoryID" BorderColor="Silver" BorderWidth="1px" Width="300px"> <Columns> <asp:TemplateField HeaderText="Categories"> <HeaderTemplate> <asp:CheckBox ID="chkSelectAll" runat="server" Text="SelectAll" AutoPostBack="true" OnCheckedChanged="chkSelectAll_CheckedChanged" /> </HeaderTemplate> <ItemTemplate> <asp:CheckBox ID="chk1" runat="server" Text='<%# DataBinder.Eval( Container.DataItem,"categoryID" ) + " " + DataBinder.Eval( Container.DataItem,"categoryName" ) %>' /> …
Hi All, Iam wondering, Can anybody know this What are the advantages of a hosted SharePoint vs. one that is on an in-house server? I will highly appreciate your feed back! Thanks In Advance Jazz
HI, To display a message box in asp.net you must use javascript in your html view of your form.Code is as followes. In head teg of HTML View of your Web Form write the following code <head> <Script language="JavaScript"> function showMsg() { alert("Your message Here"); } </Script> </head> To Call …
HI, Kindly check out this url,I hope it will help you. [url]http://www.ondotnet.com/pub/a/dotnet/2003/01/06/formsauthp1.html[/url]
HI All, Can any one tell me What's the difference between Page.RegisterClientScriptBlock and Page.RegisterStartupScript? Thanks in advance! Jazz
The End.
jazz.learner