Click here to Skip to main content
16,011,538 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: New to ASP Pin
Sarvesvara (BVKS) Dasa1-Oct-02 22:53
Sarvesvara (BVKS) Dasa1-Oct-02 22:53 
GeneralRe: New to ASP Pin
Paul Watson1-Oct-02 23:00
sitebuilderPaul Watson1-Oct-02 23:00 
GeneralRe: New to ASP Pin
Sarvesvara (BVKS) Dasa2-Oct-02 0:55
Sarvesvara (BVKS) Dasa2-Oct-02 0:55 
GeneralRe: New to ASP Pin
Paul Watson2-Oct-02 1:09
sitebuilderPaul Watson2-Oct-02 1:09 
GeneralRe: New to ASP Pin
Sarvesvara (BVKS) Dasa2-Oct-02 1:17
Sarvesvara (BVKS) Dasa2-Oct-02 1:17 
GeneralTrapping Time out error Pin
Hitu1-Oct-02 1:50
Hitu1-Oct-02 1:50 
GeneralOnClick Pin
jerry0davis30-Sep-02 5:45
jerry0davis30-Sep-02 5:45 
GeneralRe: onclick Pin
Richard Deeming30-Sep-02 6:12
mveRichard Deeming30-Sep-02 6:12 
If fn1 is called from the onclick handler of a parent element of the button, you need to set event.cancelBubble = true from within fn2:

<html>
<head>
<script language="javascript">
<!--
function fn1() {
    writeMsg('fn1()');
}

function fn2() {
    writeMsg('fn2()');
    event.cancelBubble = true;
}

function writeMsg(Text) {
    txt.insertAdjacentText('beforeEnd', Text + '\n');
}
//-->
</script>
</head>
<body>

<div onclick="fn1()">
    <button onclick="fn2()">Test</button>
</div>

<textarea id="txt" rows="10" cols="50"></textarea>

</body>
</html>

GeneralRe: onclick Pin
jerry0davis30-Sep-02 22:03
jerry0davis30-Sep-02 22:03 
QuestionWrite XML to the file on the server? Pin
Rickard Andersson2030-Sep-02 2:19
Rickard Andersson2030-Sep-02 2:19 
AnswerRe: Write XML to the file on the server? Pin
Paul Watson1-Oct-02 0:07
sitebuilderPaul Watson1-Oct-02 0:07 
GeneralRe: Write XML to the file on the server? Pin
Rickard Andersson201-Oct-02 2:01
Rickard Andersson201-Oct-02 2:01 
GeneralRe: Write XML to the file on the server? Pin
Paul Watson1-Oct-02 4:54
sitebuilderPaul Watson1-Oct-02 4:54 
GeneralRe: Write XML to the file on the server? Pin
Rickard Andersson201-Oct-02 7:12
Rickard Andersson201-Oct-02 7:12 
GeneralDesign-Time Functionality Server Control Pin
AnhTu29-Sep-02 19:54
AnhTu29-Sep-02 19:54 
GeneralRe: Design-Time Functionality Server Control Pin
hunterlsq29-Sep-02 20:41
hunterlsq29-Sep-02 20:41 
GeneralTab Controls in ASP documents Pin
Hitu29-Sep-02 19:06
Hitu29-Sep-02 19:06 
GeneralRe: Tab Controls in ASP documents Pin
alex.barylski29-Sep-02 21:32
alex.barylski29-Sep-02 21:32 
GeneralRe: Tab Controls in ASP documents Pin
Richard Deeming30-Sep-02 0:55
mveRichard Deeming30-Sep-02 0:55 
Generalnews article viewer Pin
Gunnar29-Sep-02 14:55
Gunnar29-Sep-02 14:55 
GeneralUnknown error!!! Pin
Zek3vil28-Sep-02 9:04
Zek3vil28-Sep-02 9:04 
GeneralRe: Unknown error!!! Pin
Paul Ingles28-Sep-02 12:55
Paul Ingles28-Sep-02 12:55 
GeneralRe: Unknown error!!! Pin
Zek3vil28-Sep-02 19:46
Zek3vil28-Sep-02 19:46 
GeneralRe: Unknown error!!! Pin
Martin Haesemeyer28-Sep-02 22:32
Martin Haesemeyer28-Sep-02 22:32 
GeneralRe: Unknown error!!! Pin
leppie29-Sep-02 3:23
leppie29-Sep-02 3:23 

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.