Click here to Skip to main content
15,904,297 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questiongetting logical drives Pin
248912831-Aug-06 20:45
248912831-Aug-06 20:45 
AnswerRe: getting logical drives Pin
_AK_31-Aug-06 22:56
_AK_31-Aug-06 22:56 
QuestionASP.NET Validation controls are not working on remote server Pin
talk2prabir@yahoo.co.in31-Aug-06 20:42
talk2prabir@yahoo.co.in31-Aug-06 20:42 
AnswerRe: ASP.NET Validation controls are not working on remote server Pin
_AK_31-Aug-06 21:48
_AK_31-Aug-06 21:48 
QuestionHow to send an e-mail using ASP.net? Pin
basha.sk31-Aug-06 20:00
basha.sk31-Aug-06 20:00 
AnswerRe: How to send an e-mail using ASP.net? Pin
_AK_31-Aug-06 20:08
_AK_31-Aug-06 20:08 
AnswerRe: How to send an e-mail using ASP.net? Pin
Sathesh Sakthivel31-Aug-06 20:34
Sathesh Sakthivel31-Aug-06 20:34 
AnswerRe: How to send an e-mail using ASP.net? Pin
Britney S. Morales1-Sep-06 4:25
Britney S. Morales1-Sep-06 4:25 
easy
First, you must to install All the SMTP features to IIS, Control Panel>>add remove windows programs>>

Second ,

using System.Web.Mail;

try{
MailMessage message = new MailMessage();
string from = "FROM E-Mail"
string to = "TO E-MAIL"
string subject = "Subject text";
string bodyMessage = "HELLO WORLD"
message.From = from;
message.To = to;
message.Subject = subject;
message.Body = bodyMessage;
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send(message);
Estate.Text = "Message was send to" + to;
}
catch(System.Web.HttpException)
{
Estate.Text = "Receiver Email Error";
}
catch(IndexOutOfRangeException)
{
Estate.Text = "Someone of the fields is out of range (To big)";
}

Gracias!! Smile | :)

ff
QuestionThe underlying connection was closed: The remote name could not be resolved Pin
linok2931-Aug-06 19:03
linok2931-Aug-06 19:03 
QuestionHow to compare date at client side in dd/mm/yyyy format - javascript Pin
Software_Guy_12331-Aug-06 18:44
Software_Guy_12331-Aug-06 18:44 
AnswerRe: How to compare date at client side in dd/mm/yyyy format - javascript Pin
_AK_31-Aug-06 20:12
_AK_31-Aug-06 20:12 
GeneralRe: How to compare date at client side in dd/mm/yyyy format - javascript Pin
Software_Guy_12331-Aug-06 21:37
Software_Guy_12331-Aug-06 21:37 
GeneralRe: How to compare date at client side in dd/mm/yyyy format - javascript Pin
_AK_31-Aug-06 21:45
_AK_31-Aug-06 21:45 
QuestionDrag and drop items between two listboxes in asp.net 2.0 with c# Pin
Kuricheti31-Aug-06 18:15
Kuricheti31-Aug-06 18:15 
AnswerRe: Drag and drop items between two listboxes in asp.net 2.0 with c# Pin
Not Active31-Aug-06 18:21
mentorNot Active31-Aug-06 18:21 
QuestionDrag and drop items between two listboxes in asp.net 2.0 with c# Pin
Kuricheti31-Aug-06 18:12
Kuricheti31-Aug-06 18:12 
AnswerRe: Drag and drop items between two listboxes in asp.net 2.0 with c# Pin
Not Active31-Aug-06 18:22
mentorNot Active31-Aug-06 18:22 
QuestionCreate DataGrid with scroll bar within the data Pin
HatakeKaKaShi31-Aug-06 16:23
HatakeKaKaShi31-Aug-06 16:23 
AnswerRe: Create DataGrid with scroll bar within the data Pin
Not Active31-Aug-06 18:23
mentorNot Active31-Aug-06 18:23 
QuestionInteresting problem with a datagrid Pin
raulstein31-Aug-06 15:45
raulstein31-Aug-06 15:45 
AnswerRe: Interesting problem with a datagrid Pin
postmaster@programmingknowledge.com31-Aug-06 16:54
postmaster@programmingknowledge.com31-Aug-06 16:54 
Question.inc files in VS 2005 ? Pin
mrjmwcom31-Aug-06 14:09
mrjmwcom31-Aug-06 14:09 
AnswerRe: .inc files in VS 2005 ? Pin
minhpc_bk31-Aug-06 15:02
minhpc_bk31-Aug-06 15:02 
QuestionSeperate data from a DataSet into multiple GridViews Pin
Steve-o H.31-Aug-06 12:21
Steve-o H.31-Aug-06 12:21 
AnswerRe: Seperate data from a DataSet into multiple GridViews Pin
Not Active31-Aug-06 18:31
mentorNot Active31-Aug-06 18:31 

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.