Help with .NET

  • Thread starter Thread starter AbraAbraCadabra
  • Start date Start date
A

AbraAbraCadabra

I found some sample code that instructs me to implement the following
code...
Does this code go directly inside an ASP file? It looks like it might be
something
special - I am new to .NET 2.0 but have used 1.1 for a while now.


<configuration>
<!-- Add the email settings to the <system.net> element -->
<system.net>
<mailSettings>
<smtp>
<network
host="relayServerHostname"
port="portNumber"
userName="username"
password="password" />
</smtp>
</mailSettings>
</system.net>

<system.web>
...
</system.web>
</configuration>
 
Back
Top