Click here to Skip to main content
15,886,061 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Authentication Methods in ASP.NET? Pin
ViridianNZ27-Aug-09 18:20
ViridianNZ27-Aug-09 18:20 
AnswerRe: Authentication Methods in ASP.NET? Pin
Arun Jacob27-Aug-09 18:38
Arun Jacob27-Aug-09 18:38 
Questionneed help! Pin
Seraph_summer27-Aug-09 10:10
Seraph_summer27-Aug-09 10:10 
AnswerRe: need help! Pin
Abhishek Sur27-Aug-09 22:23
professionalAbhishek Sur27-Aug-09 22:23 
QuestionHow would I handle an Error with this piece of code. Pin
solutionsville27-Aug-09 10:08
solutionsville27-Aug-09 10:08 
AnswerRe: How would I handle an Error with this piece of code. Pin
Robert_Pan27-Aug-09 14:40
Robert_Pan27-Aug-09 14:40 
Questionproblem rendering placeholder with user controls added to it Pin
dd31415927-Aug-09 9:56
dd31415927-Aug-09 9:56 
QuestionJavascript with multiple user controls Pin
dptalt27-Aug-09 9:30
dptalt27-Aug-09 9:30 
The following code is used for a user control. What it does is if the user presses the arrow up key when the focus is on the input box it will increment the value by one. When I put one of these user controls on a web form it works good. But if I put a second user control on the same web page and when pressing the arrow up key when the focus is on it it increments the value on the first user control. From the code I can see why this happens but how can I have it increment the value on the input box that has the focus?

<%@ Control Language="C#"%>



function TimeEntryHoursOnClick()
{
if (event.keyCode == 38)
document.getElementById("Text1").value = parseFloat(document.getElementById("Text1").value) + 1
}



AnswerRe: Javascript with multiple user controls Pin
DoctorMick28-Aug-09 0:17
DoctorMick28-Aug-09 0:17 
GeneralRe: Javascript with multiple user controls Pin
dptalt28-Aug-09 3:49
dptalt28-Aug-09 3:49 
QuestionEvent Validation Pin
VengefulSakhmet27-Aug-09 9:21
VengefulSakhmet27-Aug-09 9:21 
QuestionWhich button pressed Pin
ffowler27-Aug-09 9:09
ffowler27-Aug-09 9:09 
AnswerRe: Which button pressed Pin
Abhijit Jana27-Aug-09 9:15
professionalAbhijit Jana27-Aug-09 9:15 
GeneralRe: Which button pressed Pin
ffowler27-Aug-09 9:20
ffowler27-Aug-09 9:20 
GeneralRe: Which button pressed Pin
Abhijit Jana27-Aug-09 9:51
professionalAbhijit Jana27-Aug-09 9:51 
GeneralRe: Which button pressed Pin
ffowler27-Aug-09 10:02
ffowler27-Aug-09 10:02 
GeneralRe: Which button pressed Pin
Abhijit Jana27-Aug-09 10:14
professionalAbhijit Jana27-Aug-09 10:14 
QuestionNeed Suggestion Pin
amarnath n.n27-Aug-09 6:05
amarnath n.n27-Aug-09 6:05 
AnswerRe: Need Suggestion Pin
Jay Royall27-Aug-09 6:26
Jay Royall27-Aug-09 6:26 
GeneralRe: Need Suggestion Pin
amarnath n.n27-Aug-09 13:21
amarnath n.n27-Aug-09 13:21 
GeneralRe: Need Suggestion Pin
N a v a n e e t h27-Aug-09 19:52
N a v a n e e t h27-Aug-09 19:52 
QuestionRetaining focus after postback Pin
rcampbell1227-Aug-09 6:04
rcampbell1227-Aug-09 6:04 
AnswerRe: Retaining focus after postback Pin
Jeremy Likness27-Aug-09 6:17
professionalJeremy Likness27-Aug-09 6:17 
GeneralRe: Retaining focus after postback Pin
rcampbell1227-Aug-09 6:33
rcampbell1227-Aug-09 6:33 
GeneralClient side validation is the way to go - Example given Pin
David Mujica27-Aug-09 7:43
David Mujica27-Aug-09 7:43 

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.