tags:

views:

30

answers:

2

hi guys.......

i am currently doing a project which is to be linked with another project.ie,when i am clicking on some button in my current project's page i should get a page from the other project..Can u suggest a way to do the same..

A: 

You can always use Response.Redirect() to redirect the user to any internet available location.

If both your projects are configured as websites (i.e., they are accessible through virtual directories), then you can use this method to perform the redirection. Without more information, it is difficult to further troubleshoot any problems you may be facing with this simple procedure.

Note that you will not be able to share state information between the two applications (atleast not in a straightforward manner!)

Cerebrus
A: 

From the info you give in your question, I suppose you want to navigate from a 'module' in one project to a 'module' in another project, a page, or a control on a page... A way to do this is to make the url to the modules configurable. So you can navigate to the modules like this

Response.Redirect(ConfigurablePropertyName);

Or on the client like this:

<a href='<%= this.ConfigurablePropertyName %>' >Click me</a>

Hope this helps.