Click here to Skip to main content
15,917,731 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: asp.net Error Code 1460: timeout Pin
Arindam Tewary27-Dec-06 0:56
professionalArindam Tewary27-Dec-06 0:56 
QuestionTto use combobox from Javascript function Pin
indian14326-Dec-06 22:21
indian14326-Dec-06 22:21 
AnswerRe: Tto use combobox from Javascript function Pin
asithangae26-Dec-06 22:49
asithangae26-Dec-06 22:49 
QuestionClient Side DataSet Operations Pin
peter rankel26-Dec-06 22:12
peter rankel26-Dec-06 22:12 
AnswerRe: Client Side DataSet Operations Pin
Paddy Boyd26-Dec-06 23:25
Paddy Boyd26-Dec-06 23:25 
QuestionSMTP Mail Sending Problem.....? Pin
fmlove26-Dec-06 19:33
fmlove26-Dec-06 19:33 
AnswerRe: SMTP Mail Sending Problem.....? Pin
zahra yousefi26-Dec-06 20:19
zahra yousefi26-Dec-06 20:19 
AnswerRe: SMTP Mail Sending Problem.....? Pin
Venkatesh Mookkan27-Dec-06 15:53
Venkatesh Mookkan27-Dec-06 15:53 
Try this man. This example is tested in .NET 2.0 framework.

Dim SMTP As New Net.Mail.SmtpClient(ConfigurationManager.AppSettings("SMTP_ServerName"))
Dim Message As New Net.Mail.MailMessage
Try
            SMTP.Credentials = New Net.NetworkCredential(ConfigurationManager.AppSettings("SMTP_Username"), ConfigurationManager.AppSettings("SMTP_Password"))
            Message.To.Add("tosomeone@someserver.com")
            Message.From = New Net.Mail.MailAddress("itsme@myserver.com", "itsme")
            Message.Sender = New Net.Mail.MailAddress("itsme@myserver.com", "itsme")
            Message.Body = "This is a sample mail to test the SMTP Service"
            SMTP.Send(Message)
Catch ex As Exception
            Throw ex
End Try


Have a nice day dude. 

<div class="ForumSig"><div style="font-family: Trebuchet MS; font-size: 12px">
Regards,
Venkatesh Mookkan.
Software Engineer
</div></div>

GeneralRe: SMTP Mail Sending Problem.....? Pin
fmlove27-Dec-06 18:42
fmlove27-Dec-06 18:42 
GeneralRe: SMTP Mail Sending Problem.....? Pin
Venkatesh Mookkan28-Dec-06 19:41
Venkatesh Mookkan28-Dec-06 19:41 
QuestionSessions Pin
sowmya_044426-Dec-06 19:22
sowmya_044426-Dec-06 19:22 
AnswerRe: Sessions Pin
Venkatesh Mookkan27-Dec-06 15:58
Venkatesh Mookkan27-Dec-06 15:58 
Questiontrusted Web Hosting Pin
TheEagle26-Dec-06 18:56
TheEagle26-Dec-06 18:56 
QuestionDownLoad Using JavaScript Pin
nannapanenikamalnath26-Dec-06 18:08
nannapanenikamalnath26-Dec-06 18:08 
AnswerRe: DownLoad Using JavaScript Pin
m.rastgar26-Dec-06 19:29
m.rastgar26-Dec-06 19:29 
GeneralRe: DownLoad Using JavaScript Pin
nannapanenikamalnath26-Dec-06 23:17
nannapanenikamalnath26-Dec-06 23:17 
GeneralRe: DownLoad Using JavaScript Pin
nannapanenikamalnath26-Dec-06 23:19
nannapanenikamalnath26-Dec-06 23:19 
GeneralRe: DownLoad Using JavaScript Pin
Paddy Boyd26-Dec-06 23:27
Paddy Boyd26-Dec-06 23:27 
GeneralRe: DownLoad Using JavaScript Pin
nannapanenikamalnath27-Dec-06 19:53
nannapanenikamalnath27-Dec-06 19:53 
QuestionCan anybody help me to use combobox from Javascript function [modified] Pin
indian14326-Dec-06 17:58
indian14326-Dec-06 17:58 
AnswerRe: Can anybody help me to use combobox from Javascript function Pin
Venkatesh Mookkan26-Dec-06 19:32
Venkatesh Mookkan26-Dec-06 19:32 
AnswerRe: Can anybody help me to use combobox from Javascript function Pin
m.rastgar26-Dec-06 19:43
m.rastgar26-Dec-06 19:43 
GeneralRe: Can anybody help me to use combobox from Javascript function Pin
indian14326-Dec-06 22:19
indian14326-Dec-06 22:19 
Generalhelp me to use combobox from Javascript function Pin
indian14326-Dec-06 22:20
indian14326-Dec-06 22:20 
GeneralRe: help me to use combobox from Javascript function Pin
Mircea Grelus26-Dec-06 22:56
Mircea Grelus26-Dec-06 22:56 

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.