Click here to Skip to main content
15,890,512 members
Home / Discussions / Web Development
   

Web Development

 
QuestionDynamic creation of XML node Attributes and Elements in Javascript Pin
Member 33773912-Sep-08 2:06
Member 33773912-Sep-08 2:06 
AnswerRe: Dynamic creation of XML node Attributes and Elements in Javascript Pin
Manas Bhardwaj2-Sep-08 3:31
professionalManas Bhardwaj2-Sep-08 3:31 
AnswerRe: Dynamic creation of XML node Attributes and Elements in Javascript Pin
Perspx2-Sep-08 5:48
Perspx2-Sep-08 5:48 
QuestionOld site using Site Server .. what to use now? Pin
SimonRigby2-Sep-08 1:14
SimonRigby2-Sep-08 1:14 
Questionhow to host Website Pin
Ankit At Codeproject1-Sep-08 23:32
Ankit At Codeproject1-Sep-08 23:32 
AnswerRe: how to host Website Pin
Manas Bhardwaj2-Sep-08 2:03
professionalManas Bhardwaj2-Sep-08 2:03 
QuestionValidate the button if clicked or not? Pin
hifiger20041-Sep-08 22:36
hifiger20041-Sep-08 22:36 
AnswerRe: Validate the button if clicked or not? Pin
NeverHeardOfMe2-Sep-08 0:16
NeverHeardOfMe2-Sep-08 0:16 
What's with this <!'CDATA{....]]> nonsense? Get rid of that, for starters.

Have you any idea what you're doing? I strongly suggest you start from scratch with a good beginners book on ASP, if you must use it. Or try the w3schools site.

The page below, if saved as "hifinger.asp" will tell you what button you clicked:

<html>
<head>
<title></title>
</head>
<body>
<form name="f1" method="post" action="hifinger.asp">

<input type="submit" name="Button1" value="One" />
<br />
<input type="submit" name="Button2" value="Two" />
<br />

<%

If Request("Button1") = "One" Then Response.Write "You clicked Button 1"
If Request("Button2") = "Two" Then Response.Write "You clicked Button 2"

%>

</form>
</body>
</html>
GeneralRe: Validate the button if clicked or not? Pin
hifiger20042-Sep-08 0:37
hifiger20042-Sep-08 0:37 
GeneralRe: Validate the button if clicked or not? Pin
NeverHeardOfMe2-Sep-08 1:55
NeverHeardOfMe2-Sep-08 1:55 
AnswerRe: Validate the button if clicked or not? Pin
hifiger20042-Sep-08 2:21
hifiger20042-Sep-08 2:21 
QuestionSession variable, How does it work in classic ASP? Pin
hifiger20041-Sep-08 8:47
hifiger20041-Sep-08 8:47 
AnswerRe: Session variable, How does it work in classic ASP? Pin
NeverHeardOfMe1-Sep-08 9:59
NeverHeardOfMe1-Sep-08 9:59 
QuestionHow do I wrap text in a TD? Pin
Brady Kelly1-Sep-08 5:12
Brady Kelly1-Sep-08 5:12 
AnswerRe: How do I wrap text in a TD? Pin
Perspx1-Sep-08 5:16
Perspx1-Sep-08 5:16 
GeneralRe: How do I wrap text in a TD? Pin
Brady Kelly1-Sep-08 6:04
Brady Kelly1-Sep-08 6:04 
GeneralRe: How do I wrap text in a TD? Pin
dotnethunk3-Sep-08 2:53
dotnethunk3-Sep-08 2:53 
AnswerRe: How do I wrap text in a TD? Pin
Shog91-Sep-08 7:04
sitebuilderShog91-Sep-08 7:04 
GeneralRe: How do I wrap text in a TD? Pin
Brady Kelly1-Sep-08 7:14
Brady Kelly1-Sep-08 7:14 
QuestionAjax Cascading Dropdown Pin
K V Sekhar1-Sep-08 1:11
K V Sekhar1-Sep-08 1:11 
AnswerRe: Ajax Cascading Dropdown Pin
Shog91-Sep-08 7:00
sitebuilderShog91-Sep-08 7:00 
AnswerRe: Ajax Cascading Dropdown Pin
Gayani Devapriya1-Sep-08 18:06
Gayani Devapriya1-Sep-08 18:06 
QuestionAutomaticlly Change Text on dates Pin
Member 34482961-Sep-08 0:07
Member 34482961-Sep-08 0:07 
AnswerRe: Automaticlly Change Text on dates Pin
Ashfield1-Sep-08 1:31
Ashfield1-Sep-08 1:31 
GeneralRe: Automaticlly Change Text on dates Pin
Member 34482961-Sep-08 10:00
Member 34482961-Sep-08 10:00 

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.