Search

You searched for the word(s): userid:646676

Matching Posts

  • Re: Trouble when try yo administer my web site in asp.net 2.0

    I think you're trying to access a resource in a mapped network drive where you do not have permissions, you should move the sources files to your local driver or ask your administrator for permissions. ... Hope this works for you....
    Posted to Security (Forum) by CyJacK on 2/12/2007
  • Re: Simple email form?

    Take off the Set statement. objMail = CreateObject("CDONTS.NewMail")
    Posted to Web Forms (Forum) by CyJacK on 12/18/2006
  • Re: How to dynamically Setting the Page's Title in ASP.NET 2.0?

    You can change your title tag from this: <title>here the title</title> to this: <title runat="server" id="pageTitle"></title> now, on your Page_Load (or any other event you want to set the page title): pageTitle.InnerText = "Welcome to " + titleVar; // :P regards.
    Posted to Web Forms (Forum) by CyJacK on 11/26/2006
  • Re: Simple email form?

    sustitute the code for this one (changing the old CDONT.NewMail by CDO.Message): < %@LANGUAGE="VBSCRIPT " CODEPAGE="1252"%> <% Option Explicit %> <% dim answer1, answer2, answer3 '-- Request for the answers answer1 = Request.Form("QAnswers1") answer2 = Request.Form("QAnswers2") answer3 = Request.Form("QAnswers3") dim objMail Set objMail = CreateObject("CDO.Message") objMail.To = " survey@mysurvey.com " objMail.From = " asppage@mysurvey.com " objMail.Subject = "Answer my survey" objMail
    Posted to Web Forms (Forum) by CyJacK on 11/25/2006
  • Re: Simple email form?

    try this, it is asp: < %@LANGUAGE="VBSCRIPT " CODEPAGE="1252"%> <% Option Explicit %> <% dim answer1, answer2, answer3 '-- Request for the answers answer1 = Request.Form("QAnswers1") answer2 = Request.Form("QAnswers2") answer3 = Request.Form("QAnswers3") dim objMail Set objMail = CreateObject("CDONTS.NewMail") objMail.To = " survey@mysurvey.com " objMail.From = " asppage@mysurvey.com " objMail.Subject = "Answer my survey" ' 0 for HTML Format objMail.BodyFormat = "0" objMail.Body =
    Posted to Web Forms (Forum) by CyJacK on 11/24/2006
  • Re: Simple email form?

    do you want an ASP.NET or ASP 3.0 script?
    Posted to Web Forms (Forum) by CyJacK on 11/24/2006
  • Re: Simple email form?

    <% @ Page Language ="C#" %> <% @ Import Namespace ="System.Web.Mail" %> < script runat ="server"> //lets declare some variables to put our answers string answer1, answer2, answer3; protected void submit_Click( object sender, EventArgs e) { answer1 = Request[ "QAnswers1" ]; answer2 = Request[ "QAnswers2" ]; answer3 = Request[ "QAnswers3" ]; sendEmail(); } private void sendEmail() { // To: string strTo = "myemail@mycompany.com" ; //From: string strFrom = "me@asp.net" ; //Subject string
    Posted to Web Forms (Forum) by CyJacK on 11/22/2006
Page 1 of 1 (7 items)