Click here to Skip to main content
15,914,452 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: create datagrid with programming Pin
V.23-Apr-06 23:53
professionalV.23-Apr-06 23:53 
QuestionPost Back Pin
sroberts8223-Apr-06 23:07
sroberts8223-Apr-06 23:07 
AnswerRe: Post Back Pin
V.23-Apr-06 23:56
professionalV.23-Apr-06 23:56 
Questioncreate datagrid programaticaly Pin
ptvce23-Apr-06 23:03
ptvce23-Apr-06 23:03 
AnswerRe: create datagrid programaticaly Pin
chakkara200324-Apr-06 0:11
chakkara200324-Apr-06 0:11 
QuestionHow To Insert values Pin
kuwl_mark23-Apr-06 21:36
kuwl_mark23-Apr-06 21:36 
AnswerRe: How To Insert values Pin
HimaBindu Vejella23-Apr-06 23:07
HimaBindu Vejella23-Apr-06 23:07 
Questionpop3 mail Pin
sudharsong23-Apr-06 21:26
sudharsong23-Apr-06 21:26 
hi im developing a mail application.im able to send mail through smtp mail .but my requirement is i have to receive mails thro pop3 .i did that thro this code
try {
// You will need to set these to your settings.
// The settings here are settings for a local
// demo POP3 server
// that I use for testing.
string xHost = "127.0.0.1";
string xUsername = "chad";
string xPassword = "pass";
using (POP3 xPOP3 = new POP3()) {
xPOP3.Username = xUsername;
xPOP3.Password = xPassword;
xPOP3.Connect(xHost);
int xCount = xPOP3.CheckMessages();
if (xCount == 0) {
Console.WriteLine("No messages on account.");
}
else {
Message xMsg = new Message();
xPOP3.Retrieve(1, xMsg);
Console.WriteLine("Subject: " + xMsg.Subject);
Console.WriteLine("From: " + xMsg.From.Text);
Console.WriteLine("To: " + xMsg.Recipients[0].Text);
Console.WriteLine();
Console.WriteLine(xMsg.Body.Text);
}
try {
}
finally {
xPOP3.Disconnect();
}
}
}
catch (Exception e) {
Console.WriteLine(e.Message);
}
Console.WriteLine("");
Console.WriteLine("Press enter");
Console.ReadLine();



but i edited the attributes according to the req but im geting an error like reference is not their for POP3 class .im using system.web.mail name space
please help with this.


hi to all
with regards,
susa
Questionreffering external files from web.config Pin
chakkara200323-Apr-06 21:22
chakkara200323-Apr-06 21:22 
AnswerRe: reffering external files from web.config Pin
minhpc_bk23-Apr-06 21:32
minhpc_bk23-Apr-06 21:32 
Questionasp.net sessions Pin
kh_neeru23-Apr-06 21:21
kh_neeru23-Apr-06 21:21 
AnswerRe: asp.net sessions Pin
HimaBindu Vejella23-Apr-06 21:27
HimaBindu Vejella23-Apr-06 21:27 
AnswerRe: asp.net sessions Pin
chakkara200323-Apr-06 21:28
chakkara200323-Apr-06 21:28 
GeneralRe: asp.net sessions Pin
kh_neeru23-Apr-06 21:38
kh_neeru23-Apr-06 21:38 
QuestionWhy Do we get this Error? Pin
HimaBindu Vejella23-Apr-06 21:14
HimaBindu Vejella23-Apr-06 21:14 
AnswerRe: Why Do we get this Error? Pin
minhpc_bk23-Apr-06 21:27
minhpc_bk23-Apr-06 21:27 
QuestionBind data into HTML server table control Pin
nesaraja23-Apr-06 20:39
nesaraja23-Apr-06 20:39 
AnswerRe: Bind data into HTML server table control Pin
minhpc_bk23-Apr-06 21:20
minhpc_bk23-Apr-06 21:20 
GeneralRe: Bind data into HTML server table control Pin
nesaraja23-Apr-06 21:27
nesaraja23-Apr-06 21:27 
AnswerRe: Bind data into HTML server table control Pin
HimaBindu Vejella23-Apr-06 21:28
HimaBindu Vejella23-Apr-06 21:28 
GeneralRe: Bind data into HTML server table control Pin
nesaraja23-Apr-06 22:20
nesaraja23-Apr-06 22:20 
QuestionImageButton command argument Pin
TheEagle23-Apr-06 20:38
TheEagle23-Apr-06 20:38 
AnswerRe: ImageButton command argument Pin
minhpc_bk23-Apr-06 21:16
minhpc_bk23-Apr-06 21:16 
GeneralRe: ImageButton command argument Pin
TheEagle24-Apr-06 4:54
TheEagle24-Apr-06 4:54 
GeneralRe: ImageButton command argument Pin
minhpc_bk24-Apr-06 15:54
minhpc_bk24-Apr-06 15:54 

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.