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

ASP.NET

 
QuestionUsing Validator Control and Javascript function with a same button Pin
Alok Mohanty12-Aug-08 1:27
Alok Mohanty12-Aug-08 1:27 
AnswerRe: Using Validator Control and Javascript function with a same button Pin
Sandeep Akhare12-Aug-08 1:37
Sandeep Akhare12-Aug-08 1:37 
GeneralRe: Using Validator Control and Javascript function with a same button Pin
Alok Mohanty12-Aug-08 19:41
Alok Mohanty12-Aug-08 19:41 
GeneralRe: Using Validator Control and Javascript function with a same button Pin
Sandeep Akhare12-Aug-08 23:33
Sandeep Akhare12-Aug-08 23:33 
AnswerRe: Using Validator Control and Javascript function with a same button Pin
Manas Bhardwaj12-Aug-08 1:44
professionalManas Bhardwaj12-Aug-08 1:44 
GeneralRe: Using Validator Control and Javascript function with a same button Pin
Alok Mohanty12-Aug-08 19:46
Alok Mohanty12-Aug-08 19:46 
Questioncheck if required field validator fires Pin
eyeseetee12-Aug-08 1:06
eyeseetee12-Aug-08 1:06 
AnswerRe: check if required field validator fires Pin
Sandeep Akhare12-Aug-08 1:13
Sandeep Akhare12-Aug-08 1:13 
If there are many Validator in the Page then you can check them
using Page.Validators property

foreach (IValidator _val in Page.Validators)
{
if (!val.IsValid)
{
// Check which validator it is by type casting
}
}
Make Sure that you should check this logic only when Page.Validate has been called means after enabling Vlidators only like Next button click
it should not get called during the Auto postbacks in the Page

Thanks and Regards
Sandeep

If If you look at what you do not have in life, you don't have anything,
If you look at what you have in life, you have everything... "

Check My Blog

GeneralRe: check if required field validator fires Pin
eyeseetee12-Aug-08 1:21
eyeseetee12-Aug-08 1:21 
GeneralRe: check if required field validator fires Pin
Sandeep Akhare12-Aug-08 1:31
Sandeep Akhare12-Aug-08 1:31 
GeneralRe: check if required field validator fires Pin
eyeseetee12-Aug-08 2:21
eyeseetee12-Aug-08 2:21 
GeneralRe: check if required field validator fires Pin
Sandeep Akhare12-Aug-08 2:52
Sandeep Akhare12-Aug-08 2:52 
GeneralRe: check if required field validator fires Pin
eyeseetee12-Aug-08 3:07
eyeseetee12-Aug-08 3:07 
GeneralRe: check if required field validator fires Pin
Sandeep Akhare12-Aug-08 19:42
Sandeep Akhare12-Aug-08 19:42 
Questionhow to create a rich text editor using asp.net1.1 Pin
coolsatty12-Aug-08 0:52
coolsatty12-Aug-08 0:52 
AnswerRe: how to create a rich text editor using asp.net1.1 Pin
Christian Graus12-Aug-08 0:56
protectorChristian Graus12-Aug-08 0:56 
AnswerRe: how to create a rich text editor using asp.net1.1 Pin
Howard Richards12-Aug-08 1:34
Howard Richards12-Aug-08 1:34 
QuestionAsp.net 2.0 Gridview cell border problem Pin
EvilInside12-Aug-08 0:30
EvilInside12-Aug-08 0:30 
AnswerRe: Asp.net 2.0 Gridview cell border problem Pin
Sandeep Akhare12-Aug-08 0:50
Sandeep Akhare12-Aug-08 0:50 
QuestionProblem to call bubble event of custom control. Pin
Imran Khan Pathan12-Aug-08 0:21
Imran Khan Pathan12-Aug-08 0:21 
AnswerRe: Problem to call bubble event of custom control. Pin
Sandeep Akhare12-Aug-08 1:15
Sandeep Akhare12-Aug-08 1:15 
GeneralRe: Problem to call bubble event of custom control. Pin
Imran Khan Pathan12-Aug-08 1:54
Imran Khan Pathan12-Aug-08 1:54 
Questiondelay function with javascript Pin
Laxmikant Lad11-Aug-08 23:00
Laxmikant Lad11-Aug-08 23:00 
AnswerIgnore Repost Pin
Sandeep Akhare11-Aug-08 23:09
Sandeep Akhare11-Aug-08 23:09 
QuestionTree with Check boxs Pin
Saja Ali Nassar11-Aug-08 22:48
Saja Ali Nassar11-Aug-08 22:48 

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.