📄 mobilecopy.config
字号:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<!-- TIMETRACKING DATABASE CONNECTION STRING
-->
<~~##TTConString##~~ />
<!-- add key="ConnectionString" value="server=localhost;Trusted_Connection=true;database=StarterKits" -->
<!-- DEFAULT ROLE FOR NEW USER
From the TTUser BLL Component:
Administrator = "1"
Project Manager = "2"
Consultant = "3"
-->
<add key="DefaultRoleForNewUser" value="1"/>
<!-- USER ACCOUNT SOURCE
WindowsSAM, ActiveDirectory, or None
-->
<add key="UserAccountSource" value="None"/>
<!-- FIRST DAY OF WEEK
0 = Sunday
...
6 = Saturday
-->
<add key="FirstDayOfWeek" value="1"/>
</appSettings>
<system.web>
<compilation defaultLanguage="vb" debug="true"/>
<customErrors mode="RemoteOnly" defaultRedirect="ErrorPage.aspx" />
<!--The TT Starter Kit supports either Forms authentication (Internet)
or Windows authentication (for intranets). Forms Authentication is
the default. To change to Windows authentication, comment the
<authentication mode="Forms"> section below, and uncomment the
<authentication mode="Windows"> section. -->
<!--<authentication mode="Windows" />-->
<authorization>
<deny users="?" />
</authorization>
<authentication mode="Forms">
<forms name=".ASPXAUTH" protection="All" timeout="60" loginUrl="SignIn.aspx" />
</authentication>
<!-- IMPERSONATION
To gain access to an Active Directory, the ASPNET process must impersonate an identity that
has sufficient access rights.
-->
<!-- <identity impersonate="false" userName="DOMAIN\UserWithAccessToAD" password="Sample" /> -->
<~~##TTImpersonation##~~ />
~~##TTValidateReq##~~
<trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true"/>
<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;user id=sa;password=" cookieless="false" timeout="20"/>
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
<deviceFilters>
<filter name="IsHTML32" compare="PreferredRenderingType" argument="html32"/>
</deviceFilters>
</system.web>
<location path="SignIn.aspx">
<system.web>
<authorization>
<allow users="?" />
</authorization>
</system.web>
</location>
</configuration>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -