Click here to Skip to main content
15,898,222 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
newc17-May-09 4:22
newc17-May-09 4:22 
GeneralRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 4:25
professionalVimalsoft(Pty) Ltd7-May-09 4:25 
GeneralRe: Page Behaving Differently from IE6 and IE7 and 8 Pin
Vimalsoft(Pty) Ltd7-May-09 23:02
professionalVimalsoft(Pty) Ltd7-May-09 23:02 
Questioncredit card validation Pin
jinal_pdoshi7-May-09 0:01
jinal_pdoshi7-May-09 0:01 
AnswerRe: credit card validation Pin
Spunky Coder7-May-09 0:10
Spunky Coder7-May-09 0:10 
AnswerRe: credit card validation Pin
Vasudevan Deepak Kumar7-May-09 22:12
Vasudevan Deepak Kumar7-May-09 22:12 
Questionjava script for user can enter capital alplbets means capital A to Z only in text box. Pin
sanju056-May-09 23:58
sanju056-May-09 23:58 
AnswerRe: java script for user can enter capital alplbets means capital A to Z only in text box. Pin
Spunky Coder7-May-09 0:38
Spunky Coder7-May-09 0:38 
Do you want a validator?? If so use regex to match the textbox value as follows...

<script language="javascript" type="text/javascript">
function ToUpper(ctrl)
{
var t = ctrl.value;
var expr = /^[A-Z0-9]+$/;
if(expr.test(t))
alert('passed');
else
{
alert('failed');
return false;
}
}
</script>

<asp:TextBox ID="TextBox1" onkeyup="ToUpper(this)" runat="server"></asp:TextBox>

"Don't worry if it doesn't work right. If everything did, you'd be out of a job." (Mosher's Law of Software Engineering)

Questionproblem with apple safari Pin
nisha000006-May-09 21:15
nisha000006-May-09 21:15 
AnswerRe: problem with apple safari Pin
SeMartens6-May-09 22:52
SeMartens6-May-09 22:52 
Questionissues Pin
shenbagasiva6-May-09 21:05
shenbagasiva6-May-09 21:05 
AnswerRe: issues Pin
SeMartens7-May-09 0:07
SeMartens7-May-09 0:07 
AnswerRe: issues Pin
Vasudevan Deepak Kumar7-May-09 22:14
Vasudevan Deepak Kumar7-May-09 22:14 
QuestionMousedown event Pin
devvvy6-May-09 21:02
devvvy6-May-09 21:02 
QuestionFocus is going on address bar Pin
Jagz W6-May-09 20:44
professionalJagz W6-May-09 20:44 
AnswerRe: Focus is going on address bar Pin
mr_muskurahat6-May-09 21:04
mr_muskurahat6-May-09 21:04 
GeneralRe: Focus is going on address bar Pin
Jagz W7-May-09 0:23
professionalJagz W7-May-09 0:23 
QuestionASP.NET Exception ex.ToString to be available from browser? Pin
devvvy6-May-09 20:22
devvvy6-May-09 20:22 
AnswerRe: ASP.NET Exception ex.ToString to be available from browser? Pin
N a v a n e e t h6-May-09 20:42
N a v a n e e t h6-May-09 20:42 
GeneralRe: ASP.NET Exception ex.ToString to be available from browser? Pin
devvvy6-May-09 21:31
devvvy6-May-09 21:31 
Questionissues Pin
shenbagasiva6-May-09 19:56
shenbagasiva6-May-09 19:56 
AnswerRe: issues Pin
Spunky Coder6-May-09 20:05
Spunky Coder6-May-09 20:05 
AnswerRe: issues Pin
N a v a n e e t h6-May-09 20:35
N a v a n e e t h6-May-09 20:35 
AnswerRe: issues Pin
sumeshakshaya26-Jun-11 6:46
sumeshakshaya26-Jun-11 6:46 
QuestionRadGrid Pin
Rabiya266-May-09 19:01
Rabiya266-May-09 19:01 

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.