Click here to Skip to main content
15,897,371 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Which button pressed Pin
ffowler27-Aug-09 10:02
ffowler27-Aug-09 10:02 
GeneralRe: Which button pressed Pin
Abhijit Jana27-Aug-09 10:14
professionalAbhijit Jana27-Aug-09 10:14 
QuestionNeed Suggestion Pin
amarnath n.n27-Aug-09 6:05
amarnath n.n27-Aug-09 6:05 
AnswerRe: Need Suggestion Pin
Jay Royall27-Aug-09 6:26
Jay Royall27-Aug-09 6:26 
GeneralRe: Need Suggestion Pin
amarnath n.n27-Aug-09 13:21
amarnath n.n27-Aug-09 13:21 
GeneralRe: Need Suggestion Pin
N a v a n e e t h27-Aug-09 19:52
N a v a n e e t h27-Aug-09 19:52 
QuestionRetaining focus after postback Pin
rcampbell1227-Aug-09 6:04
rcampbell1227-Aug-09 6:04 
AnswerRe: Retaining focus after postback Pin
Jeremy Likness27-Aug-09 6:17
professionalJeremy Likness27-Aug-09 6:17 
Why are you validating on the server when the user tabs out? I'd keep the "light" validation on the client side with JavaScript and save the postbacks for submitting the form. Then you can set the focus to the field that has errors, or move them on.

That validation you are mentioning should definitely be clientside. Is the developer rolling their own code, or using something supplied by the framework like a RequiredFieldValidator that can be set to dynamic and will run on the clientside without a postback?

If there is some compelling reason why you would roundtrip every time a user leaves a field (which seems to make sense only for a small internal app without many concurrent users, otherwise it won't scale well) then I'd look at using a callback instead of a postback for the validation. They are not complicated to wire in and infinitely improve the user experience while cutting down on the size of network traffic (have you used Fiddler or something similar to see how much data, like ViewState, gets thrown around when you postback?)


GeneralRe: Retaining focus after postback Pin
rcampbell1227-Aug-09 6:33
rcampbell1227-Aug-09 6:33 
GeneralClient side validation is the way to go - Example given Pin
David Mujica27-Aug-09 7:43
David Mujica27-Aug-09 7:43 
Questionupload and download Pin
hasani200727-Aug-09 5:15
hasani200727-Aug-09 5:15 
AnswerRe: upload and download Pin
Abhishek Sur27-Aug-09 5:33
professionalAbhishek Sur27-Aug-09 5:33 
AnswerRe: upload and download Pin
Abhijit Jana27-Aug-09 9:20
professionalAbhijit Jana27-Aug-09 9:20 
GeneralRe: upload and download Pin
Robert_Pan27-Aug-09 14:26
Robert_Pan27-Aug-09 14:26 
QuestionProblem in DateTime conversion!! Please help Pin
skhan1727-Aug-09 4:56
skhan1727-Aug-09 4:56 
AnswerRe: Problem in DateTime conversion!! Please help Pin
DoctorMick27-Aug-09 5:01
DoctorMick27-Aug-09 5:01 
GeneralRe: Problem in DateTime conversion!! Please help Pin
skhan1727-Aug-09 5:17
skhan1727-Aug-09 5:17 
GeneralRe: Problem in DateTime conversion!! Please help Pin
Jeremy Likness27-Aug-09 6:18
professionalJeremy Likness27-Aug-09 6:18 
AnswerRe: Problem in DateTime conversion!! Please help Pin
Robert_Pan27-Aug-09 14:24
Robert_Pan27-Aug-09 14:24 
QuestionHTML Input Box Dynamically set default value Pin
dptalt27-Aug-09 3:43
dptalt27-Aug-09 3:43 
AnswerRe: HTML Input Box Dynamically set default value Pin
Coding C#27-Aug-09 4:02
Coding C#27-Aug-09 4:02 
GeneralRe: HTML Input Box Dynamically set default value Pin
dptalt27-Aug-09 4:44
dptalt27-Aug-09 4:44 
GeneralRe: HTML Input Box Dynamically set default value Pin
Coding C#27-Aug-09 21:07
Coding C#27-Aug-09 21:07 
AnswerRe: HTML Input Box Dynamically set default value Pin
Robert_Pan27-Aug-09 14:32
Robert_Pan27-Aug-09 14:32 
GeneralRe: HTML Input Box Dynamically set default value Pin
Robert_Pan27-Aug-09 14:33
Robert_Pan27-Aug-09 14:33 

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.