Click here to Skip to main content
15,892,298 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to deploy Pin
Abhishek Sur26-Jul-09 21:58
professionalAbhishek Sur26-Jul-09 21:58 
QuestionHow to convert bytes to file??? Pin
nkmkrishna26-Jul-09 21:03
nkmkrishna26-Jul-09 21:03 
AnswerRe: How to convert bytes to file??? Pin
Aman Bhullar26-Jul-09 21:24
Aman Bhullar26-Jul-09 21:24 
GeneralRe: How to convert bytes to file??? Pin
nkmkrishna26-Jul-09 23:18
nkmkrishna26-Jul-09 23:18 
QuestionHow to Invoke keypress event in web Application Pin
vikas shukla26-Jul-09 20:46
vikas shukla26-Jul-09 20:46 
AnswerRe: How to Invoke keypress event in web Application Pin
ais0726-Jul-09 20:57
ais0726-Jul-09 20:57 
AnswerRe: How to Invoke keypress event in web Application Pin
vikas shukla26-Jul-09 21:03
vikas shukla26-Jul-09 21:03 
GeneralRe: How to Invoke keypress event in web Application Pin
ais0726-Jul-09 21:23
ais0726-Jul-09 21:23 
write this code in page load

txt.Attributes.Add("onkeypress", "javascript:return DecimalLength(Event)");

and in page source:-

function DecimalLength(e)
{
var KeyChar = (e.which) ? e.which : e.keyCode;

if(KeyChar > 57 && KeyChar < 48)
{
if(window.event)
e.returnValue = false;
else
e.preventDefault();
}
}
//Check keycode for numbers.

Hope this will help you...........

Life Is Beautiful

GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 21:47
protectorChristian Graus26-Jul-09 21:47 
GeneralRe: How to Invoke keypress event in web Application Pin
Abhishek Sur26-Jul-09 22:01
professionalAbhishek Sur26-Jul-09 22:01 
GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 22:11
protectorChristian Graus26-Jul-09 22:11 
GeneralRe: How to Invoke keypress event in web Application Pin
ais0726-Jul-09 22:49
ais0726-Jul-09 22:49 
GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 23:05
protectorChristian Graus26-Jul-09 23:05 
GeneralRe: How to Invoke keypress event in web Application Pin
vikas shukla26-Jul-09 22:29
vikas shukla26-Jul-09 22:29 
GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 22:32
protectorChristian Graus26-Jul-09 22:32 
AnswerRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 21:46
protectorChristian Graus26-Jul-09 21:46 
AnswerRe: How to Invoke keypress event in web Application Pin
Abhishek Sur26-Jul-09 22:02
professionalAbhishek Sur26-Jul-09 22:02 
GeneralRe: How to Invoke keypress event in web Application Pin
Christian Graus26-Jul-09 22:11
protectorChristian Graus26-Jul-09 22:11 
GeneralRe: How to Invoke keypress event in web Application Pin
Abhishek Sur26-Jul-09 22:39
professionalAbhishek Sur26-Jul-09 22:39 
QuestionWebsite error on instance of "IConfiguration" (may be due to StructureMap software) Pin
Goalie3526-Jul-09 20:33
Goalie3526-Jul-09 20:33 
AnswerRe: Website error on instance of "IConfiguration" (may be due to StructureMap software) Pin
Abhishek Sur26-Jul-09 22:06
professionalAbhishek Sur26-Jul-09 22:06 
GeneralRe: Website error on instance of "IConfiguration" (may be due to StructureMap software) Pin
Goalie3527-Jul-09 3:36
Goalie3527-Jul-09 3:36 
QuestionUsing MS Index Services in ASP.Net for research contents in files. Pin
alisolution26-Jul-09 20:17
alisolution26-Jul-09 20:17 
AnswerRe: Using MS Index Services in ASP.Net for research contents in files. Pin
Abhishek Sur26-Jul-09 22:09
professionalAbhishek Sur26-Jul-09 22:09 
GeneralRe: Using Index Services in ASP.Net for research contents in files. Pin
alisolution26-Jul-09 22:42
alisolution26-Jul-09 22:42 

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.