fire button event programmatically

C

Carlo Marchesoni

From an aspx page (A.aspx) I open another one (B.aspx -
for table lookup). When the user selects an entry in
B.aspx I would like to force a button's event in A.aspx
to be fired. I guess the only way is using javascript -
does anybody have a sample for this ?
Thanks
 
C

Carlo Marchesoni

Lewis,
It looks interesting but I thing something went lost
during copy/paste, your code stops right when it starts
to become interesting.
Thanks
-----Original Message-----
Thanks, Steve for the suggestions.

Carlo, here is a sample for your reference.

WebForm1.aspx:
There is a href and a Button1[server control] on it.

<a
href="javascript:test=window.open ('WebForm2.aspx','test','width=300,height=1
88');test.focus()">TEST</a>

Button1'event:

private void Button1_Click(object sender, System.EventArgs e)
{
Response.Write ("Button1_Clicked~!");
}

WebForm2.aspx:

Drag a Literal control and a Button1 from the Toolbox to the page.

private void Button1_Click(object sender, System.EventArgs e)
{
string strjscript = "<script language='javascript'>alert ('fire');";
strjscript += "window.opener.Form1.Button1.click ();";
//Form1 is the default form name of WebForm1.aspx
strjscript += "</script" + ">";
Literal1.Text = strjscript;
}

Please let me know if it meets your need. Thanks.

Hope this helps

Lewis

This posting is provided "AS IS" with no warranties, and confers no rights.


--------------------
| Content-Class: urn:content-classes:message
| From: "Carlo Marchesoni" <[email protected]>
| Sender: "Carlo Marchesoni" <[email protected]>
| Subject: fire button event programmatically
| Date: Tue, 29 Jul 2003 11:12:20 -0700
| Lines: 6
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcNV/PORCJM8aNh4SiaWEZ4VauLzTg==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163071
| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| From an aspx page (A.aspx) I open another one (B.aspx -
| for table lookup). When the user selects an entry in
| B.aspx I would like to force a button's event in A.aspx
| to be fired. I guess the only way is using javascript -
 
L

Lewis Wang [MSFT]

Hi Carlo,

Thank you for your reply.

The sample in my previous reply is just a snippet for demonstration.

I would also like to recommend one good article to you.
http://aspnet.4guysfromrolla.com/articles/030202-1.aspx

Please let me know if you need more information, thanks.

Best Regards

Lewis

