Click here to Skip to main content
16,019,577 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionASP.net Reset Button Pin
wEb GuRu...31-Oct-06 2:27
wEb GuRu...31-Oct-06 2:27 
AnswerRe: ASP.net Reset Button Pin
ednrgc31-Oct-06 3:50
ednrgc31-Oct-06 3:50 
GeneralProblem not yet solved Pin
wEb GuRu...31-Oct-06 5:48
wEb GuRu...31-Oct-06 5:48 
GeneralRe: Problem not yet solved Pin
ednrgc31-Oct-06 5:57
ednrgc31-Oct-06 5:57 
GeneralRe: Problem not yet solved Pin
wEb GuRu...31-Oct-06 6:07
wEb GuRu...31-Oct-06 6:07 
GeneralRe: Problem not yet solved Pin
ednrgc31-Oct-06 6:34
ednrgc31-Oct-06 6:34 
GeneralRe: Problem not yet solved Pin
wEb GuRu...31-Oct-06 6:59
wEb GuRu...31-Oct-06 6:59 
GeneralRe: Problem not yet solved Pin
ednrgc31-Oct-06 7:32
ednrgc31-Oct-06 7:32 
You can try something like the following. If it doesn't work completely, you can look at the page source, and locate the validators and find what tag they are being shown in, then add them to this script.

Hope this helps:


<!-- Hide Me
function rezForm(){
forma = window.document.forms[0];
if(forma){
for(b=0; b<forma.length; b++){
var myObj = forma[b];
if(myObj.type == "text" || myObj.type == "textarea" || myObj.type == "file" || myObj.type == "password"){
myObj.value = "";
}
else if (myObj.type.toString().charAt(0) == "s" && myObj.selectedIndex != 0){
myObj.selectedIndex = 0;
}
else if (myObj.type == "checkbox" || myObj.type == "radio" ){
myObj.checked = false;
}
}
for(d=0; d<forma.length; c++){
var daObj = forma[d];
if(daObj.type == "text" || daObj.type == "textarea" || daObj.type == "file"){
daObj.focus();
break;
}
else if (daObj.type.toString().charAt(0) == "s"){
daObj.focus();
break;
}
}
}
}
QuestionFCK Editor Pin
srinandan..31-Oct-06 1:23
srinandan..31-Oct-06 1:23 
QuestionRe: FCK Editor Pin
just3ala231-Oct-06 1:37
just3ala231-Oct-06 1:37 
AnswerRe: FCK Editor Pin
Tamimi - Code31-Oct-06 1:44
Tamimi - Code31-Oct-06 1:44 
GeneralRe: FCK Editor Pin
ednrgc31-Oct-06 3:16
ednrgc31-Oct-06 3:16 
GeneralRe: FCK Editor Pin
Tamimi - Code31-Oct-06 3:21
Tamimi - Code31-Oct-06 3:21 
GeneralRe: FCK Editor Pin
ednrgc31-Oct-06 3:27
ednrgc31-Oct-06 3:27 
GeneralRe: FCK Editor Pin
Tamimi - Code31-Oct-06 3:33
Tamimi - Code31-Oct-06 3:33 
GeneralRe: FCK Editor Pin
ednrgc31-Oct-06 3:38
ednrgc31-Oct-06 3:38 
GeneralRe: FCK Editor Pin
Tamimi - Code31-Oct-06 3:41
Tamimi - Code31-Oct-06 3:41 
GeneralRe: FCK Editor Pin
Mircea Grelus31-Oct-06 9:15
Mircea Grelus31-Oct-06 9:15 
GeneralRe: FCK Editor Pin
ednrgc1-Nov-06 2:27
ednrgc1-Nov-06 2:27 
GeneralRe: FCK Editor Pin
Mircea Grelus1-Nov-06 2:30
Mircea Grelus1-Nov-06 2:30 
AnswerRe: FCK Editor Pin
Mircea Grelus31-Oct-06 9:04
Mircea Grelus31-Oct-06 9:04 
AnswerRe: FCK Editor Pin
ednrgc1-Nov-06 4:05
ednrgc1-Nov-06 4:05 
Questiontextflow in panel Pin
yogita charhate31-Oct-06 0:45
yogita charhate31-Oct-06 0:45 
AnswerRe: textflow in panel Pin
Dayekh31-Oct-06 1:09
Dayekh31-Oct-06 1:09 
GeneralRe: textflow in panel Pin
P A N K A J31-Oct-06 22:48
P A N K A J31-Oct-06 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.