Hi i need to no howe to change
the text in the login page
""Welcome to"" an Login text""
Where do i change this ????
Thomas Westman
2/13/2008 4:49 AM
Edit FileVista\languages\en.xml, you can change the first two strings for the login page.
You can also create your own language file in this folder. Note that, the language file to be loaded is identified by the default culture which you chose during configuration wizard.
For instance, if you chose Swedish (Sweden) sv-SE during configuration, the application will try to load sv-SE.xml or sv.xml.
Cem Alacayir
2/13/2008 5:35 AM
I tryed yust that and when i do
FileVista crach
<?xml version="1.0" encoding="utf-8"?>
<Language>
<Strings>
<String key="500">Backupnow Norden {0}</String>
<String key="501">Please enter your credentials:</String>
<String key="502">User name:</String>
<String key="503">Password:</String>
Thomas Westman
2/19/2008 8:31 AM
When you do a change in languages folder, please open and save web.config file to restart the application, otherwise the changes will not be reflected.
Cem Alacayir
2/22/2008 9:45 AM
Hello,
I've tried the above but it isn't working for me.
When I put a nl.xml file there with the above text the website still opens but the text changes to English.
When I put
</String>
</Language>
In the end the website crashes and tells me some strings aren't present.
Such as line 664
(current file below)
<?xml version="1.0" encoding="utf-8"?>
<Language>
<Strings>
<String key="500">CEDelftdocs {0}</String>
<String key="501">Voer uw gegevens in:</String>
<String key="502">Gebruikersnaam:</String>
<String key="503">Wachtwoord:</String>
<String key="664">Language</String>
</Strings>
</Language>
Now the website still crashes on Login.aspx
Server Error in '/' Application.
Language string with the specified key is not found!
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ApplicationException: Language string with the specified key is not found!
Source Error:
Line 44: <tr>
Line 45: <td></td>
Line 46: <td><input id="remember" name="remember" type="checkbox" /><label for="remember"><%=language.GetString("652")%></label></td>
Line 47: </tr>
Line 48: <tr>
Source File: d:\Websites\FileVista\login.aspx Line: 46
Stack Trace:
[ApplicationException: Language string with the specified key is not found!]
GleamTech.Util.Language.GetString(String key, Object[] replacements) +175
ASP.login_aspx.__RenderformLogin(HtmlTextWriter __w, Control parameterContainer) in d:\Websites\FileVista\login.aspx:46
System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +131
System.Web.UI.HtmlControls.HtmlForm.RenderChildren(HtmlTextWriter writer) +315
System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer) +48
ASP.login_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) in d:\Websites\FileVista\login.aspx:10
System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +131
System.Web.UI.Page.Render(HtmlTextWriter writer) +40
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5290
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272
I'm no website expert at all. I just want string 500 editted.
Anyone that can help me on this subject?
Rob van Etten
5/9/2012 8:26 AM