Click here to Skip to main content
15,891,375 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <connectionStrings>


        <add name="connString" connectionString="Data Source=INFND-DTP-0493;Initial Catalog=Test_DB; User ID=alok;Password=abcd@1234" providerName="System.Data.SqlClient" />



  </connectionStrings>
  <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />

  </system.web>
  <appSettings>

    <add key="SenderEmail" value="xyz.com" />
    <add key="SenderName" value="Admin" />
    <add key="RecipientEmail" value="xyz.com" />
    <add key="RecipientName" value=" Admin" />
    <add key="SmtpServer" value="mail.pqr.com" />
    <add key="SmtpServerUserName" value="webforms@abc.com" />
    <add key="SmtpServerPassword" value="web1234forms" />
    <add key="SmtpServerPort" value="25" />
    <add key="SmtpEnableSsl" value="false" />
    <add key="SmtpServerDefaultPort" value="25" />
    <add key="SmtpUseDefaultCredentials" value="false" />

  </appSettings>
</configuration>
Posted

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900