Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
reflex2dotnet
Yak Posting Veteran
99 Posts |
Posted - 2007-05-18 : 10:05:40
|
Hi friendsHow can i check whether a link button is clicked or not?(within the same page)I want to perform some validations, if a link button is clickedBut confused how to check whether it have been clicked or notCan anyone please help me in this?Thanks |
|
jsmith8858
Dr. Cross Join
7423 Posts |
Posted - 2007-05-18 : 10:15:59
|
??? when a link button is clicked, a Click() event is raised. You don't check to see if it is clicked, you know it is clicked when the event ocurrs.- Jeffhttp://weblogs.sqlteam.com/JeffS |
|
|
reflex2dotnet
Yak Posting Veteran
99 Posts |
Posted - 2007-05-18 : 10:18:14
|
Thanks for the replyI am trying to do something like thisif linkbutton1.clicked = true thencount = 1elsecount = 0end ifCan i do something like this?Thanks |
|
|
jsmith8858
Dr. Cross Join
7423 Posts |
|
|
|
|