Click here to Skip to main content
15,919,245 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: No image is displayed at run-time in the page in image control Pin
Chesnokov Yuriy17-Jul-09 2:44
professionalChesnokov Yuriy17-Jul-09 2:44 
QuestionGet LoginId Pin
zeeShan anSari17-Jul-09 1:49
zeeShan anSari17-Jul-09 1:49 
AnswerRe: Get LoginId Pin
Abhijit Jana17-Jul-09 1:54
professionalAbhijit Jana17-Jul-09 1:54 
GeneralRe: Get LoginId Pin
zeeShan anSari17-Jul-09 2:22
zeeShan anSari17-Jul-09 2:22 
GeneralRe: Get LoginId Pin
Manas Bhardwaj17-Jul-09 2:32
professionalManas Bhardwaj17-Jul-09 2:32 
GeneralRe: Get LoginId Pin
zeeShan anSari17-Jul-09 2:40
zeeShan anSari17-Jul-09 2:40 
QuestionUsing large data buffers Pin
belier117-Jul-09 1:32
belier117-Jul-09 1:32 
Questionemail sending problem Pin
Kissy1617-Jul-09 1:31
Kissy1617-Jul-09 1:31 
Dear all,
Am sending this msg regarding asp.net 1.1 email usage.
My code for sending email is below.
The problem it is reaching my inetpub/mailroot/queue instead of actual mail id.
I have seen all my smtp server settings which are using port 25 and localhost as smtpserver.No error nothing.
Can anybody resolve using asp.net 1.1 not with 2.0.
I had the solution for 2.0

Code is on button click event

Dim cdoconfig, cdomessage, sch
sch = "http://schemas.microsoft.com/cdo/configuration/"
cdoconfig = Server.CreateObject("CDO.Configuration")
cdoconfig.Fields.Item(sch & "sendusing") = 2
cdoconfig.Fields.Item(sch & "smtpserver") = "localhost"
cdoconfig.Fields.Update()
cdomessage = CreateObject("CDO.Message")
With cdoMessage
.Configuration = cdoconfig
.From = _txtFrom.Text
.To = _txtTo.Text
.Subject = _txtSubject.Text
.TextBody = _txtMessage.Text
.Send()
End With
cdomessage = Nothing
cdoconfig = Nothing

I tried maximum trails still am not with the right solution.Can nay body tell me if u r free.

kissy

AnswerRe: email sending problem Pin
Abhijit Jana17-Jul-09 1:42
professionalAbhijit Jana17-Jul-09 1:42 
AnswerRe: email sending problem Pin
Manas Bhardwaj17-Jul-09 2:10
professionalManas Bhardwaj17-Jul-09 2:10 
Questionwhat is getter setter in asp? Pin
Ravindra Bisen17-Jul-09 0:16
Ravindra Bisen17-Jul-09 0:16 
AnswerRe: what is getter setter in asp? Pin
Manas Bhardwaj17-Jul-09 0:41
professionalManas Bhardwaj17-Jul-09 0:41 
AnswerRe: what is getter setter in asp? Pin
Abhijit Jana17-Jul-09 0:57
professionalAbhijit Jana17-Jul-09 0:57 
QuestionTreeview Pin
sekannak16-Jul-09 23:50
sekannak16-Jul-09 23:50 
AnswerRe: Treeview Pin
Manas Bhardwaj17-Jul-09 0:16
professionalManas Bhardwaj17-Jul-09 0:16 
GeneralRe: Treeview Pin
sekannak17-Jul-09 0:42
sekannak17-Jul-09 0:42 
GeneralRe: Treeview Pin
Manas Bhardwaj17-Jul-09 1:02
professionalManas Bhardwaj17-Jul-09 1:02 
GeneralRe: Treeview Pin
sekannak17-Jul-09 1:10
sekannak17-Jul-09 1:10 
GeneralRe: Treeview Pin
Manas Bhardwaj17-Jul-09 1:20
professionalManas Bhardwaj17-Jul-09 1:20 
GeneralRe: Treeview Pin
Abhijit Jana17-Jul-09 1:46
professionalAbhijit Jana17-Jul-09 1:46 
Questionhow can i get list box value using IPostBackDataHandler interface Pin
anish27patel16-Jul-09 22:26
anish27patel16-Jul-09 22:26 
QuestionRecursive fallback not allowed for character \u003F. Pin
kishore30916-Jul-09 21:16
kishore30916-Jul-09 21:16 
AnswerRe: Recursive fallback not allowed for character \u003F. Pin
Manas Bhardwaj16-Jul-09 21:40
professionalManas Bhardwaj16-Jul-09 21:40 
QuestionASP.NET validation Pin
Venkat Eswaran16-Jul-09 20:59
Venkat Eswaran16-Jul-09 20:59 
AnswerRe: ASP.NET validation Pin
Brij16-Jul-09 21:24
mentorBrij16-Jul-09 21:24 

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.