custom web control +client-side javascript + postback

Ask a Question related to ASP.NET Building Controls, Design and Development.

  1. #1

    Default custom web control +client-side javascript + postback

    Hello,

    I am trying to create a new Web Control (ASP.NET 1.1) that contains
    among other textboxes. The content of these textboxes (runat=server)
    might be changed by client-side Javascript code, like:
    document.getElementById('txt...').value='...';
    Then, at server side, I will need to retrieve the NEW content of these
    textboxes later on...
    The problem I am facing is that I don't retrieve the new content of the
    textboxes... It seems that after postback, I don't get these new
    values...

    Could someone explain me how to achieve this?

    Many thanks

    boeledi Guest

  2. Similar Questions and Discussions

    1. Client-Side Validation of asp:TextBox with Javascript
      Hi - I'm trying to do client-side validation of the text in a Asp.Net textbox control using javascript. My page has the following: <form...
    2. Hit Counter in Javascript on client side.
      Have opportunity to use free web server space but can only use client scripting. How to code hit counter in javascript? Any help would be...
    3. Custom Client-Side Validation in Web User Control
      Guys, I have a custom validator that has the default property ControlToValidate plus one called SecondControlToValidate that I have created, like...
    4. Client side action to cause postback
      Hi As soon as anything is added to the textbox set radio checked and submit? myBox.Attributes.Add("onkeypress","if(this.value != '')...
    5. how can i add client side javascript to a web user control?
      hi, i have a web user control that i wish to add some client-side javascript to. something like this: onChange="javascript:DoSomething();" ...
  3. #2

    Default Re: custom web control +client-side javascript + postback

    What's the ID that you are using? Is it textBox1 or textBox1.ID?
    Use textBox1.ClientID

    --
    Happy Hacking,
    Gaurav Vaish | [url]www.mastergaurav.com[/url]
    [url]www.edujini-labs.com[/url]
    [url]http://eduzine.edujinionline.com[/url]
    -----------------------------------------


    "boeledi" <didier.boelens@steams.be> wrote in message
    news:1166143999.831438.80840@f1g2000cwa.googlegrou ps.com...
    > Hello,
    >
    > I am trying to create a new Web Control (ASP.NET 1.1) that contains
    > among other textboxes. The content of these textboxes (runat=server)
    > might be changed by client-side Javascript code, like:
    > document.getElementById('txt...').value='...';
    > Then, at server side, I will need to retrieve the NEW content of these
    > textboxes later on...
    > The problem I am facing is that I don't retrieve the new content of the
    > textboxes... It seems that after postback, I don't get these new
    > values...
    >
    > Could someone explain me how to achieve this?
    >
    > Many thanks
    >

    Gaurav Vaish \(www.Edujini-Labs.com\) Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139