about update button logic

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.
3/23/2011 7:18:49 AM
Gravatar
Total Posts 1

about update button logic

hello All,

i'm new to mojoportal. I have downloaded the mojo portal. I have added a few fields in userprofile.aspx page. since the downloaded version of mojoportal doesn't contain the .cs files, where i need to change the coding part for update button in the userprofile.aspx page?

since i have added my own fields in the page i need to even change the coding part for update button and in the database tables and stored procedure. could anyone please help me out, where i need to do the changes for update button?

3/23/2011 7:49:21 AM
Gravatar
Total Posts 18439

Re: about update button logic

you should not modify mojoPortal code, otherwise you will not be able to upgrade.

If you need to do custom development you should work from the source code, the .zip files are meant for production deployment and have no C# source code, it is all compiled into dll files in the /bin folder. To work in Visual Studio you should get the source code (but not modify it, only use it for learning and example code). See also Understanding The Difference Between Deployment Files and Source Code, and Avoid Forking The Code.

You can add custom fields by configuration, if you need to run additional logic after user registration you can implement a UserRegisteredEventHandler.

If that does not give you the control you need then you could implement a custom registration page in your own project and use a post build event to copy it up to replace the mojoPortal Register.aspx, but then it is up to you to implement all the registration logic.

Hope it helps,

Joe

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