Click here to Skip to main content
15,888,065 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: File viewing from another directory Pin
N a v a n e e t h25-Mar-09 20:38
N a v a n e e t h25-Mar-09 20:38 
GeneralRe: File viewing from another directory Pin
CrazyCoder2626-Mar-09 22:00
CrazyCoder2626-Mar-09 22:00 
AnswerRe: File viewing from another directory Pin
Ravindra Bisen25-Mar-09 22:50
Ravindra Bisen25-Mar-09 22:50 
QuestionProblem in modal pop in asp.net 2008 ajax Pin
hozsam25-Mar-09 18:43
hozsam25-Mar-09 18:43 
Questionhow to redirect to main page when session expired Pin
prasadbuddhika25-Mar-09 18:14
prasadbuddhika25-Mar-09 18:14 
AnswerRe: how to redirect to main page when session expired Pin
tech60325-Mar-09 19:09
tech60325-Mar-09 19:09 
QuestionSending email getting problem Pin
Jagz W25-Mar-09 16:25
professionalJagz W25-Mar-09 16:25 
AnswerRe: Sending email getting problem Pin
tech60325-Mar-09 17:53
tech60325-Mar-09 17:53 
You may need to authenticate to your email server so you would need to add that to your code. Below is a code snippet using cdosys, that i tested answering a similar question the other day.

Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="youremail@yourdomain.com"
myMail.To="youremail@yourdomain.com"
myMail.TextBody="This is a message."
myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
'Name or IP of remote SMTP server
myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver")="youremailserver"
'Server port
myMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport")=25
'authenticate
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
'email address for authentication
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "youremailaddresshere"
'email password
myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "youremailpasswordhere"
myMail.Configuration.Fields.Update
myMail.Send
set myMail=nothing

Hope this helps

Matthew Vass
QA Analyst
mvass@hostmysite.com
HostMySite.com

QuestionJavascript:Disable BUtton Pin
Ramkithepower25-Mar-09 16:10
Ramkithepower25-Mar-09 16:10 
Questionwhat is equivalent to follwoing C# code to VB Pin
rprateek25-Mar-09 12:49
rprateek25-Mar-09 12:49 
AnswerRe: what is equivalent to follwoing C# code to VB Pin
Xmen Real 25-Mar-09 14:01
professional Xmen Real 25-Mar-09 14:01 
QuestionAlligning text boxes using CSS (don't want to use &nbsp) Pin
Tina P25-Mar-09 11:59
Tina P25-Mar-09 11:59 
AnswerRe: Alligning text boxes using CSS (don't want to use &nbsp) Pin
tech60325-Mar-09 15:10
tech60325-Mar-09 15:10 
GeneralRe: Alligning text boxes using CSS (don't want to use &nbsp) Pin
Tina P26-Mar-09 13:29
Tina P26-Mar-09 13:29 
QuestionTo give access in some pages to the unauthenticated users Pin
Minhajur Rahman Khan25-Mar-09 8:57
Minhajur Rahman Khan25-Mar-09 8:57 
QuestionHow to change the colors of each slice in a pie chart using owc and asp [modified] Pin
lued25-Mar-09 8:50
lued25-Mar-09 8:50 
QuestionLinked server connection error Pin
Ofori Boadu25-Mar-09 8:36
Ofori Boadu25-Mar-09 8:36 
AnswerRe: Linked server connection error Pin
Vimalsoft(Pty) Ltd25-Mar-09 22:01
professionalVimalsoft(Pty) Ltd25-Mar-09 22:01 
QuestionWhy UserID is complicated ? Pin
Xmen Real 25-Mar-09 7:40
professional Xmen Real 25-Mar-09 7:40 
AnswerRe: Why UserID is complicated ? Pin
Vimalsoft(Pty) Ltd25-Mar-09 21:58
professionalVimalsoft(Pty) Ltd25-Mar-09 21:58 
GeneralRe: Why UserID is complicated ? Pin
Xmen Real 26-Mar-09 2:18
professional Xmen Real 26-Mar-09 2:18 
AnswerRe: Why UserID is complicated ? Pin
AprNgp26-Mar-09 7:18
AprNgp26-Mar-09 7:18 
GeneralRe: Why UserID is complicated ? Pin
Xmen Real 27-Mar-09 7:07
professional Xmen Real 27-Mar-09 7:07 
QuestionRedirection in Development Environment Pin
Lonnie Raffray25-Mar-09 7:23
Lonnie Raffray25-Mar-09 7:23 
AnswerRe: Redirection in Development Environment Pin
Yusuf25-Mar-09 7:34
Yusuf25-Mar-09 7:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.