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

  1. #1

    Default RE: Manual postback

    Hello James,

    The __doPostBack function is generated by ASP.NET as a helper function to
    submit the form. It allows you to specify the target and argument of the
    event which are passed in hidden-fields and then submits the form. It is
    used by the provided controls (ie. LinkButton) and may be used by your
    custom server controls also, to initiate a postback.

    For details, please refer to MSDN topic:
    "Generating Client-Side Script for Postback"
    [url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcongeneratingclient-s[/url]
    idejavascriptforpostback.asp?frame=true

    Hope it helps.

    Best regards,
    yhhuang
    VS.NET, Visual C++
    Microsoft

    This posting is provided "AS IS" with no warranties, and confers no rights.
    Got .Net? [url]http://www.gotdotnet.com[/url]
    --------------------
    !From: [email]dragonzfang@hotmail.com[/email] (James)
    !Newsgroups: microsoft.public.dotnet.framework.aspnet
    !Subject: Manual postback
    !Date: 30 Jun 2003 15:55:43 -0700
    !Organization: [url]http://groups.google.com/[/url]
    !Lines: 12
    !Message-ID: <63468c52.0306301455.644665d6@posting.google.com >
    !NNTP-Posting-Host: 192.44.136.113
    !Content-Type: text/plain; charset=ISO-8859-1
    !Content-Transfer-Encoding: 8bit
    !X-Trace: posting.google.com 1057013743 18834 127.0.0.1 (30 Jun 2003
    22:55:43 GMT)
    !X-Complaints-To: [email]groups-abuse@google.com[/email]
    !NNTP-Posting-Date: 30 Jun 2003 22:55:43 GMT
    !Path:
    cpmsftngxa09.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.sul.t-online.de!t-onlin
    e.de!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!sn-xit-03!sn-xit-06!sn-
    xit-09!supernews.com!postnews1.google.com!not-for-mail
    !Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.framework.aspnet:31239
    !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
    !
    !Hello:
    !
    !I have seen several postings on this, but forgive me - I am having
    !difficulty understanding them.
    !
    !I am trying to figure out how to manually cause a postback to happen
    !without a user having to click another button. I've seen a postings on
    !something called a __DoPostBack, but I don't know how to implement
    !this. Can anyone help me here?
    !
    !
    !James
    !

    Yan-Hong Huang[MSFT] Guest

  2. Similar Questions and Discussions

    1. PHP Manual
      For the newbies, such as I am, I have a PHP manual and a lot of examples in a ZIP file on my FTP Server. Be free and download it: ...
    2. manual download
      I can't find PHP manual suitable for downloading on php.net. On http://www.php.net/docs.php there's a link to http://www.php.net/download-docs.php,...
    3. How do I get the manual?
      I bought a Sony Vaio running Win XP. Photoshop Elements 1.0 came preinstalled. One of the help screens mentions, "Adobe Photoshop Elements User...
    4. manual/eng
      Hi all, I tried to download the manual of php wget http://www.php.net/manual/en/ I got a lot of files but not linked to read off line the...
    5. F65 Manual
      In article <bejsee023c2@drn.newsguy.com>, Victor J Servin <Victor_member@newsguy.com> wrote: Sorry - the link was working when I posted it,...
  3. #2

    Default Re: Manual postback

    new link is

    [url]http://msdn.microsoft.com/en-us/library/aa720099(VS.71).aspx[/url]

    ----------------------------------------------------------------------------------------------

    Quote Originally Posted by Yan-Hong Huang[MSFT] View Post
    Hello James,

    The __doPostBack function is generated by ASP.NET as a helper function to
    submit the form. It allows you to specify the target and argument of the
    event which are passed in hidden-fields and then submits the form. It is
    used by the provided controls (ie. LinkButton) and may be used by your
    custom server controls also, to initiate a postback.

    For details, please refer to MSDN topic:
    "Generating Client-Side Script for Postback"
    [url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcongeneratingclient-s[/url]
    idejavascriptforpostback.asp?frame=true

    Hope it helps.

    Best regards,
    yhhuang
    VS.NET, Visual C++
    Microsoft

    This posting is provided "AS IS" with no warranties, and confers no rights.
    Got .Net? [url]http://www.gotdotnet.com[/url]
    --------------------
    !From: [email]dragonzfang@hotmail.com[/email] (James)
    !Newsgroups: microsoft.public.dotnet.framework.aspnet
    !Subject: Manual postback
    !Date: 30 Jun 2003 15:55:43 -0700
    !Organization: [url]http://groups.google.com/[/url]
    !Lines: 12
    !Message-ID: <63468c52.0306301455.644665d6@posting.google.com >
    !NNTP-Posting-Host: 192.44.136.113
    !Content-Type: text/plain; charset=ISO-8859-1
    !Content-Transfer-Encoding: 8bit
    !X-Trace: posting.google.com 1057013743 18834 127.0.0.1 (30 Jun 2003
    22:55:43 GMT)
    !X-Complaints-To: [email]groups-abuse@google.com[/email]
    !NNTP-Posting-Date: 30 Jun 2003 22:55:43 GMT
    !Path:
    cpmsftngxa09.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.sul.t-online.de!t-onlin
    e.de!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!sn-xit-03!sn-xit-06!sn-
    xit-09!supernews.com!postnews1.google.com!not-for-mail
    !Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.framework.aspnet:31239
    !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
    !
    !Hello:
    !
    !I have seen several postings on this, but forgive me - I am having
    !difficulty understanding them.
    !
    !I am trying to figure out how to manually cause a postback to happen
    !without a user having to click another button. I've seen a postings on
    !something called a __DoPostBack, but I don't know how to implement
    !this. Can anyone help me here?
    !
    !
    !James
    !
    alperaydyn 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