Click here to Skip to main content
15,887,477 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to show the previous selected checked box in previous page in asp.net Pin
anubhaw.gupta29-Dec-12 7:04
anubhaw.gupta29-Dec-12 7:04 
QuestionMicrosoft Sync Framework for File (Client) and SQL Server Database (Server) synchronization Pin
Ajeet mittal27-Dec-12 17:27
Ajeet mittal27-Dec-12 17:27 
QuestionWhat is the web.config for the <smtp> ? Pin
alihusain_7727-Dec-12 9:38
alihusain_7727-Dec-12 9:38 
AnswerRe: What is the web.config for the <smtp> ? Pin
Richard MacCutchan27-Dec-12 22:02
mveRichard MacCutchan27-Dec-12 22:02 
AnswerRe: What is the web.config for the <smtp> ? Pin
CommDev28-Dec-12 21:38
CommDev28-Dec-12 21:38 
QuestionImage album category wise Pin
Member 776731127-Dec-12 7:30
Member 776731127-Dec-12 7:30 
AnswerRe: Image album category wise Pin
Sandeep Mewara28-Dec-12 21:24
mveSandeep Mewara28-Dec-12 21:24 
QuestionCapsLock detection Pin
tpkpradeep27-Dec-12 0:04
tpkpradeep27-Dec-12 0:04 
help me int his..,


<script type="text/javascript">
function isCapslock(e) {

e = (e) ? e : window.event;

var charCode = false;
if (e.which) {
charCode = e.which;
} else if (e.keyCode) {
charCode = e.keyCode;
}

var shifton = false;
if (e.shiftKey) {
shifton = e.shiftKey;
} else if (e.modifiers) {
shifton = !!(e.modifiers & 4);
}

if (charCode >= 97 && charCode <= 122 && shifton) {
return true;
}

if (charCode >= 65 && charCode <= 90 && !shifton) {
return true;
}
alert("CpasOn");
//return false;

}

</script>

<asp:TextBox ID="Password" runat="server" TextMode="Password" Width="150px" onkeypress="return isCapslock(this)"
></asp:TextBox>




if i press caps lock button nor not it gives me the message Capslock is on...,?
AnswerRe: CapsLock detection Pin
AnalogNerd27-Dec-12 3:56
AnalogNerd27-Dec-12 3:56 
AnswerRe: CapsLock detection Pin
CommDev28-Dec-12 21:50
CommDev28-Dec-12 21:50 
QuestionApplication Layering Pin
Omersayeed26-Dec-12 2:31
Omersayeed26-Dec-12 2:31 
QuestionSyntax error in store procedure Pin
anubhaw.gupta25-Dec-12 22:06
anubhaw.gupta25-Dec-12 22:06 
AnswerRe: Syntax error in store procedure Pin
Sravanthid2825-Dec-12 22:21
Sravanthid2825-Dec-12 22:21 
GeneralRe: Syntax error in store procedure Pin
anubhaw.gupta25-Dec-12 22:40
anubhaw.gupta25-Dec-12 22:40 
AnswerRe: Syntax error in store procedure Pin
anubhaw.gupta25-Dec-12 22:45
anubhaw.gupta25-Dec-12 22:45 
GeneralRe: Syntax error in store procedure Pin
sathish s26-Dec-12 1:39
sathish s26-Dec-12 1:39 
GeneralRe: Syntax error in store procedure Pin
Zafar Sultan26-Dec-12 3:31
Zafar Sultan26-Dec-12 3:31 
Questionid or guid.. which one? Pin
Jassim Rahma25-Dec-12 7:22
Jassim Rahma25-Dec-12 7:22 
AnswerRe: id or guid.. which one? Pin
Sandeep Mewara25-Dec-12 19:14
mveSandeep Mewara25-Dec-12 19:14 
AnswerRe: id or guid.. which one? Pin
CommDev25-Dec-12 19:25
CommDev25-Dec-12 19:25 
Questionwhy should I care about ExecuteScalar Pin
Jassim Rahma25-Dec-12 5:57
Jassim Rahma25-Dec-12 5:57 
AnswerRe: why should I care about ExecuteScalar Pin
Sandeep Mewara25-Dec-12 19:30
mveSandeep Mewara25-Dec-12 19:30 
AnswerRe: why should I care about ExecuteScalar Pin
CommDev25-Dec-12 19:33
CommDev25-Dec-12 19:33 
AnswerRe: why should I care about ExecuteScalar Pin
CommDev25-Dec-12 19:40
CommDev25-Dec-12 19:40 
GeneralRe: why should I care about ExecuteScalar Pin
Jassim Rahma28-Dec-12 9:40
Jassim Rahma28-Dec-12 9:40 

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.