Click here to Skip to main content
15,898,938 members
Home / Discussions / Web Development
   

Web Development

 
QuestionWhat is a good way to high light text etc? Pin
ProtoBytes18-Jul-09 21:22
ProtoBytes18-Jul-09 21:22 
QuestionHow to create .txt file Pin
udch17-Jul-09 23:59
udch17-Jul-09 23:59 
AnswerRe: How to create .txt file Pin
Abhijit Jana18-Jul-09 0:53
professionalAbhijit Jana18-Jul-09 0:53 
AnswerRe: How to create .txt file Pin
Marc Firth19-Jul-09 22:49
Marc Firth19-Jul-09 22:49 
QuestionHow can i share a variable in different web pages Pin
CoderForEver17-Jul-09 23:27
CoderForEver17-Jul-09 23:27 
AnswerRe: How can i share a variable in different web pages Pin
Marc Firth19-Jul-09 22:56
Marc Firth19-Jul-09 22:56 
GeneralRe: How can i share a variable in different web pages Pin
CoderForEver20-Jul-09 4:00
CoderForEver20-Jul-09 4:00 
GeneralRe: How can i share a variable in different web pages Pin
Marc Firth20-Jul-09 4:08
Marc Firth20-Jul-09 4:08 
QuestionRedirect page when seession expired Pin
trushitshah16-Jul-09 20:18
trushitshah16-Jul-09 20:18 
AnswerRe: Redirect page when seession expired Pin
Christian Graus17-Jul-09 16:23
protectorChristian Graus17-Jul-09 16:23 
AnswerRe: Redirect page when seession expired Pin
Marc Firth19-Jul-09 22:59
Marc Firth19-Jul-09 22:59 
GeneralRe: Redirect page when seession expired Pin
trushitshah19-Jul-09 23:27
trushitshah19-Jul-09 23:27 
GeneralRe: Redirect page when seession expired Pin
Marc Firth19-Jul-09 23:29
Marc Firth19-Jul-09 23:29 
QuestionSOAP CallBack URL Pin
anandkb16-Jul-09 19:42
anandkb16-Jul-09 19:42 
QuestionVWD 2008 Templates Pin
Dalek Dave16-Jul-09 12:09
professionalDalek Dave16-Jul-09 12:09 
QuestionEmailing to our office from a website Pin
Dalek Dave16-Jul-09 4:16
professionalDalek Dave16-Jul-09 4:16 
AnswerRe: Emailing to our office from a website Pin
David Mujica16-Jul-09 4:57
David Mujica16-Jul-09 4:57 
I use code-behind to do my sending of email.

Check this out ...

Imports System.Net.Mail

Private Sub MailIt(ByVal toUser As String, ByVal fromUser As String, ByVal subj As String, ByVal sBody As String)
            Try
                Dim mm As New MailMessage(fromUser, toUser)

                mm.Subject = subj
                mm.Body = sBody
                mm.IsBodyHtml = True

                ' Create the SmtpClient object
                Dim smtp As New SmtpClient

                ' Send the MailMessage (will use the Web.config settings)
                smtp.Send(mm)
            Catch ex As Exception
                'logMessage("dave", ex.Message.ToString)
            End Try

        End Sub

GeneralRe: Emailing to our office from a website Pin
Dalek Dave16-Jul-09 5:58
professionalDalek Dave16-Jul-09 5:58 
GeneralExecute code from an ASP.NET button Pin
David Mujica16-Jul-09 6:18
David Mujica16-Jul-09 6:18 
GeneralRe: Execute code from an ASP.NET button Pin
Dalek Dave16-Jul-09 8:57
professionalDalek Dave16-Jul-09 8:57 
Questionnew flash player screws up cool stuff Pin
ed welch16-Jul-09 1:49
ed welch16-Jul-09 1:49 
QuestionDLL Usage in Web Applications Pin
VikashGohil16-Jul-09 1:17
VikashGohil16-Jul-09 1:17 
AnswerRe: DLL Usage in Web Applications Pin
Abhishek Sur16-Jul-09 4:22
professionalAbhishek Sur16-Jul-09 4:22 
GeneralRe: DLL Usage in Web Applications Pin
VikashGohil17-Jul-09 4:38
VikashGohil17-Jul-09 4:38 
QuestionProblem of Web service calling Pin
mani.thirumalai15-Jul-09 20:27
mani.thirumalai15-Jul-09 20:27 

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.