Question:
How to set Default Station for FortisWeb?
Answer:
If you want to set whether the View or Edit stations are default for the user when they log on to FortisWeb, do the following,
1. Browse out to the location %C%:\PWSITES\DefSite\Template\Default\ and open the file Login.fht.
2. Do Ctrl + F and search on the term "Edit" or "View".
3. The first hit will take you to where you need to make the changes. You should see a line of code which looks like,
<INPUT TYPE="radio" NAME="STATION" VALUE="Edit" checked>Edit <INPUT TYPE="radio" NAME="STATION" VALUE="View">View</font></td>
Currently this is set so that the Edit station is the default. To make View the default make the following step by step changes.
<INPUT TYPE="radio" NAME="STATION" VALUE="Edit" checked>Edit <INPUT TYPE="radio" NAME="STATION" VALUE="View">View</font></td>
-You will see a value that has "Edit" followed by checked. Delete checked so that it looks like,
<INPUT TYPE="radio" NAME="STATION" VALUE="Edit">Edit <INPUT TYPE="radio" NAME="STATION" VALUE="View">View</font></td>
Then add checked right after the View value so that it looks like,
<INPUT TYPE="radio" NAME="STATION" VALUE="Edit">Edit <INPUT TYPE="radio" NAME="STATION"
VALUE="View" checked>View</font></td>
Do an IISReset then the change should be made so the View station is default or vice versa.