Click here to Skip to main content
15,917,610 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Web Services .. Static Class Members Life Time Pin
Davids_Maguire26-Nov-06 10:01
Davids_Maguire26-Nov-06 10:01 
GeneralRe: Web Services .. Static Class Members Life Time Pin
Guffa26-Nov-06 12:06
Guffa26-Nov-06 12:06 
Questioncreate templet coulmn in datagrid [modified] Pin
ptvce26-Nov-06 0:00
ptvce26-Nov-06 0:00 
QuestionRegular expression needed Pin
just3ala225-Nov-06 23:51
just3ala225-Nov-06 23:51 
AnswerRe: Regular expression needed Pin
Christian Graus26-Nov-06 9:22
protectorChristian Graus26-Nov-06 9:22 
GeneralRe: Regular expression needed Pin
just3ala226-Nov-06 19:07
just3ala226-Nov-06 19:07 
QuestionButton click (On and Off) Pin
nannapanenikamalnath25-Nov-06 22:59
nannapanenikamalnath25-Nov-06 22:59 
AnswerRe: Button click (On and Off) Pin
just3ala226-Nov-06 0:19
just3ala226-Nov-06 0:19 
There is no property for the button called state
but u can do teh workaround by declaring a glabal boolean variable "bFlag" and set it to False. Add a text box called txtState
<br />
Dim bFlag As Boolean = False 'False for unclicked and True for clicked<br />

on the button_click event u do the following
<br />
Call checkButton()<br />
<br />
private sub checkButton()<br />
if (bFlag) Then<br />
txtState.Text = "Clicked"<br />
Else<br />
txtState.Text = "Unclicked"<br />
End If<br />
bFlag = Not bFlag<br />
End Sub<br />

u can set the Text property for the textbox as "Unclicked" for teh first time teh page opens

Hope this would help



Best Regards
3ala2 Smile | :)

QuestionWindows XP Media Center Edition Pin
Xiangyang Liu 刘向阳25-Nov-06 21:25
Xiangyang Liu 刘向阳25-Nov-06 21:25 
QuestionConnection pool and open & close ...??? Pin
devboycpp25-Nov-06 20:53
devboycpp25-Nov-06 20:53 
AnswerRe: Connection pool and open &amp;amp; close ...??? [modified] Pin
Dominic Pettifer26-Nov-06 5:15
Dominic Pettifer26-Nov-06 5:15 
GeneralRe: Connection pool and open &amp;amp; close ...??? Pin
devboycpp26-Nov-06 7:21
devboycpp26-Nov-06 7:21 
GeneralRe: Connection pool and open &amp;amp; close ...??? Pin
Dominic Pettifer26-Nov-06 7:39
Dominic Pettifer26-Nov-06 7:39 
GeneralRe: Connection pool and open &amp;amp; close ...??? Pin
devboycpp26-Nov-06 7:46
devboycpp26-Nov-06 7:46 
GeneralRe: Connection pool and open &amp;amp; close ...??? Pin
Dominic Pettifer26-Nov-06 17:15
Dominic Pettifer26-Nov-06 17:15 
GeneralRe: Connection pool and open &amp;amp; close ...??? Pin
Dominic Pettifer27-Nov-06 9:41
Dominic Pettifer27-Nov-06 9:41 
QuestionDelete Records in a Table Automatically Every Day Night 24:00 Pin
JVVS25-Nov-06 19:35
JVVS25-Nov-06 19:35 
AnswerRe: Delete Records in a Table Automatically Every Day Night 24:00 Pin
just3ala225-Nov-06 21:34
just3ala225-Nov-06 21:34 
GeneralRe: Delete Records in a Table Automatically Every Day Night 24:00 Pin
payback25-Nov-06 23:42
payback25-Nov-06 23:42 
QuestionWeb Controls and Web Services Pin
white.thief25-Nov-06 17:06
white.thief25-Nov-06 17:06 
AnswerRe: Web Controls and Web Services Pin
payback26-Nov-06 0:16
payback26-Nov-06 0:16 
GeneralRe: Web Controls and Web Services Pin
white.thief26-Nov-06 8:56
white.thief26-Nov-06 8:56 
Questionasp.net email sender Pin
ADY00725-Nov-06 13:24
ADY00725-Nov-06 13:24 
AnswerRe: asp.net email sender Pin
Dominic Pettifer26-Nov-06 5:34
Dominic Pettifer26-Nov-06 5:34 
GeneralRe: asp.net email sender Pin
ADY00726-Nov-06 7:20
ADY00726-Nov-06 7:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.