Click here to Skip to main content
15,888,111 members
Home / Discussions / Web Development
   

Web Development

 
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 
AnswerRe: Problem of Web service calling Pin
Marc Firth15-Jul-09 22:10
Marc Firth15-Jul-09 22:10 
GeneralRe: Problem of Web service calling Pin
mani.thirumalai15-Jul-09 23:57
mani.thirumalai15-Jul-09 23:57 
GeneralRe: Problem of Web service calling Pin
Marc Firth16-Jul-09 0:21
Marc Firth16-Jul-09 0:21 
GeneralIE8 font error Pin
krishna.kommula15-Jul-09 18:50
krishna.kommula15-Jul-09 18:50 
GeneralRe: IE8 font error Pin
Marc Firth15-Jul-09 22:07
Marc Firth15-Jul-09 22:07 
GeneralRe: IE8 font error Pin
dbkman1017-Jul-09 15:44
dbkman1017-Jul-09 15:44 
QuestionInserting Data Into SQL Server Database Pin
pstyles115-Jul-09 2:42
pstyles115-Jul-09 2:42 
AnswerRe: Inserting Data Into SQL Server Database Pin
DoctorMick15-Jul-09 5:24
DoctorMick15-Jul-09 5:24 
GeneralRe: Inserting Data Into SQL Server Database Pin
pstyles115-Jul-09 5:31
pstyles115-Jul-09 5:31 

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.