pass data from one page on one server to another page on differnt server
-
I'm trying to pass data from one page on one server to another page on differnt server. I get error on the page : "Access Denied" Firstly can value be passed from a page on one application on on server to another page on another application on a different server? I think it can be done...but when i try setting value to 1st application frame 1, parent.document.frames["frame1"].form1.txtValue.value = "1"; i get access denied error...what can be the cause? Can anyone tell me?
-
I'm trying to pass data from one page on one server to another page on differnt server. I get error on the page : "Access Denied" Firstly can value be passed from a page on one application on on server to another page on another application on a different server? I think it can be done...but when i try setting value to 1st application frame 1, parent.document.frames["frame1"].form1.txtValue.value = "1"; i get access denied error...what can be the cause? Can anyone tell me?
deep7 wrote:
Firstly can value be passed from a page on one application on on server to another page on another application on a different server?
Yes you can pass in query string variables. How you are passing the value now ?
-
deep7 wrote:
Firstly can value be passed from a page on one application on on server to another page on another application on a different server?
Yes you can pass in query string variables. How you are passing the value now ?
i'm using javascript code to pass object from one appl to another..on same server it works, but if on application is on other server, i get Access Denied error. parent.document.frames["frame1"].form1.txtValue.value = "1"; This is written in one javascript function in one application page on one server. parent.document.frames["frame1"] means another applicationpage on different server is given value "1". Can you tell me how i can achieve this using javascript? Thanks, Deepa
-
I'm trying to pass data from one page on one server to another page on differnt server. I get error on the page : "Access Denied" Firstly can value be passed from a page on one application on on server to another page on another application on a different server? I think it can be done...but when i try setting value to 1st application frame 1, parent.document.frames["frame1"].form1.txtValue.value = "1"; i get access denied error...what can be the cause? Can anyone tell me?
deep7 wrote:
i get access denied error...what can be the cause?
You can't write script that accesses other web pages that are open on your computer, on different servers. Security issues, for a start.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )