Change some bits in rss.aspx.cs without recompiling every update

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.
9/17/2010 4:59:31 AM
Gravatar
Total Posts 251

Change some bits in rss.aspx.cs without recompiling every update

I need to add a <language>it-it</language> in my rss xml

Right now i did a some sort of proxy in asp.net that will download&parse the rss, add that tag and return the corrected xml file, like this

[mojoportal]>>[my proxy]>>[client reader]

 

if i rename /blog/rss.aspx and change the content to refer to another codebehind file and another namespace, will it work eventually? I tried and i got a crash.

I am not skilled enough to build mojoportal from source, so I cannot replace mojoportal.web.dll with my fixed one ; i was wondering if i can mix some "other" code in this way

9/25/2010 9:40:53 AM
Gravatar
Total Posts 18439

Re: Change some bits in rss.aspx.cs without recompiling every update

It is possible to create a .aspx page that uses inline code instead of a code behind file (you'll have to search for some tutorials), then you can edit it and changes take place immediately and no dll is needed for the page. So you could copy/modify the logic from the code behind used in the blog rss page into a custom .aspx page an then use the custom page for the feed url and modify it to meet your needs.

Best,

Joe

9/25/2010 3:43:34 PM
Gravatar
Total Posts 251

Re: Change some bits in rss.aspx.cs without recompiling every update

Found it!

http://www.mojoportal.com/usinginlinecode.aspx

thanks for the hint

last year i already used an inline code page for doing the forum users chart, but i forgot about that sad

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