--------------------
| Content-Class: urn:content-classes:message
| From: "Carlo Marchesoni" <[email protected]>
| Sender: "Carlo Marchesoni" <[email protected]>
| References: <[email protected]>
<[email protected]>
| Subject: RE: fire button event programmatically
| Date: Tue, 29 Jul 2003 23:39:35 -0700
| Lines: 88
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Thread-Index: AcNWZVcsxsK24TmkRNiO/8+BKduVCw==
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163243
| NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Lewis,
| It looks interesting but I thing something went lost
| during copy/paste, your code stops right when it starts
| to become interesting.
| Thanks
| >-----Original Message-----
| >Thanks, Steve for the suggestions.
| >
| >Carlo, here is a sample for your reference.
| >
| >WebForm1.aspx:
| >There is a href and a Button1[server control] on it.
| >
| ><a
| >href="javascript:test=window.open
| ('WebForm2.aspx','test','width=300,height=1
| >88');test.focus()">TEST</a>
| >
| >Button1'event:
| >
| >private void Button1_Click(object sender,
| System.EventArgs e)
| >{
| >Response.Write ("Button1_Clicked~!");
| >}
| >
| >WebForm2.aspx:
| >
| >Drag a Literal control and a Button1 from the Toolbox to
| the page.
| >
| >private void Button1_Click(object sender,
| System.EventArgs e)
| >{
| >string strjscript = "<script language='javascript'>alert
| ('fire');";
| > strjscript += "window.opener.Form1.Button1.click
| ();";
| >//Form1 is the default form name of WebForm1.aspx
| > strjscript += "</script" + ">";
| > Literal1.Text = strjscript;
| >}
| >
| >Please let me know if it meets your need. Thanks.
| >
| >Hope this helps
| >
| >Lewis
| >
| >This posting is provided "AS IS" with no warranties, and
| confers no rights.
| >
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "Carlo Marchesoni" <[email protected]>
| >| Sender: "Carlo Marchesoni" <[email protected]>
| >| Subject: fire button event programmatically
| >| Date: Tue, 29 Jul 2003 11:12:20 -0700
| >| Lines: 6
| >| Message-ID: <[email protected]>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| Thread-Index: AcNV/PORCJM8aNh4SiaWEZ4VauLzTg==
| >| X-MimeOLE: Produced By Microsoft MimeOLE
| V5.50.4910.0300
| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| Path: cpmsftngxa06.phx.gbl
| >| Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.framework.aspnet:163071
| >| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
| >| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| >|
| >| From an aspx page (A.aspx) I open another one (B.aspx -
| >| for table lookup). When the user selects an entry in
| >| B.aspx I would like to force a button's event in
| A.aspx
| >| to be fired. I guess the only way is using javascript -
|
| >| does anybody have a sample for this ?
| >| Thanks
| >|
| >
| >.
| >
|
 
C

Carlo Marchesoni

Did you attach a file ? I just see 'here is a sample...'
and then WebForm1.aspx and WebForm1.aspx.cs but no
attachement and no reference to something else.
I don't understand.
Thanks for your help
-----Original Message-----
Hi Carlo,

Yes, you are right. It's not hard to fire a code-behind event from
javascript.

Here is a sample to fire a code-behind event from javascript. It works fine
on my side, you can try it on your side.

//when we click Button2, Button1's event will be fired from javascript.

WebForm1.aspx
WebForm1.aspx.cs

Check this link for more information:
<http://groups.google.com/groups? q=fire+an+event+javascript+yhhuang+click&hl
=en&lr=&ie=UTF-8&oe=UTF-8&selm=xsSGTcBUDHA.2724%
40cpmsftngxa06.phx.gbl&rnum=
1>

Please review my first post and you will know how to fire an event form
another page, thanks.

Does this answer your question? Please let me know if you need more
information.

Best Regards,
Lewis

This posting is provided "AS IS" with no warranties, and confers no rights.



--------------------
| Content-Class: urn:content-classes:message
| From: "Carlo Marchesoni" <[email protected]>
| Sender: "Carlo Marchesoni" <[email protected]>
| References: <[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
| Subject: RE: fire button event programmatically
| Date: Wed, 30 Jul 2003 03:52:08 -0700
| Lines: 150
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Thread-Index: AcNWiJ8cNpvbvIvxSYCetBeJ8RXIdw==
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163297
| NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Sorry that I still don't get it - the article is
| interesting and I manage to do it all, but this just
| shows how to load values in the window.opener (or at
| least that's what I understood). But I still don't see
| how you can fire a code-behind event. At the end the
| question probably is: how to fire code-behind event from
| javascript.
| Thanks for your help
| >-----Original Message-----
| >Hi Carlo,
| >
| >Thank you for your reply.
| >
| >The sample in my previous reply is just a snippet for
| demonstration.
| >
| >I would also like to recommend one good article to you.
| >http://aspnet.4guysfromrolla.com/articles/030202- 1.aspx
| >
| >Please let me know if you need more information, thanks.
| >
| >Best Regards
| >
| >Lewis
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "Carlo Marchesoni" <[email protected]>
| >| Sender: "Carlo Marchesoni" <[email protected]>
| >| References: <019001c355fc$f39147d0 [email protected]>
| ><[email protected]>
| >| Subject: RE: fire button event programmatically
| >| Date: Tue, 29 Jul 2003 23:39:35 -0700
| >| Lines: 88
| >| Message-ID: <[email protected]>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| X-MimeOLE: Produced By Microsoft MimeOLE
| V5.50.4910.0300
| >| Thread-Index: AcNWZVcsxsK24TmkRNiO/8+BKduVCw==
| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| Path: cpmsftngxa06.phx.gbl
| >| Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.framework.aspnet:163243
| >| NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
| >| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| >|
| >| Lewis,
| >| It looks interesting but I thing something went lost
| >| during copy/paste, your code stops right when it
| starts
| >| to become interesting.
| >| Thanks
| >| >-----Original Message-----
| >| >Thanks, Steve for the suggestions.
| >| >
| >| >Carlo, here is a sample for your reference.
| >| >
| >| >WebForm1.aspx:
| >| >There is a href and a Button1[server control] on it.
| >| >
| >| ><a
| >| >href="javascript:test=window.open
| >| ('WebForm2.aspx','test','width=300,height=1
| >| >88');test.focus()">TEST</a>
| >| >
| >| >Button1'event:
| >| >
| >| >private void Button1_Click(object sender,
| >| System.EventArgs e)
| >| >{
| >| >Response.Write ("Button1_Clicked~!");
| >| >}
| >| >
| >| >WebForm2.aspx:
| >| >
| >| >Drag a Literal control and a Button1 from the Toolbox
| to
| >| the page.
| >| >
| >| >private void Button1_Click(object sender,
| >| System.EventArgs e)
| >| >{
| >| >string strjscript = "<script
| language='javascript'>alert
| >| ('fire');";
| >| > strjscript += "window.opener.Form1.Button1.click
| >| ();";
| >| >//Form1 is the default form name of WebForm1.aspx
| >| > strjscript += "</script" + ">";
| >| > Literal1.Text = strjscript;
| >| >}
| >| >
| >| >Please let me know if it meets your need. Thanks.
| >| >
| >| >Hope this helps
| >| >
| >| >Lewis
| >| >
| >| >This posting is provided "AS IS" with no warranties,
| and
| >| confers no rights.
| >| >
| >| >
| >| >--------------------
| >| >| Content-Class: urn:content-classes:message
| >| >| From: "Carlo Marchesoni" <[email protected]>
| >| >| Sender: "Carlo Marchesoni" <[email protected]>
| >| >| Subject: fire button event programmatically
| >| >| Date: Tue, 29 Jul 2003 11:12:20 -0700
| >| >| Lines: 6
| >| >| Message-ID: <019001c355fc$f39147d0 [email protected]>
| >| >| MIME-Version: 1.0
| >| >| Content-Type: text/plain;
| >| >| charset="iso-8859-1"
| >| >| Content-Transfer-Encoding: 7bit
| >| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| >| Thread-Index: AcNV/PORCJM8aNh4SiaWEZ4VauLzTg==
| >| >| X-MimeOLE: Produced By Microsoft MimeOLE
| >| V5.50.4910.0300
| >| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| >| Path: cpmsftngxa06.phx.gbl
| >| >| Xref: cpmsftngxa06.phx.gbl
| >| microsoft.public.dotnet.framework.aspnet:163071
| >| >| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
| >| >| X-Tomcat-NG:
| microsoft.public.dotnet.framework.aspnet
| >| >|
| >| >| From an aspx page (A.aspx) I open another one
| (B.aspx -
| >| >| for table lookup). When the user selects an entry
| in
| >| >| B.aspx I would like to force a button's event in
| >| A.aspx
| >| >| to be fired. I guess the only way is using
| javascript -
| >|
| >| >| does anybody have a sample for this ?
| >| >| Thanks
| >| >|
| >| >
| >| >.
| >| >
| >|
| >
| >.
| >
|
 
C

Carlo Marchesoni

That easy .... ! Thanks a million times, it works.
-----Original Message-----
Hi Carlo,

Yes, I attached two files in my prior post.

I will send them to your mailbox. If your mail address is invalid, please
send the correct one to me(remove "online") . Thanks.

Best Regards,
Lewis Wang

This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
| Content-Class: urn:content-classes:message
| From: "Carlo Marchesoni" <[email protected]>
| Sender: "Carlo Marchesoni" <[email protected]>
| References: <[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
| Subject: RE: fire button event programmatically
| Date: Wed, 30 Jul 2003 09:58:08 -0700
| Lines: 236
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Thread-Index: AcNWu8B2jmMFBxsnR9CnHhmhAAxTNg==
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163444
| NNTP-Posting-Host: TK2MSFTNGXA13 10.40.1.165
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Did you attach a file ? I just see 'here is a sample...'
| and then WebForm1.aspx and WebForm1.aspx.cs but no
| attachement and no reference to something else.
| I don't understand.
| Thanks for your help
| >-----Original Message-----
| >Hi Carlo,
| >
| >Yes, you are right. It's not hard to fire a code- behind
| event from
| >javascript.
| >
| >Here is a sample to fire a code-behind event from
| javascript. It works fine
| >on my side, you can try it on your side.
| >
| >//when we click Button2, Button1's event will be fired
| from javascript.
| >
| >WebForm1.aspx
| >WebForm1.aspx.cs
| >
| >Check this link for more information:
| ><http://groups.google.com/groups?
| q=fire+an+event+javascript+yhhuang+click&hl
| >=en&lr=&ie=UTF-8&oe=UTF-8&selm=xsSGTcBUDHA.2724%
| 40cpmsftngxa06.phx.gbl&rnum=
| >1>
| >
| >Please review my first post and you will know how to
| fire an event form
| >another page, thanks.
| >
| >Does this answer your question? Please let me know if
| you need more
| >information.
| >
| >Best Regards,
| >Lewis
| >
| >This posting is provided "AS IS" with no warranties, and
| confers no rights.
| >
| >
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "Carlo Marchesoni" <[email protected]>
| >| Sender: "Carlo Marchesoni" <[email protected]>
| >| References: <019001c355fc$f39147d0 [email protected]>
| ><[email protected]>
| ><[email protected]>
| ><[email protected]>
| >| Subject: RE: fire button event programmatically
| >| Date: Wed, 30 Jul 2003 03:52:08 -0700
| >| Lines: 150
| >| Message-ID: <[email protected]>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| X-MIMEOLE: Produced By Microsoft MimeOLE
| V5.50.4910.0300
| >| Thread-Index: AcNWiJ8cNpvbvIvxSYCetBeJ8RXIdw==
| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| Path: cpmsftngxa06.phx.gbl
| >| Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.framework.aspnet:163297
| >| NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
| >| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| >|
| >| Sorry that I still don't get it - the article is
| >| interesting and I manage to do it all, but this just
| >| shows how to load values in the window.opener (or at
| >| least that's what I understood). But I still don't see
| >| how you can fire a code-behind event. At the end the
| >| question probably is: how to fire code-behind event
| from
| >| javascript.
| >| Thanks for your help
| >| >-----Original Message-----
| >| >Hi Carlo,
| >| >
| >| >Thank you for your reply.
| >| >
| >| >The sample in my previous reply is just a snippet for
| >| demonstration.
| >| >
| >| >I would also like to recommend one good article to
| you.
| >| >http://aspnet.4guysfromrolla.com/articles/030202-
| 1.aspx
| >| >
| >| >Please let me know if you need more information,
| thanks.
| >| >
| >| >Best Regards
| >| >
| >| >Lewis
| >| >
| >| >--------------------
| >| >| Content-Class: urn:content-classes:message
| >| >| From: "Carlo Marchesoni" <[email protected]>
| >| >| Sender: "Carlo Marchesoni" <[email protected]>
| >| >| References: <019001c355fc$f39147d0
| [email protected]>
| >| ><[email protected]>
| >| >| Subject: RE: fire button event programmatically
| >| >| Date: Tue, 29 Jul 2003 23:39:35 -0700
| >| >| Lines: 88
| >| >| Message-ID: <070a01c35665$572f0210 [email protected]>
| >| >| MIME-Version: 1.0
| >| >| Content-Type: text/plain;
| >| >| charset="iso-8859-1"
| >| >| Content-Transfer-Encoding: 7bit
| >| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| >| X-MimeOLE: Produced By Microsoft MimeOLE
| >| V5.50.4910.0300
| >| >| Thread-Index: AcNWZVcsxsK24TmkRNiO/8+BKduVCw==
| >| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| >| Path: cpmsftngxa06.phx.gbl
| >| >| Xref: cpmsftngxa06.phx.gbl
| >| microsoft.public.dotnet.framework.aspnet:163243
| >| >| NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
| >| >| X-Tomcat-NG:
| microsoft.public.dotnet.framework.aspnet
| >| >|
| >| >| Lewis,
| >| >| It looks interesting but I thing something went
| lost
| >| >| during copy/paste, your code stops right when it
| >| starts
| >| >| to become interesting.
| >| >| Thanks
| >| >| >-----Original Message-----
| >| >| >Thanks, Steve for the suggestions.
| >| >| >
| >| >| >Carlo, here is a sample for your reference.
| >| >| >
| >| >| >WebForm1.aspx:
| >| >| >There is a href and a Button1[server control] on
| it.
| >| >| >
| >| >| ><a
| >| >| >href="javascript:test=window.open
| >| >| ('WebForm2.aspx','test','width=300,height=1
| >| >| >88');test.focus()">TEST</a>
| >| >| >
| >| >| >Button1'event:
| >| >| >
| >| >| >private void Button1_Click(object sender,
| >| >| System.EventArgs e)
| >| >| >{
| >| >| >Response.Write ("Button1_Clicked~!");
| >| >| >}
| >| >| >
| >| >| >WebForm2.aspx:
| >| >| >
| >| >| >Drag a Literal control and a Button1 from the
| Toolbox
| >| to
| >| >| the page.
| >| >| >
| >| >| >private void Button1_Click(object sender,
| >| >| System.EventArgs e)
| >| >| >{
| >| >| >string strjscript = "<script
| >| language='javascript'>alert
| >| >| ('fire');";
| >| >| > strjscript
+= "window.opener.Form1.Button1.click
 
L

Lewis Wang [MSFT]

Hi Carlo,

I am glad to hear that. :) Thanks very much for participating the community.

Best Regards,
Lewis

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.



--------------------
| Content-Class: urn:content-classes:message
| From: "Carlo Marchesoni" <[email protected]>
| Sender: "Carlo Marchesoni" <[email protected]>
| References: <[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
| Subject: RE: fire button event programmatically
| Date: Thu, 31 Jul 2003 05:21:35 -0700
| Lines: 303
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Thread-Index: AcNXXkirlgpFq1oTQpG6ry/rcX8KHg==
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163717
| NNTP-Posting-Host: TK2MSFTNGXA08 10.40.1.160
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| That easy .... ! Thanks a million times, it works.
| >-----Original Message-----
| >Hi Carlo,
| >
| >Yes, I attached two files in my prior post.
| >
| >I will send them to your mailbox. If your mail address
| is invalid, please
| >send the correct one to me(remove "online") . Thanks.
| >
| >Best Regards,
| >Lewis Wang
| >
| >This posting is provided "AS IS" with no warranties, and
| confers no rights.
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "Carlo Marchesoni" <[email protected]>
| >| Sender: "Carlo Marchesoni" <[email protected]>
| >| References: <[email protected]>
| ><[email protected]>
| ><[email protected]>
| ><[email protected]>
| ><[email protected]>
| ><[email protected]>
| >| Subject: RE: fire button event programmatically
| >| Date: Wed, 30 Jul 2003 09:58:08 -0700
| >| Lines: 236
| >| Message-ID: <[email protected]>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| X-MimeOLE: Produced By Microsoft MimeOLE
| V5.50.4910.0300
| >| Thread-Index: AcNWu8B2jmMFBxsnR9CnHhmhAAxTNg==
| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| Path: cpmsftngxa06.phx.gbl
| >| Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.framework.aspnet:163444
| >| NNTP-Posting-Host: TK2MSFTNGXA13 10.40.1.165
| >| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| >|
| >| Did you attach a file ? I just see 'here is a
| sample...'
| >| and then WebForm1.aspx and WebForm1.aspx.cs but no
| >| attachement and no reference to something else.
| >| I don't understand.
| >| Thanks for your help
| >| >-----Original Message-----
| >| >Hi Carlo,
| >| >
| >| >Yes, you are right. It's not hard to fire a code-
| behind
| >| event from
| >| >javascript.
| >| >
| >| >Here is a sample to fire a code-behind event from
| >| javascript. It works fine
| >| >on my side, you can try it on your side.
| >| >
| >| >//when we click Button2, Button1's event will be
| fired
| >| from javascript.
| >| >
| >| >WebForm1.aspx
| >| >WebForm1.aspx.cs
| >| >
| >| >Check this link for more information:
| >| ><http://groups.google.com/groups?
| >| q=fire+an+event+javascript+yhhuang+click&hl
| >| >=en&lr=&ie=UTF-8&oe=UTF-8&selm=xsSGTcBUDHA.2724%
| >| 40cpmsftngxa06.phx.gbl&rnum=
| >| >1>
| >| >
| >| >Please review my first post and you will know how to
| >| fire an event form
| >| >another page, thanks.
| >| >
| >| >Does this answer your question? Please let me know if
| >| you need more
| >| >information.
| >| >
| >| >Best Regards,
| >| >Lewis
| >| >
| >| >This posting is provided "AS IS" with no warranties,
| and
| >| confers no rights.
| >| >
| >| >
| >| >
| >| >--------------------
| >| >| Content-Class: urn:content-classes:message
| >| >| From: "Carlo Marchesoni" <[email protected]>
| >| >| Sender: "Carlo Marchesoni" <[email protected]>
| >| >| References: <019001c355fc$f39147d0
| [email protected]>
| >| ><[email protected]>
| >| ><[email protected]>
| >| ><[email protected]>
| >| >| Subject: RE: fire button event programmatically
| >| >| Date: Wed, 30 Jul 2003 03:52:08 -0700
| >| >| Lines: 150
| >| >| Message-ID: <[email protected]>
| >| >| MIME-Version: 1.0
| >| >| Content-Type: text/plain;
| >| >| charset="iso-8859-1"
| >| >| Content-Transfer-Encoding: 7bit
| >| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| >| X-MIMEOLE: Produced By Microsoft MimeOLE
| >| V5.50.4910.0300
| >| >| Thread-Index: AcNWiJ8cNpvbvIvxSYCetBeJ8RXIdw==
| >| >| Newsgroups: microsoft.public.dotnet.framework.aspnet
| >| >| Path: cpmsftngxa06.phx.gbl
| >| >| Xref: cpmsftngxa06.phx.gbl
| >| microsoft.public.dotnet.framework.aspnet:163297
| >| >| NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
| >| >| X-Tomcat-NG:
| microsoft.public.dotnet.framework.aspnet
| >| >|
| >| >| Sorry that I still don't get it - the article is
| >| >| interesting and I manage to do it all, but this
| just
| >| >| shows how to load values in the window.opener (or
| at
| >| >| least that's what I understood). But I still don't
| see
| >| >| how you can fire a code-behind event. At the end
| the
| >| >| question probably is: how to fire code-behind event
| >| from
| >| >| javascript.
| >| >| Thanks for your help
| >| >| >-----Original Message-----
| >| >| >Hi Carlo,
| >| >| >
| >| >| >Thank you for your reply.
| >| >| >
| >| >| >The sample in my previous reply is just a snippet
| for
| >| >| demonstration.
| >| >| >
| >| >| >I would also like to recommend one good article to
| >| you.
| >| >| >http://aspnet.4guysfromrolla.com/articles/030202-
| >| 1.aspx
| >| >| >
| >| >| >Please let me know if you need more information,
| >| thanks.
| >| >| >
| >| >| >Best Regards
| >| >| >
| >| >| >Lewis
| >| >| >
| >| >| >--------------------
| >| >| >| Content-Class: urn:content-classes:message
| >| >| >| From: "Carlo Marchesoni" <[email protected]>
| >| >| >| Sender: "Carlo Marchesoni" <[email protected]>
| >| >| >| References: <019001c355fc$f39147d0
| >| [email protected]>
| >| >| ><[email protected]>
| >| >| >| Subject: RE: fire button event programmatically
| >| >| >| Date: Tue, 29 Jul 2003 23:39:35 -0700
| >| >| >| Lines: 88
| >| >| >| Message-ID: <070a01c35665$572f0210
| [email protected]>
| >| >| >| MIME-Version: 1.0
| >| >| >| Content-Type: text/plain;
| >| >| >| charset="iso-8859-1"
| >| >| >| Content-Transfer-Encoding: 7bit
| >| >| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| >| >| X-MimeOLE: Produced By Microsoft MimeOLE
| >| >| V5.50.4910.0300
| >| >| >| Thread-Index: AcNWZVcsxsK24TmkRNiO/8+BKduVCw==
| >| >| >| Newsgroups:
| microsoft.public.dotnet.framework.aspnet
| >| >| >| Path: cpmsftngxa06.phx.gbl
| >| >| >| Xref: cpmsftngxa06.phx.gbl
| >| >| microsoft.public.dotnet.framework.aspnet:163243
| >| >| >| NNTP-Posting-Host: TK2MSFTNGXA14 10.40.1.166
| >| >| >| X-Tomcat-NG:
| >| microsoft.public.dotnet.framework.aspnet
| >| >| >|
| >| >| >| Lewis,
| >| >| >| It looks interesting but I thing something went
| >| lost
| >| >| >| during copy/paste, your code stops right when it
| >| >| starts
| >| >| >| to become interesting.
| >| >| >| Thanks
| >| >| >| >-----Original Message-----
| >| >| >| >Thanks, Steve for the suggestions.
| >| >| >| >
| >| >| >| >Carlo, here is a sample for your reference.
| >| >| >| >
| >| >| >| >WebForm1.aspx:
| >| >| >| >There is a href and a Button1[server control]
| on
| >| it.
| >| >| >| >
| >| >| >| ><a
| >| >| >| >href="javascript:test=window.open
| >| >| >| ('WebForm2.aspx','test','width=300,height=1
| >| >| >| >88');test.focus()">TEST</a>
| >| >| >| >
| >| >| >| >Button1'event:
| >| >| >| >
| >| >| >| >private void Button1_Click(object sender,
| >| >| >| System.EventArgs e)
| >| >| >| >{
| >| >| >| >Response.Write ("Button1_Clicked~!");
| >| >| >| >}
| >| >| >| >
| >| >| >| >WebForm2.aspx:
| >| >| >| >
| >| >| >| >Drag a Literal control and a Button1 from the
| >| Toolbox
| >| >| to
| >| >| >| the page.
| >| >| >| >
| >| >| >| >private void Button1_Click(object sender,
| >| >| >| System.EventArgs e)
| >| >| >| >{
| >| >| >| >string strjscript = "<script
| >| >| language='javascript'>alert
| >| >| >| ('fire');";
| >| >| >| > strjscript
| += "window.opener.Form1.Button1.click
| >| >| >| ();";
| >| >| >| >//Form1 is the default form name of
| WebForm1.aspx
| >| >| >| > strjscript += "</script" + ">";
| >| >| >| > Literal1.Text = strjscript;
| >| >| >| >}
| >| >| >| >
| >| >| >| >Please let me know if it meets your need.
| Thanks.
| >| >| >| >
| >| >| >| >Hope this helps
| >| >| >| >
| >| >| >| >Lewis
| >| >| >| >
| >| >| >| >This posting is provided "AS IS" with no
| >| warranties,
| >| >| and
| >| >| >| confers no rights.
| >| >| >| >
| >| >| >| >
| >| >| >| >--------------------
| >| >| >| >| Content-Class: urn:content-classes:message
| >| >| >| >| From: "Carlo Marchesoni" <[email protected]>
| >| >| >| >| Sender: "Carlo Marchesoni" <[email protected]>
| >| >| >| >| Subject: fire button event programmatically
| >| >| >| >| Date: Tue, 29 Jul 2003 11:12:20 -0700
| >| >| >| >| Lines: 6
| >| >| >| >| Message-ID: <019001c355fc$f39147d0
| >| [email protected]>
| >| >| >| >| MIME-Version: 1.0
| >| >| >| >| Content-Type: text/plain;
| >| >| >| >| charset="iso-8859-1"
| >| >| >| >| Content-Transfer-Encoding: 7bit
| >| >| >| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| >| >| >| Thread-Index: AcNV/PORCJM8aNh4SiaWEZ4VauLzTg==
| >| >| >| >| X-MimeOLE: Produced By Microsoft MimeOLE
| >| >| >| V5.50.4910.0300
| >| >| >| >| Newsgroups:
| >| microsoft.public.dotnet.framework.aspnet
| >| >| >| >| Path: cpmsftngxa06.phx.gbl
| >| >| >| >| Xref: cpmsftngxa06.phx.gbl
| >| >| >| microsoft.public.dotnet.framework.aspnet:163071
| >| >| >| >| NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
| >| >| >| >| X-Tomcat-NG:
| >| >| microsoft.public.dotnet.framework.aspnet
| >| >| >| >|
| >| >| >| >| From an aspx page (A.aspx) I open another one
| >| >| (B.aspx -
| >| >| >| >| for table lookup). When the user selects an
| >| entry
| >| >| in
| >| >| >| >| B.aspx I would like to force a button's event
| in
| >| >| >| A.aspx
| >| >| >| >| to be fired. I guess the only way is using
| >| >| javascript -
| >| >| >|
| >| >| >| >| does anybody have a sample for this ?
| >| >| >| >| Thanks
| >| >| >| >|
| >| >| >| >
| >| >| >| >.
| >| >| >| >
| >| >| >|
| >| >| >
| >| >| >.
| >| >| >
| >| >|
| >|
| >
| >.
| >
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top