Click here to Skip to main content
15,899,313 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Generating HTML FROM XML File [modified] Pin
DIMPLE_R5-Jul-06 22:48
DIMPLE_R5-Jul-06 22:48 
GeneralRe: Generating HTML FROM XML File Pin
King Shez6-Jul-06 5:20
King Shez6-Jul-06 5:20 
Questionsharepoint for win xp Pin
mehnazash5-Jul-06 20:04
mehnazash5-Jul-06 20:04 
AnswerRe: sharepoint for win xp Pin
minhpc_bk5-Jul-06 20:51
minhpc_bk5-Jul-06 20:51 
QuestionRecieve Mails in Asp.Net Pin
venkatasivaramaprasad5-Jul-06 19:26
venkatasivaramaprasad5-Jul-06 19:26 
AnswerRe: Recieve Mails in Asp.Net Pin
Socheat.Net5-Jul-06 22:03
Socheat.Net5-Jul-06 22:03 
GeneralRe: Recieve Mails in Asp.Net Pin
venkatasivaramaprasad6-Jul-06 23:18
venkatasivaramaprasad6-Jul-06 23:18 
GeneralRe: Recieve Mails in Asp.Net Pin
Socheat.Net6-Jul-06 23:30
Socheat.Net6-Jul-06 23:30 
Yes
This is example
<%@ Import Namespace="System.Web.Mail" %>
Dim objEmail as New MailMessage()
objEmail.To ="webmaster@khmerfriend.com"
objEmail.From = txtEmail.Text
objEmail.BodyFormat = MailFormat.HTML
objEmail.Body = "Re:"
objEmail.Priority = MailPriority.High
SmtpMail.SmtpServer = "localhost"
Try
SmtpMail.Send(objEmail)
lblSuccess.Text="Your email has been sent successful."
Catch ex As Exception
lblSuccess.Text="Sending failed " & ex.Message
End Try
End Sub


................
QuestionInterfaces in the vb.net 1.1 Pin
amaneet5-Jul-06 18:41
amaneet5-Jul-06 18:41 
Questionneed urgent help Pin
nauty5-Jul-06 18:27
nauty5-Jul-06 18:27 
AnswerRe: need urgent help Pin
Vasudevan Deepak Kumar5-Jul-06 18:58
Vasudevan Deepak Kumar5-Jul-06 18:58 
AnswerRe: need urgent help Pin
Muhammad Chitrali5-Jul-06 21:03
Muhammad Chitrali5-Jul-06 21:03 
QuestionNumbering a Datagrid Pin
Vipin Venugopal5-Jul-06 18:27
Vipin Venugopal5-Jul-06 18:27 
AnswerRe: Numbering a Datagrid Pin
Vasudevan Deepak Kumar5-Jul-06 18:59
Vasudevan Deepak Kumar5-Jul-06 18:59 
GeneralRe: Numbering a Datagrid Pin
Vipin Venugopal5-Jul-06 21:26
Vipin Venugopal5-Jul-06 21:26 
AnswerRe: Numbering a Datagrid Pin
eggsovereasy6-Jul-06 5:30
eggsovereasy6-Jul-06 5:30 
QuestionDisplaying Sql Data As Xml Pin
teejayem5-Jul-06 15:56
teejayem5-Jul-06 15:56 
AnswerRe: Displaying Sql Data As Xml Pin
minhpc_bk5-Jul-06 16:10
minhpc_bk5-Jul-06 16:10 
GeneralRe: Displaying Sql Data As Xml Pin
teejayem5-Jul-06 16:28
teejayem5-Jul-06 16:28 
QuestionTransfer of datagrid to another webform [modified] Pin
blurMember5-Jul-06 15:23
blurMember5-Jul-06 15:23 
AnswerRe: Transfer of datagrid to another webform Pin
minhpc_bk5-Jul-06 16:04
minhpc_bk5-Jul-06 16:04 
GeneralRe: Transfer of datagrid to another webform Pin
blurMember5-Jul-06 19:14
blurMember5-Jul-06 19:14 
GeneralRe: Transfer of datagrid to another webform Pin
minhpc_bk5-Jul-06 19:54
minhpc_bk5-Jul-06 19:54 
GeneralRe: Transfer of datagrid to another webform [modified] Pin
blurMember5-Jul-06 20:34
blurMember5-Jul-06 20:34 
GeneralRe: Transfer of datagrid to another webform Pin
minhpc_bk5-Jul-06 20:44
minhpc_bk5-Jul-06 20:44 

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.