Ask a Question related to ASP.NET General, Design and Development.
-
Jeelz #1
Disabling LinkButton using JavaScript?
Hi Guyz,
Would appriciate any tip on disabling an ASP.NET
LinkButton using client sided code like javascript.
My Requirement is such that the user should be allowed to
click on the link button only once (viz. he should not be
allowed to submit the form twice). This stuff is easy when
using a ASP:Button or HTML Button... but a link button has
got me wondering how... plz help!
Jeelz
Jeelz Guest
-
Linkbutton does not look like a linkbutton
OK, I almost got my problem solved. Zen is almost there! Just that a LinkButton control inside a column in my datagrid doesn't show like a link... -
Overwriting the "href='javascript:__doPostBack........" in a LinkButton
I'm building a custom LinkButton control that will confirm a deletion before processing it. I've tried a few different things, some partially... -
Javascript Disabling WebControls
Hello, I have an ASP.Net web page populated with WebControls, such as textboxes and checkboxes. On this page I also have a JavaScript that... -
LinkButton
Hi, I create a LinkButton in runtime, and I want to be able to access a function when a user clicks on the generated link in the page. My problem... -
Format of LinkButton..?
How can I make my linkbuttons color always blue even if they are visited or not, and make them underline in hover mode free from browser settings.. -
Terry Orzechowski #2
Disabling LinkButton using JavaScript?
It seems to me that if you just had the link button call a
client side function, that disabled or removed the button,
or set a boolean it would do the job? Write me back if my
understanding of the problem was too simple or you do not
know how to do this?
when>-----Original Message-----
>Hi Guyz,
>
>Would appriciate any tip on disabling an ASP.NET
>LinkButton using client sided code like javascript.
>
>My Requirement is such that the user should be allowed to
>click on the link button only once (viz. he should not be
>allowed to submit the form twice). This stuff is easyhas>using a ASP:Button or HTML Button... but a link button>got me wondering how... plz help!
>
>Jeelz
>.
>Terry Orzechowski Guest
-
Vidar Petursson #3
Re: Disabling LinkButton using JavaScript?
element onclick="DoSomething(); this.disabled=true"
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"Jeelz" <jeelz@need4speed.com> wrote in message
news:15ad01c33d67$c9f94bf0$a101280a@phx.gbl...> Hi Guyz,
>
> Would appriciate any tip on disabling an ASP.NET
> LinkButton using client sided code like javascript.
>
> My Requirement is such that the user should be allowed to
> click on the link button only once (viz. he should not be
> allowed to submit the form twice). This stuff is easy when
> using a ASP:Button or HTML Button... but a link button has
> got me wondering how... plz help!
>
> Jeelz
Vidar Petursson Guest



Reply With Quote

