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.
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.
you should set a few break points in your code and step through it in the debugger to find out what is happening
My code works well in localhost and also on server, just inside mojoportal it doesnot work correctly.
then you need to step through it while it runs in mojoPortal
one thing you may need to do is set Page.EnableViewState = true;
Thank you Joe for your help, but I could not solve the problem,
I tried your last suggestion also but does not work.
I have mojoportal only on server not in localhost so i cant test it step by step
that is a strange way to develop a feature for mojoportal. I recommend download the mojoportal source code and develop first on your local machine so that you can step through the code. developing something outside of mojoPortal and then expecting it to work when you plug it into a production mojoportal site is just not a reasonable expectation.
Thank you very much for your advice Joe
Hi Joe,
Update panel works perfect, just the problem is in DropDownList selectedindexchanged,
it fires postback every time but changes value only first time, after second and third postback
it does not change dropdownlist value, I have this dropdownlist with update panel inside my
custom control which is places in mojo page.
How can I fix it?
Thanks
set breakpoints and step through your code to see what is happening, I cannot debug it for you