Equivalent of Response.Redirect in Windows
-
Hi, Can any one please let me know the equivalent of Response.Redirect in Windows. Regards, Jagadeesh
-
Hi, Can any one please let me know the equivalent of Response.Redirect in Windows. Regards, Jagadeesh
What do you mean ? There is no equivelant in a windows app, you have to create forms and show them as you move through your windows app.
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 )
-
What do you mean ? There is no equivelant in a windows app, you have to create forms and show them as you move through your windows app.
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 )
I am new to Windows app. Just I want to show google web page on button click. Plz let me know how to do it. ~Jagadeesh
-
Hi, Can any one please let me know the equivalent of Response.Redirect in Windows. Regards, Jagadeesh
-
I am new to Windows app. Just I want to show google web page on button click. Plz let me know how to do it. ~Jagadeesh
OK, now that you've explained what you want, I can help. This is the wrong forum to ask this, but if you add a webBrowser control to your page, you can show google in that. Or if you use Process.Start and pass in a URL, it will launch the URL in your default browser.
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 )
-
OK, now that you've explained what you want, I can help. This is the wrong forum to ask this, but if you add a webBrowser control to your page, you can show google in that. Or if you use Process.Start and pass in a URL, it will launch the URL in your default browser.
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 )
Thank you very much for quick reply, I will try it. Regards, Jagadeesh
-
Thank you very much for quick reply, I will try it. Regards, Jagadeesh
welcome :-)
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 )