Ajax Control Toolkit not available - any hints?

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
2/22/2012 11:18:51 AM
Gravatar
Total Posts 137
When enough isn't

Re: Ajax Control Toolkit not available - any hints?

Hi

So that was the trick here. Never rewrite to another friendly url (which also are the Mojoportal pages). I think I'm on the right track now.

Thanks so much for all your answers and all your patience. It makes a lot of difference here. We look forward to soon launc this new site along with the other mojoportal based sites we already have in place.

Thanks, thanks, thanks,

Lars

2/24/2012 9:08:30 AM
Gravatar
Total Posts 137
When enough isn't

Re: Ajax Control Toolkit not available - any hints?

Hi

Just a follow up comment:

I finally got url-rewrite working for dynamic pages. This is my approach:

1. Ensure in your user.config to add this line in order to get all your pages indexed in google

< addkey="AutomaticallyAddCanonicalUrlToCmsPages"value="false" />

2. Add the pages in MojoPortal, that you want to become pages with dynamic content. It could be in the format /mystuff.aspx

3. Develop your custom ascx modules for each page that generates dynamic stuff with e.g. query parameters like id=zzz to differentiate each of the dynamic pages

4. Start making it work without friendly urls.

5. Then add code to project that generates rows with friendly urls in the mp_FriendlyUrl table. Here you should make the real url have this format: ~/Default.aspx?pageid=xx&mid=yy&id=zzz. The pageid here equals to that of the /mystuff.aspx page. mid is the moduleid of the core module that generates your dynamic stuff.

Then you're done Laughing .. and can create thousands of pages without adding them manually. Of course you need to be able to do some minimum coding.

Just if anyone could benefit from what I experienced.

Best regards
Lars

You must sign in to post in the forums. This thread is closed to new posts.