I have just posted a few minutes ago as I am having
similar issues. I want to pass info to a .php page. I have
used the server.transfer in my Eventhandler, but it seems
to only pass or post to .aspx pages not to php?? This
response.redirect method you use here, would it work for
passing values from my server controls ie..text boxes and
dropdown lists to php??
>-----Original Message-----
>The easiest way is to not use Post but to use a
querystring to pass the values:
>
> Private Sub Button1_Click(ByVal sender As
System.Object, ByVal e As
>System.EventArgs) Handles Button1.Click
> Response.Redirect("otherpage.asp?
value1=Hello&value2=There")
> End Sub
>
>If you really need to use Post, you might want to look at
the Webclient class:
>
>
http://msdn.microsoft.com/library/default.asp?
url=/library/en-
us/cpref/html/frlrfsystemnetwebclientclassuploaddatatopic.a
sp
>
>As you've seen, you can't use the Action property on
the .aspx page because
>
ASP.NET ignores it and just posts back to itself.
>
>Ken
>
>
>"John McD" <
judet...@hotmail.com> wrote in message
>news:052e01c2a5a5$2ca36d90$d6f82ecf@TK2MSFTNGXA13...
>.
>