Click here to Skip to main content
15,896,359 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionPartial postbacks don’t work how I expect Pin
Senseicads24-May-07 3:09
Senseicads24-May-07 3:09 
AnswerRe: Partial postbacks don’t work how I expect Pin
Not Active24-May-07 3:54
mentorNot Active24-May-07 3:54 
GeneralRe: Partial postbacks don’t work how I expect Pin
Senseicads24-May-07 3:56
Senseicads24-May-07 3:56 
QuestionOnly numbers in textbox Pin
Jats_4ru24-May-07 3:06
Jats_4ru24-May-07 3:06 
AnswerRe: Only numbers in textbox Pin
Tarakeshwar Reddy24-May-07 3:55
professionalTarakeshwar Reddy24-May-07 3:55 
AnswerRe: Only numbers in textbox Pin
Not Active24-May-07 3:59
mentorNot Active24-May-07 3:59 
AnswerRe: Only numbers in textbox Pin
eggsovereasy24-May-07 10:25
eggsovereasy24-May-07 10:25 
AnswerRe: Only numbers in textbox Pin
Blumen24-May-07 18:39
Blumen24-May-07 18:39 
You may use this JavaScript function and call it from the KeyPress event

function NumericOnly_onkeypress(p)
{

if(window.event.keyCode<48 || window.event.keyCode>57 )
{

window.event.keyCode=false;
return false;
}

}
Question[Message Deleted] Pin
Kurmala24-May-07 2:48
Kurmala24-May-07 2:48 
AnswerRe: very urgent Pin
Not Active24-May-07 2:56
mentorNot Active24-May-07 2:56 
GeneralRe: very urgent Pin
eggsovereasy24-May-07 10:28
eggsovereasy24-May-07 10:28 
AnswerHow many times do we have to tell you??? Pin
leckey24-May-07 4:04
leckey24-May-07 4:04 
AnswerRe: Pin
Vasudevan Deepak Kumar24-May-07 22:20
Vasudevan Deepak Kumar24-May-07 22:20 
Questionmy pdf is corrupting Pin
adilkazmi24-May-07 2:46
adilkazmi24-May-07 2:46 
QuestionAsp .net page not working in an iframe. Pin
dptalt24-May-07 2:37
dptalt24-May-07 2:37 
AnswerRe: Asp .net page not working in an iframe. Pin
Senseicads24-May-07 4:00
Senseicads24-May-07 4:00 
Questionadd the data and refresh the data re inserted Pin
purushotam24-May-07 2:20
purushotam24-May-07 2:20 
AnswerRe: add the data and refresh the data re inserted Pin
N a v a n e e t h24-May-07 18:20
N a v a n e e t h24-May-07 18:20 
AnswerRe: add the data and refresh the data re inserted Pin
Sherin Iranimose24-May-07 18:26
Sherin Iranimose24-May-07 18:26 
QuestionHow to display page without extension ? Pin
anujose24-May-07 2:11
anujose24-May-07 2:11 
AnswerRe: How to display page without extension ? Pin
kubben24-May-07 2:35
kubben24-May-07 2:35 
AnswerRe: How to display page without extension ? Pin
Not Active24-May-07 3:03
mentorNot Active24-May-07 3:03 
QuestionScrollBar Problem in multiline textbox Pin
Rajiya24-May-07 1:49
Rajiya24-May-07 1:49 
AnswerRe: ScrollBar Problem in multiline textbox Pin
gammet24-May-07 21:59
gammet24-May-07 21:59 
QuestionLocal Resources with an ascx Pin
gavthegenius24-May-07 1:27
gavthegenius24-May-07 1:27 

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.