Click here to Skip to main content
15,896,330 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: view state in asp.net 1.1 Pin
CWIZO9-May-06 19:40
CWIZO9-May-06 19:40 
AnswerRe: view state in asp.net 1.1 Pin
chinnasrihari9-May-06 19:58
chinnasrihari9-May-06 19:58 
QuestionGridView Paging Pin
Rajiya9-May-06 18:57
Rajiya9-May-06 18:57 
AnswerRe: GridView Paging Pin
_AK_9-May-06 19:15
_AK_9-May-06 19:15 
QuestionFck Editor Error -: XML request :Internal Server 500. Pin
Amit Agarrwal9-May-06 18:43
Amit Agarrwal9-May-06 18:43 
Questionemail sent automatically from .aspx page Pin
lehya9-May-06 18:42
lehya9-May-06 18:42 
AnswerRe: email sent automatically from .aspx page Pin
CWIZO9-May-06 19:41
CWIZO9-May-06 19:41 
AnswerRe: email sent automatically from .aspx page Pin
chinnasrihari9-May-06 20:23
chinnasrihari9-May-06 20:23 
Private Shared Sub Send(ByVal smtpServer As String, ByVal fromEmail As String, ByVal subject As String)
Dim strBody As String
Dim smtpMail As System.Web.Mail.SmtpMail
Dim mailMessage As New MailMessage
mailMessage.From = fromEmail
mailMessage.To = _emailAddress
mailMessage.Subject = subject & " - " & _status
strBody = ""
strBody += ""
strBody += ""
strBody += ""
strBody += ""
strBody += ""
strBody += "
" & "Order Details" & "
" & "Ordered:" & " " & _orderDate & "
" & "Due Date:" & " " & _dueDate & "
" & "Refrence #:" & " " & _referenceNumber & "
" & "Borrower:" & " " & _borrowerName & "
"

mailMessage.Body = strBody
'Set the message properties.
mailMessage.BodyFormat = MailFormat.Html
smtpMail.SmtpServer = smtpServer
Try
smtpMail.Send(mailMessage)
Catch ex As Exception
Throw New AtlasApplicationException("VMS.COM.001")
End Try
mailMessage = Nothing
End Sub

Smile | :) Hope his helps



Chinna Srihari
Tech Lead, Capgemini
QuestionWhich way is the Page_Load event? Pin
Raul Davila9-May-06 13:24
Raul Davila9-May-06 13:24 
AnswerRe: Which way is the Page_Load event? Pin
minhpc_bk9-May-06 15:17
minhpc_bk9-May-06 15:17 
Questionneeed help about backtalk plz Pin
ksar0019-May-06 12:26
ksar0019-May-06 12:26 
QuestionAllowing html inside a textbox control Pin
Ista9-May-06 10:48
Ista9-May-06 10:48 
AnswerRe: Allowing html inside a textbox control Pin
Daniel Santillanes9-May-06 12:56
professionalDaniel Santillanes9-May-06 12:56 
AnswerRe: Allowing html inside a textbox control Pin
chinnasrihari9-May-06 20:34
chinnasrihari9-May-06 20:34 
QuestionHow to Prepare a Combined Setup using .NET 2.0 Pin
VenkataRamana.Gali9-May-06 9:14
VenkataRamana.Gali9-May-06 9:14 
Questionfiles Pin
irshan9-May-06 6:49
irshan9-May-06 6:49 
AnswerRe: files Pin
CWIZO9-May-06 8:43
CWIZO9-May-06 8:43 
QuestionDynamic breadcrumbs Pin
leckey9-May-06 5:36
leckey9-May-06 5:36 
AnswerRe: Dynamic breadcrumbs Pin
J4amieC9-May-06 5:39
J4amieC9-May-06 5:39 
QuestionRe: Dynamic breadcrumbs Pin
leckey9-May-06 5:46
leckey9-May-06 5:46 
QuestionCustom player Pin
venkatarama9-May-06 5:31
venkatarama9-May-06 5:31 
Question.Net Services Pin
munklefish9-May-06 5:30
munklefish9-May-06 5:30 
AnswerRe: .Net Services Pin
munklefish9-May-06 6:07
munklefish9-May-06 6:07 
QuestionMoving Web Parts without reloading page Pin
dave90879-May-06 5:29
dave90879-May-06 5:29 
Questionread xml string Pin
fmardani9-May-06 4:29
fmardani9-May-06 4:29 

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.