Click here to Skip to main content
16,006,749 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionmake blog in asp .net Pin
neha00128-Mar-09 22:32
neha00128-Mar-09 22:32 
AnswerRe: make blog in asp .net Pin
Abhijit Jana28-Mar-09 22:42
professionalAbhijit Jana28-Mar-09 22:42 
AnswerRe: make blog in asp .net Pin
Eddy Vluggen28-Mar-09 23:05
professionalEddy Vluggen28-Mar-09 23:05 
AnswerRe: make blog in asp .net Pin
vinodkrebc29-Mar-09 23:23
vinodkrebc29-Mar-09 23:23 
Questionupload a file without any control on button click with a specified path Pin
Member 477245728-Mar-09 7:57
Member 477245728-Mar-09 7:57 
AnswerRe: upload a file without any control on button click with a specified path Pin
Colin Angus Mackay28-Mar-09 10:25
Colin Angus Mackay28-Mar-09 10:25 
AnswerRe: upload a file without any control on button click with a specified path Pin
Yusuf28-Mar-09 11:19
Yusuf28-Mar-09 11:19 
QuestionImport sheet excel to table in Sql Server with Asp.net (VB) Pin
Sandraa28-Mar-09 7:49
Sandraa28-Mar-09 7:49 
AnswerRe: Import sheet excel to table in Sql Server with Asp.net (VB) Pin
Colin Angus Mackay28-Mar-09 9:31
Colin Angus Mackay28-Mar-09 9:31 
GeneralRe: Import sheet excel to table in Sql Server with Asp.net (VB) Pin
Sandraa28-Mar-09 9:52
Sandraa28-Mar-09 9:52 
GeneralRe: Import sheet excel to table in Sql Server with Asp.net (VB) Pin
Colin Angus Mackay28-Mar-09 10:23
Colin Angus Mackay28-Mar-09 10:23 
GeneralRe: Import sheet excel to table in Sql Server with Asp.net (VB) Pin
Sandraa28-Mar-09 10:27
Sandraa28-Mar-09 10:27 
GeneralRe: Import sheet excel to table in Sql Server with Asp.net (VB) Pin
Colin Angus Mackay28-Mar-09 10:30
Colin Angus Mackay28-Mar-09 10:30 
GeneralRe: Import sheet excel to table in Sql Server with Asp.net (VB) Pin
Sandraa28-Mar-09 11:39
Sandraa28-Mar-09 11:39 
AnswerRe: Import sheet excel to table in Sql Server with Asp.net (VB) Pin
Sandraa29-Mar-09 0:53
Sandraa29-Mar-09 0:53 
GeneralRe: Import sheet excel to table in Sql Server with Asp.net (VB) Pin
Sandraa29-Mar-09 1:41
Sandraa29-Mar-09 1:41 
Questioncom addin setup fails Pin
aaru24x728-Mar-09 5:25
aaru24x728-Mar-09 5:25 
AnswerRe: com addin setup fails Pin
Colin Angus Mackay28-Mar-09 9:29
Colin Angus Mackay28-Mar-09 9:29 
Questiondebug mode works but its fails in iis Pin
aaru24x728-Mar-09 5:23
aaru24x728-Mar-09 5:23 
AnswerRe: debug mode works but its fails in iis Pin
Yusuf29-Mar-09 8:20
Yusuf29-Mar-09 8:20 
QuestionHow to go from Step1 to Step2 by satisfying specific conditions using Wizard Control Pin
Shahdat Hosain28-Mar-09 4:46
Shahdat Hosain28-Mar-09 4:46 
AnswerRe: How to go from Step1 to Step2 by satisfying specific conditions using Wizard Control Pin
Christian Graus28-Mar-09 11:08
protectorChristian Graus28-Mar-09 11:08 
QuestionSend Mail To Yahoo! Pin
mehrdadc4828-Mar-09 2:16
mehrdadc4828-Mar-09 2:16 
Hi,
I have a page for sending an email to users.
When the target email is gmail, everything is OK, but when the email is going to be sent to a Yahoo address, it doesn't work! in this case not an error appears, not the mail is sent.
My host support says that it'd due to Yahoo.
Do you have any idea?
it's my code:
<br />
MailMessage message = new MailMessage();<br />
message.IsBodyHtml = true;<br />
message.Body = "";<br />
MailAddress mailAdrs = new MailAddress("support@myDomain.net", "support@myDomain.net");<br />
message.From = mailAdrs;<br />
message.Subject = "Reset Password Request";<br />
message.To.Add(txtEmail.Text);<br />
SmtpClient smtpC = new SmtpClient();<br />
smtpC.Host = "localhost";<br />
smtpC.Send(message);


Best wishes

AnswerRe: Send Mail To Yahoo! Pin
Nazrul28-Mar-09 4:50
Nazrul28-Mar-09 4:50 
GeneralRe: Send Mail To Yahoo! Pin
Colin Angus Mackay28-Mar-09 9:40
Colin Angus Mackay28-Mar-09 9:40 

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.