Click here to Skip to main content
15,895,557 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: problem in site Pin
brunoseixas14-Sep-10 8:05
brunoseixas14-Sep-10 8:05 
QuestionAdding assembly to assembly cache Pin
santoshkacode13-Sep-10 3:22
santoshkacode13-Sep-10 3:22 
AnswerMessage Removed Pin
13-Sep-10 3:48
Tej Aj13-Sep-10 3:48 
GeneralRe: Adding assembly to assembly cache Pin
Sandeep Mewara13-Sep-10 7:25
mveSandeep Mewara13-Sep-10 7:25 
AnswerRe: Adding assembly to assembly cache Pin
Sandeep Mewara13-Sep-10 7:26
mveSandeep Mewara13-Sep-10 7:26 
QuestionClient side Javascript VS Server side vaoidation control in asp.net Pin
JC.KaNNaN12-Sep-10 19:48
JC.KaNNaN12-Sep-10 19:48 
AnswerRe: Client side Javascript VS Server side vaoidation control in asp.net Pin
Brij12-Sep-10 21:43
mentorBrij12-Sep-10 21:43 
AnswerRe: Client side Javascript VS Server side vaoidation control in asp.net Pin
Abhijit Jana12-Sep-10 22:04
professionalAbhijit Jana12-Sep-10 22:04 
KaNNaN.JC wrote:
Hi Friends..
I have doubt in validations.
i want to use range validation in my page. so which one is best for checking range validation. either client side or server side validate controls.???

What is difference bw client side or server side validate controls??


If you are using any of the Client Side validation control, please make sure you are using Page.IsValidate at the server side. If some one disable the javascript of browse, client side validator will never works as this runs on Javascript. Page.IsValidate is ensure that each control validatation at server end. If use check

If(Page.IsValidate)
  {
 // Validation all suceess
  }
else
{
// Validation Fails
}


When you Check for Page.IsValidate, ASP.NET Call Validate() method for each and every control to ensure the validation pass, if one of them fails, it will return false.

Hope this give you clear idea.

Thanks !

GeneralRe: Client side Javascript VS Server side vaoidation control in asp.net Pin
JC.KaNNaN12-Sep-10 22:25
JC.KaNNaN12-Sep-10 22:25 
QuestionUngroup Excel Columns Pin
Mugdha_Aditya12-Sep-10 19:23
Mugdha_Aditya12-Sep-10 19:23 
AnswerRe: Ungroup Excel Columns Pin
Abhijit Jana12-Sep-10 22:05
professionalAbhijit Jana12-Sep-10 22:05 
GeneralRe: Ungroup Excel Columns Pin
Mugdha_Aditya12-Sep-10 22:56
Mugdha_Aditya12-Sep-10 22:56 
GeneralRe: Ungroup Excel Columns Repost Pin
Richard MacCutchan13-Sep-10 3:46
mveRichard MacCutchan13-Sep-10 3:46 
Questionusing System. ????????? Pin
future383912-Sep-10 14:45
future383912-Sep-10 14:45 
AnswerRe: using System. ????????? Pin
Luc Pattyn12-Sep-10 14:55
sitebuilderLuc Pattyn12-Sep-10 14:55 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 15:14
future383912-Sep-10 15:14 
GeneralRe: using System. ????????? Pin
Luc Pattyn12-Sep-10 16:16
sitebuilderLuc Pattyn12-Sep-10 16:16 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 16:28
future383912-Sep-10 16:28 
GeneralRe: using System. ????????? Pin
Luc Pattyn12-Sep-10 16:43
sitebuilderLuc Pattyn12-Sep-10 16:43 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 20:06
future383912-Sep-10 20:06 
GeneralRe: using System. ????????? Pin
virang_2112-Sep-10 20:40
virang_2112-Sep-10 20:40 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 20:42
future383912-Sep-10 20:42 
GeneralRe: using System. ????????? Pin
virang_2112-Sep-10 20:46
virang_2112-Sep-10 20:46 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 21:20
future383912-Sep-10 21:20 
GeneralRe: using System. ????????? Pin
future383912-Sep-10 22:05
future383912-Sep-10 22:05 

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.