How to force PostBack

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default How to force PostBack

    my screen is composed of 2 frames.
    the left frame has a treeView control, and the right frame
    display info about the selected node from the left frame.
    In some cases , I need to fire the PostBack event of the
    left frame, from the right frame .
    How can I do it ??
    thanks for any help
    Tony Guest

  2. Similar Questions and Discussions

    1. Using the Force
      Consider this a random and unspecified gripe.. I'm starting to come to the conclusion for a second time (I already came to this conclusion once,...
    2. can I force an event and how
      I want to force an event like the following display = new Object(); display.cellPress = function(evt){
    3. force connections
      I am issuing the setof commands from my client ( udb 7.2 fixpack6) 1.db2 attach to webdem07 user db2admin using db2admin Instance Attachment...
    4. Newbie ?: Force a periodic postback??
      Hopefully this will be an easy question, newbie here. Is there a simple way to force a periodic postback to a page? I want to simulate a picture...
    5. Force HTTPS
      Is there a way to use HTTPS only on certain pages? I have two pages that I want to use my SSL Cert, but the rest of the files I do not... they are...
  3. #2

    Default RE: How to force PostBack

    Hi Tony,

    In the Right frame, you can access the compnents in left frame with some
    client script, for example:

    WINDOW.PARENT.FRAMES(1).DOCUMENT.FORMS(0)

    To fire the PostBack event of the left frame, you may call the Form
    component's Submit method.

    Hope this help,

    Luke
    Microsoft Online Support

    Get Secure! [url]www.microsoft.com/security[/url]
    (This posting is provided "AS IS", with no warranties, and confers no
    rights.)

    MSFT Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139