Jump to content
Xtreme .Net Talk

vdpramesh

Members
  • Posts

    3
  • Joined

  • Last visited

Personal Information

  • Occupation
    Software Engr
  • Visual Studio .NET Version
    Visual Studio .NET Professional
  • .NET Preferred Language
    ASP.Net

vdpramesh's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, I have solved this issue. Here is the soln: copy the script in aspx page. <script language="JavaScript"> function setEnterKey(btnName) { if (event.keyCode == 13) { event.cancelBubble = true; event.returnValue = false; document.getElementById('btnsubmit1').click(); } } </script> add the following handler in page load (vb file) txtAccessCode.Attributes.Add("onkeypress", "setEnterKey('btnsubmit1');") This works fine... Regards Ramesh
  2. Hi All: I am using my aspx application which is there in root of ILSS in windows 2000 server. I have specified session time out=20 in my web config. by default in My IIS also it is specified timeout as 20 mins. I am facing the problem is, my page never got session time out. Could you tell me what could be problem ?. How to resolve it? Thanks in Advance Ramesh.
  3. Hi, I have one textbox and 2 aspx button on my form. My requirement is , When i enter some value and press enter on the textbox, my page should be submitted without manually clicking on 2nd button. The problem i am facing is, When i press the enter key, it is automatically fires the first click button click event. It should focus on 2nd button only.Even thought i specified tabindex correctly. Can you solve this problem.. Thanks Ramesh
×
×
  • Create New...