vote up -1 vote down star

hai guys,

In source code of asp i'm using onClick() in textbox i.e

onClick="openpopup('ct100$contentPlaceHolder$hdpackageid',
           'ct100$contentPlaceHolder$txtpackageid','package')"

for opening a popup containing package details.and in its selection in popup packageid is stored into a hiddenfield and packagename is stored into textbox.I need to clear the hidden field and textbox after selection,if i doesnot need it.i use "this.blur();" for not editing the text box.I need these things to be write in vb code,means in onClick i want to clear textbox,hiddenfield and then call popup. Can anyone help me to solve the problem.Is there any other woy to do it?

flag

33% accept rate
Can you please be more clear and format you question? – Cesar May 4 at 7:01

1 Answer

vote up 1 vote down
onclick = 'document.getElementById("textbox").value = ""; openpopup(........); '
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.