Help with .NET

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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top