vote up 0 vote down star

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..

flag

10% accept rate
@Deviant, please explain why you have reverted my edit. – Cerebrus May 4 at 10:19

2 Answers

vote up 0 vote down

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.

link|flag
vote up 0 vote down

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!)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.