I have some question about web.config
<appSettings>
<add key="EmailFrom" value="
[email protected]"/>
<add key="EmailSubject" value="File Ready for Download!"/>
<add key="SmtpServer" value="127.0.0.1"/>
<add key="MailUser" value="myalias"/>
<add key="MailPassword" value="mypassword"/>
<add key="MailPort" value="25"/>
<add key="EmailFormatSelected" value="Text"/>
<add key="PageTitle" value="Wrox File Share"/>
<add key="ShareLocalFolderPath" value="C:\inetpub\wwwroot\FileShare\FileStorage\"/> => this is static path, how can I convert to dynamic path, when I upload website to host, what should I convert this path to?
<add key="httpDownloadPath" value="http://localhost/FileShare/"/>
<add key="CurrentTheme" value="CleanBlue" />
<!--
<add key="CurrentTheme" value="CleanRed"/>
-->
</appSettings>
another question, how can you create these code, do y create them in webconfig directly or another place ?
help me! thanks