I need to postback to an other page.

  • Thread starter Thread starter jensen bredal
  • Start date Start date
J

jensen bredal

This is an essential feature which is not supported by the current version
of asp.net .

Does anyone know of any workaround trick to do it anyway?


Many thanks in advance
JB
 
I have desabled session in my app so thie solution suggested might ot apply.

Thanks
JB
 
What choices do you have when the new page is opened using

window.open()?

The solution described above do not seem to work in this case.
 
1. Why do you think that disabling session
would impede posting data to another page ?

2. Why do you think a non-native method to ASP.NET,
like window.open, should be responsive to ASP.NET ?

Also, please leave enough text quoted from the previous
reply, so that readers know what you're referring to, OK ?

If you reply without quoting relevant material,
you make it real hard to follow the thread.



Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 
re:

You may want to read that article again.

The only limitation is using Session data within
"Application_BeginRequest", because the Session
object isn't available in, or during, that event.

re:
I'm just looking for a way to posting data to a page opened using window.open.

See if this article's sample code helps you :

http://www.dotnetjohn.com/articles.aspx?articleid=88




Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 
Why not to use
<form action="another.aspx" ...

Also, form.action is accessible with script on client
 
Why not to use
Have you tried to do that ? What was the result ?

I'm controlling the form.action by the client script, it works.
IMHO <form action="" should work also
 
Back
Top