Click here to Skip to main content
15,914,419 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: How to call procedure in MySQL to use in PHP? Pin
Michael Sync16-Aug-07 23:59
Michael Sync16-Aug-07 23:59 
GeneralRe: How to call procedure in MySQL to use in PHP? Pin
Hy Chanhan16-Aug-07 17:55
professionalHy Chanhan16-Aug-07 17:55 
GeneralRe: How to call procedure in MySQL to use in PHP? Pin
Michael Sync16-Aug-07 23:58
Michael Sync16-Aug-07 23:58 
GeneralRe: How to call procedure in MySQL to use in PHP? Pin
Michael Sync19-Aug-07 0:08
Michael Sync19-Aug-07 0:08 
GeneralRe: How to call procedure in MySQL to use in PHP? Pin
Hy Chanhan19-Aug-07 16:18
professionalHy Chanhan19-Aug-07 16:18 
QuestionThe SourceCode Manager Pin
codelinks15-Aug-07 21:22
codelinks15-Aug-07 21:22 
Questionhow to send table format in html in mail? Pin
charhate_yogita15-Aug-07 20:31
charhate_yogita15-Aug-07 20:31 
AnswerRe: how to send table format in html in mail? Pin
Michael Sync15-Aug-07 20:43
Michael Sync15-Aug-07 20:43 
You need to set HTML format to your message object.

mailMsg.BodyFormat = MailFormat.Html

More ~ http://www.codeproject.com/useritems/SendMailSMTPWebConfig.asp
Private Sub SendClick()
        Dim mailMsg As New MailMessage
        Try
            mailMsg.To = "<tomailid>"
            mailMsg.From = "<frommailid>"
            'mailMsg.BodyFormat = MailFormat.Text 'optional for sending text in body
            mailMsg.BodyFormat = MailFormat.Html
            mailMsg.Subject = "Statistics Report"
            mailMsg.Body = "<html><body><Table><tr><td>Hi,</td></tr><tr><td>Details of the Statistics :</td></tr></Table></body></html><html><body>" & "sometext" & _
            "</body></html><html><body><Table><tr><td> </td></tr><tr><td>NOTE: This is an automated mail. Please, do not reply.</td></tr>" & _
            "<tr><td>*Green coloured rows indicates temporary demos</td></tr>" & _
            "<tr><td>**All statistics are based on the page naming conventions Eg., 22_10_2005_</td></tr>" & _
            "<tr><td> </td></tr><tr><td>Regards,</td></tr><tr><td>some text,</td></tr><tr><td>some text,</td></tr>" & _
            "<tr><td> Some text </td></tr></table></body></html>" 
            SmtpMail.SmtpServer = ConfigurationSettings.AppSettings("SmtpServer")
            SmtpMail.Send(mailMsg)
            'xm.InnerHtml = "Your message has been sent"
        Catch ex As Exception
            Response.Write(ex.Message)
        End Try
    End Sub


Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)

If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you. Smile | :)

QuestionJavaScript / Browser Window Height Pin
Heavy Storm15-Aug-07 7:48
Heavy Storm15-Aug-07 7:48 
AnswerRe: JavaScript / Browser Window Height Pin
andyharman15-Aug-07 8:05
professionalandyharman15-Aug-07 8:05 
GeneralRe: JavaScript / Browser Window Height Pin
Heavy Storm16-Aug-07 3:47
Heavy Storm16-Aug-07 3:47 
AnswerRe: JavaScript / Browser Window Height Pin
R. Giskard Reventlov15-Aug-07 21:09
R. Giskard Reventlov15-Aug-07 21:09 
QuestionDisplay long numbers inasp page from ms access Pin
dheema14-Aug-07 21:13
dheema14-Aug-07 21:13 
AnswerRe: Display long numbers inasp page from ms access Pin
Fred_Smith14-Aug-07 22:00
Fred_Smith14-Aug-07 22:00 
QuestionJavaScript Problem Pin
Rocky#14-Aug-07 20:09
Rocky#14-Aug-07 20:09 
AnswerRe: JavaScript Problem Pin
Guffa15-Aug-07 4:08
Guffa15-Aug-07 4:08 
GeneralRe: JavaScript Problem Pin
Rocky#15-Aug-07 5:05
Rocky#15-Aug-07 5:05 
AnswerRe: JavaScript Problem Pin
led mike15-Aug-07 4:23
led mike15-Aug-07 4:23 
GeneralRe: JavaScript Problem Pin
Rocky#15-Aug-07 5:03
Rocky#15-Aug-07 5:03 
Question.NET Oracle Connections Pin
.NET4Ever14-Aug-07 17:44
.NET4Ever14-Aug-07 17:44 
AnswerRe: .NET Oracle Connections Pin
Fred_Smith14-Aug-07 22:02
Fred_Smith14-Aug-07 22:02 
AnswerRe: .NET Oracle Connections Pin
.NET4Ever15-Aug-07 4:16
.NET4Ever15-Aug-07 4:16 
QuestionHow to create html documents with embedded images ? HTML printing problems.. [modified] Pin
GuimaSun14-Aug-07 7:44
GuimaSun14-Aug-07 7:44 
QuestionPreventing password fill-in Pin
GregStevens14-Aug-07 5:30
GregStevens14-Aug-07 5:30 
AnswerRe: Preventing password fill-in Pin
Vasudevan Deepak Kumar14-Aug-07 5:39
Vasudevan Deepak Kumar14-Aug-07 5:39 

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.