Click here to Skip to main content
15,900,907 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: change the item color of buttedlist problem Pin
Seraph_summer21-Aug-09 12:23
Seraph_summer21-Aug-09 12:23 
QuestionIs it possible to run a function when the red x is clicked? Pin
JohnQuar121-Aug-09 8:56
JohnQuar121-Aug-09 8:56 
AnswerRe: Is it possible to run a function when the red x is clicked? Pin
Abhishek Sur21-Aug-09 9:30
professionalAbhishek Sur21-Aug-09 9:30 
GeneralRe: Is it possible to run a function when the red x is clicked? Pin
JohnQuar121-Aug-09 10:25
JohnQuar121-Aug-09 10:25 
GeneralRe: Is it possible to run a function when the red x is clicked? Pin
Abhishek Sur21-Aug-09 10:34
professionalAbhishek Sur21-Aug-09 10:34 
QuestionFor Image Verification or CATCHA image in a regisstration page Pin
Nitinpro21-Aug-09 4:40
Nitinpro21-Aug-09 4:40 
AnswerRe: For Image Verification or CATCHA image in a regisstration page Pin
Jay Royall21-Aug-09 5:27
Jay Royall21-Aug-09 5:27 
QuestionCustom validator Pin
diacoboss21-Aug-09 4:26
diacoboss21-Aug-09 4:26 
Hi guys,
I have a small problem, hope u would help me !
I'm tryin to use a custom validator on a Textbox !
Look :

<asp:textbox id="TextBox2" runat="server" visible="True" validationgroup="Test_Custom">
<asp:customvalidator id="first_CV" runat="server" onservervalidate="first_CV_ServerValidate" controltovalidate="TextBox2" errormessage="Complete this field" validationgroup="Test_Custom">*

The code behind now

protected void first_CV_ServerValidate(object source, ServerValidateEventArgs args)
{
if (TextBox2.Text == "")
{
args.IsValid = false;
}
else
{
args.IsValid = true;
}
}

Basically, I hoped to see a message when the Textbox is empty!
But nothin happen when Click on my submit button

Please help me

AnswerRe: Custom validator Pin
Adam Maras21-Aug-09 8:40
Adam Maras21-Aug-09 8:40 
GeneralRe: Custom validator [modified] Pin
diacoboss24-Aug-09 4:16
diacoboss24-Aug-09 4:16 
Questionneed help with session values Pin
shankbond21-Aug-09 4:06
shankbond21-Aug-09 4:06 
QuestionConvert html to pdf in javascript or c# Pin
zeeShan anSari21-Aug-09 2:13
zeeShan anSari21-Aug-09 2:13 
AnswerRe: Convert html to pdf in javascript or c# Pin
annathor21-Aug-09 2:39
annathor21-Aug-09 2:39 
GeneralRe: Convert html to pdf in javascript or c# Pin
zeeShan anSari21-Aug-09 2:50
zeeShan anSari21-Aug-09 2:50 
QuestionHow to share session over multiple applications Pin
Kuricheti21-Aug-09 1:30
Kuricheti21-Aug-09 1:30 
AnswerRe: How to share session over multiple applications Pin
Vasudevan Deepak Kumar21-Aug-09 3:06
Vasudevan Deepak Kumar21-Aug-09 3:06 
QuestionException Grabbing in ASP.NET Pin
Vimalsoft(Pty) Ltd21-Aug-09 0:57
professionalVimalsoft(Pty) Ltd21-Aug-09 0:57 
AnswerRe: Exception Grabbing in ASP.NET Pin
Blikkies21-Aug-09 1:25
professionalBlikkies21-Aug-09 1:25 
QuestionHow To Validate The Textbox without Using Special charecters Pin
axman_podili@yahoo.co.in21-Aug-09 0:55
axman_podili@yahoo.co.in21-Aug-09 0:55 
AnswerRe: How To Validate The Textbox without Using Special charecters Pin
Vimalsoft(Pty) Ltd21-Aug-09 1:00
professionalVimalsoft(Pty) Ltd21-Aug-09 1:00 
GeneralRe: How To Validate The Textbox without Using Special charecters Pin
Adam Maras21-Aug-09 8:43
Adam Maras21-Aug-09 8:43 
AnswerRe: How To Validate The Textbox without Using Special charecters Pin
Anurag Gandhi21-Aug-09 2:59
professionalAnurag Gandhi21-Aug-09 2:59 
Questionunable to drag contentplace holder Pin
myinstincts21-Aug-09 0:44
myinstincts21-Aug-09 0:44 
QuestionHow to lock code execution? Pin
Chesnokov Yuriy21-Aug-09 0:23
professionalChesnokov Yuriy21-Aug-09 0:23 
AnswerRe: How to lock code execution? Pin
Ashfield21-Aug-09 1:26
Ashfield21-Aug-09 1:26 

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.