Click here to Skip to main content
15,918,742 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerIGNORE REPORT Pin
Not Active20-Feb-10 3:34
mentorNot Active20-Feb-10 3:34 
Questionajax AutoCompleteExtender is not working Pin
MallikarjunaGupta20-Feb-10 1:09
MallikarjunaGupta20-Feb-10 1:09 
AnswerRe: ajax AutoCompleteExtender is not working Pin
s.mn20-Feb-10 1:39
s.mn20-Feb-10 1:39 
AnswerRe: ajax AutoCompleteExtender is not working Pin
Not Active20-Feb-10 3:23
mentorNot Active20-Feb-10 3:23 
Questionhow to get automatic no in alpha numeric no from database Pin
developerit20-Feb-10 0:21
developerit20-Feb-10 0:21 
AnswerRe: how to get automatic no in alpha numeric no from database Pin
CoderOnline20-Feb-10 1:02
CoderOnline20-Feb-10 1:02 
AnswerRe: how to get automatic no in alpha numeric no from database Pin
Bajrang Singh20-Feb-10 1:13
Bajrang Singh20-Feb-10 1:13 
QuestionWeb Application Pin
vipinsethumadhavan19-Feb-10 21:58
vipinsethumadhavan19-Feb-10 21:58 
AnswerRe: Web Application Pin
Chetan Patel19-Feb-10 23:06
Chetan Patel19-Feb-10 23:06 
AnswerRe: Web Application Pin
Abhijit Jana19-Feb-10 23:09
professionalAbhijit Jana19-Feb-10 23:09 
AnswerRe: Web Application Pin
sashidhar19-Feb-10 23:50
sashidhar19-Feb-10 23:50 
QuestionProblem loading stylesheet Pin
anushh19-Feb-10 21:14
anushh19-Feb-10 21:14 
AnswerRe: Problem loading stylesheet Pin
R. Giskard Reventlov20-Feb-10 0:03
R. Giskard Reventlov20-Feb-10 0:03 
GeneralRe: Problem loading stylesheet Pin
anushh24-Feb-10 14:55
anushh24-Feb-10 14:55 
GeneralClient Side Custom Validation in Asp.Net (AJAX) Pin
saroj sigdel19-Feb-10 19:42
saroj sigdel19-Feb-10 19:42 
QuestionJavascript does not work with firefox browser? Pin
mdrizwan_119-Feb-10 19:35
mdrizwan_119-Feb-10 19:35 
Hello,
I have following javascript below it works fine with IE explorer when i try to insert special characters in textbox it does not except it. But when i run this in firefox it does not have any effect it excepts special characters in texbox.Can anybody solve this problem it will be a great help? Thanks in Advance.
<script language="JavaScript" type="text/javascript">
  function NumberOnly()
  {
      var keyASCII = window.event.keyCode;
      var keyValue = String.fromCharCode(keyASCII);
      if (!(keyASCII >= '97' && keyASCII <= '122')         && !(keyASCII >= '65' && keyASCII <=          '91') && !(keyValue >= '0' && keyValue       <= '9'))
      {
          window.event.keyCode = 0;
      }
  }

</script>


<asp:TextBox ID="txtbName" onkeypress = "NumberOnly()" runat="server" BorderStyle="Solid"
           BorderWidth="1px" BorderColor="#CCCCCC" BackColor="White" Width="150px"
           CausesValidation="True" Height="20px" MaxLength="50"></asp:TextBox>

AnswerRe: Javascript does not work with firefox browser? [modified] Pin
ais0720-Feb-10 0:26
ais0720-Feb-10 0:26 
AnswerRe: Javascript does not work with firefox browser? Pin
Palash Biswas21-Feb-10 19:28
Palash Biswas21-Feb-10 19:28 
QuestionComputer NAme Pin
ishwarya mahadevan19-Feb-10 17:52
ishwarya mahadevan19-Feb-10 17:52 
AnswerRe: Computer NAme Pin
sashidhar19-Feb-10 18:29
sashidhar19-Feb-10 18:29 
GeneralRe: Computer NAme Pin
ishwarya mahadevan19-Feb-10 18:31
ishwarya mahadevan19-Feb-10 18:31 
GeneralRe: Computer NAme Pin
sashidhar19-Feb-10 18:50
sashidhar19-Feb-10 18:50 
AnswerRe: Computer NAme Pin
Abhijit Jana19-Feb-10 20:14
professionalAbhijit Jana19-Feb-10 20:14 
AnswerRe: Computer NAme Pin
Brij20-Feb-10 0:28
mentorBrij20-Feb-10 0:28 
QuestionWeb Services Pin
ishwarya mahadevan19-Feb-10 17:48
ishwarya mahadevan19-Feb-10 17: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.