Search

You searched for the word(s): userid:876766

Matching Posts

  • Re: First,Second and Third Normal Form

    Plz go thr this link. http://www.bkent.net/Doc/simple5.htm
  • Re: need Image as tooltip

    Why do not one of these posts use an animation to show the image with an ultra cool flyout Obviously you'll have to put your image in a panel and adjust the resize and move animations to meet the needs of your application. myshowimage is the control your hovering over. panelshowimage is the panel your image is in. <cc1:AnimationExtender ID="myshowimage_AnimationExtender" runat="server" Enabled="True" TargetControlID="myshowimage"> <Animations>
    Posted to Web Forms (Forum) by Anits on 6/29/2009
  • Re: How can i validate a TextBox value

    <script type="text/javascript" language="javascript"> function isInteger(s) { var i; s = s.toString(); for (i = 0; i < s.length; i++) { var c = s.charAt(i); if (isNaN(c)) return false; } return true; } function IsDate ( value ) { var iDate = /(0[1-9]|1[012])[\-\ /\.](0[1-9]|[12][0-9]|3[01])[\- \/\.](19|20)\d\d/; if (value.search(iDate)==-1) { return false; } return true; } function validate() { if(!isInteger(document.getElementById('<%=TextBox1.ClientID%>'
    Posted to Web Forms (Forum) by Anits on 6/29/2009
  • Re: OnClientClick Property

    Please try this. protected void rptCompany_ItemDataBound(object sender, RepeaterItemEventArgs e) { RepeaterItem item = e.Item; if ((item.ItemType == ListItemType.Item) || (item.ItemType == ListItemType.AlternatingItem)) { Button btnContact = item.FindControl("btnContact") as Button; btnContact.OnClientClick = string.Format("return ToggleContactRow('{0}','{1}','{2}')", 1stParam, 2ndparam, 3rdparam); } } This code really works for me...
    Posted to Client Side Web Development (Forum) by Anits on 6/29/2009
  • Re: InvalidOperationException Bind() operation on a DropDown inside DetailsView

    Hi, I think before CType (DetailsView1.FindControl( "DropDownList1" ), DropDownList).DataBind() statement you have to set the datasourse to the dropdown list . like for eg, Dropdownlist ddl=( DropDownList1 ) DetailsView1.FindControl( "DropDownList1" ); this.ddl.DataSource = DataTable or list or any thing; this. ddl .DataTextField = "MemberName";//for eg this. ddl .DataValueField = "MemberID"; this. ddl .DataBind(); Please try..
    Posted to Data Presentation Controls (Forum) by Anits on 6/29/2009
  • Re: Passing variables from one web form to another

    Please pass them via query string like this.btnCancel.OnClientClick =string.Format("Response.Redirect(editschedule.aspx?ScheduleID={0})","ValueHere");
    Posted to Getting Started (Forum) by Anits on 6/29/2009
  • Re: GridView - RowDeleting event

    Yes you can do this by adding an image button to the grid view <asp:TemplateField HeaderText="Action"> <ItemTemplate> <table> <tr> <td><asp:ImageButton ID="btnEdit" runat="server" SkinID="imgamend" CommandName="EditNews" CommandArgument='<%# DataBinder.Eval(Container.DataItem,"GUID") %>' /> <td><asp:ImageButton ID="btnArchive" runat="server" SkinID="imginactivate"
    Posted to Data Presentation Controls (Forum) by Anits on 6/29/2009
  • Re: DropDownList ItemsCollection - Clearing all but first item

    Please try this, this.dropdownlist.ClearSelection();
    Posted to Web Forms (Forum) by Anits on 6/25/2009
  • Re: How to validate gridview in client side

    Hi, I think by just adding validation controls we can achieve the result. Please try this. 1e, Add RequiredFieldValidator or RegularExpression validator according to your requirement near by the textbox and dropdown list. See sample code below. <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false"> <Columns> <asp:TemplateField HeaderText="ProductName" SortExpression="ProductName" > <ItemTemplate> <asp:TextBox
    Posted to Client Side Web Development (Forum) by Anits on 6/24/2009
  • Re: How to validate gridview in client side

    Hi, I think by just adding validation controls we can achieve the result. Please try this. 1e, Add RequiredFieldValidator or RegularExpression validator according to your requirement near by the textbox and dropdown list. See sample code below. <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false"> <Columns> <asp:TemplateField HeaderText="ProductName" SortExpression="ProductName" > <ItemTemplate> <asp:TextBox
    Posted to Client Side Web Development (Forum) by Anits on 6/24/2009
Page 1 of 2 (16 items) 1 2 Next >