8/16/2025 1:29:25 AM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss the use of the SalesLogix Web Platform, Client and Customer Portals, and the Application Architect (For version 7.2 and higher only). View the code of conduct for posting guidelines.
|
|
|
|
Welcome page
Posted: 10 Nov 08 3:39 PM
|
How to make the Welcome page as the default page for all the users? Right now default.aspx is loading by default. Any idea? |
|
|
|
Re: Welcome page
Posted: 10 Nov 08 4:18 PM
|
This is a Per User Option. Users can change their Default by going into the Options, on the General/Search tab and setting the "Show on Startup" option.
Never the less, you can set the value for New (or all users) by changing the values on the USEROPTIONS table:
UPDATE USEROPTIONS SET OPTIONVALUE = 'Welcome.aspx' WHERE NAME = 'SHOWONSTARTUP' AND CATEGORY = 'General' |
|
|
|
Re: Welcome page
Posted: 10 Nov 08 4:29 PM
|
My options page is having some issues like it throws error "Unable to read beyond the stream" when I click that link. Any ideas? |
|
|
|
Re: Welcome page
Posted: 10 Nov 08 4:52 PM
|
As Raul said, that is a per user setting. However, you can change that if you want so you force all users to a certain place on login. In the Support Files, open SmartParts\Options\OptionRedirector.ascx.cs. In this file you'll see code in the Page_PreRender that reads the users setting and then redirects to that area. You could replace that code to redirect for all users to welcome.aspx if you wanted to control that. Make sense?
BTW, not sure why you're getting that error going to your options. Maybe start a new thread for that (and see what is in the event logs). |
|
|
|
Re: Welcome page
Posted: 11 Nov 08 8:52 AM
|
Thanks Ryan, I solved this problem i.e., options page error by doing change in SystemInfo table for the field Data (Blob data). |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|