Re: Querystrings .net and flash
From: Samuel R. Neff (blinex_at_newsgroup.nospam)
Date: 03/17/05
- Next message: CometJoe: "re:Delete environment Variables"
- Previous message: Nicholas Paldino [.NET/C# MVP]: "Re: Problem with Process.Start()"
- In reply to: Josema: "Querystrings .net and flash"
- Next in thread: Josema: "Re: Querystrings .net and flash"
- Reply: Josema: "Re: Querystrings .net and flash"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 17 Mar 2005 10:40:46 -0500
You probably have to double encode it so what actually gets to html is
<param name="movie"
value="test.swf?clickTag=http://localhost/test.aspx?id=1&amp;user=2">
Or if that doesn't work, put the call in a javascript function
function clickTag() {
location.href="http://localhost/test.aspx?id=1&user=2";
}
and in Flash just call this JS function.
HTH,
Sam
On Thu, 17 Mar 2005 07:09:02 -0800, Josema <Jestrade@ocu.org> wrote:
>Hi,
>
>I have a variable of type string that have an url, for instance:
>
>variable=http://localhost/test.aspx?id=1&user=2
>
>I have a flash movie, and i would like that when a user click in the flash
>goes to the page i talked in the previous paragraph
>
>This is the tag of the flash movie....
><param name="movie" value="testez.swf?clickTAG=<%Response.Write(variable)%>">
>
>My problem its that when i click in the movie i go to:
>
>http://localhost/test.aspx?id=1
>
>but the url is http://localhost/test.aspx?id=1&user=2
>
>I dont know how could i put in the flash tag the & to make it works...
>
>What its the way to do this?
B-Line is now hiring one Washington D.C. area VB.NET
developer for WinForms + WebServices position.
Seaking mid to senior level developer. For
information or to apply e-mail resume to
sam_blinex_com.
- Next message: CometJoe: "re:Delete environment Variables"
- Previous message: Nicholas Paldino [.NET/C# MVP]: "Re: Problem with Process.Start()"
- In reply to: Josema: "Querystrings .net and flash"
- Next in thread: Josema: "Re: Querystrings .net and flash"
- Reply: Josema: "Re: Querystrings .net and flash"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|