ASP form

I made a simple form. There are 2 text fields (for Name and
E-mail) and 1 text area (for Comments) along with the Submit and
Reset button. When users clicks the Submit button it re-directs
them to another page (the form action is set to 'sent.asp',which is
where they get re-directed after submitting their message).
I don't know how to send the result of the form to my e-mail
address/ inbox using .asp and not .php.
Any help or links to useful tutorials is appreciated!

>I made a simple form. There are 2 text fields (for Name
and E-mail) and 1 text area (for Comments)
>along with the Submit and Reset button.
First of all, get rid of the Reset button. They are evil.
>When users clicks the Submit button it re-directs them to
another page
>(the form action is set to 'sent.asp',which is where they
get re-directed after submitting their message).
Where did you get the sent.asp script? Did it come with
instructions? Most likely it is expecting a hidden form field to
have a specific name for the email address.

Similar Messages

  • Trying to create a XML file from an ASP Form

    I have an ASP form on my website that generates a XML data
    file, but there are a few problems with it. First, when I generate
    the file, it creates a new file every time a user clicks on
    "Submit" and I would like the data to just be appended to a
    particular, existing XML file...how can I append the data to the
    XML file? The code I am currently using is shown below.
    Secondly, I need to nest/repeat certain fields within the XML
    file. Basically, I want the XML file to look like this (I
    simplified the code for ease of writing, so don't bother with the
    syntax):
    <Recipe>
    <RecipeName>
    <SubmittedBy>
    <Ingredients>
    <Amount>
    <Unit>
    <Ingredient>
    <Description>
    <Directions>
    <Recipe>
    <RecipeName>
    etc...
    How would I create a form that would create that type of XML
    file? Think of a MS Access form with linked subforms, but I don't
    want to repeat more data than I have to.
    Any advice or help would be very appreciated!!! Also, if you
    know of a 3-party product that might solve this for me, I am open
    to that also!
    Thanks!!!
    ASP Page Code:

    You may find this article useful
    http://xmlfiles.com/articles/michael/appendxml/default.asp
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "kbeveridge6778" <[email protected]> wrote
    in message
    news:[email protected]...
    >I have an ASP form on my website that generates a XML
    data file, but there
    >are
    > a few problems with it. First, when I generate the file,
    it creates a new
    > file
    > every time a user clicks on "Submit" and I would like
    the data to just be
    > appended to a particular, existing XML file...how can I
    append the data to
    > the
    > XML file? The code I am currently using is shown below.
    >
    > Secondly, I need to nest/repeat certain fields within
    the XML file.
    > Basically, I want the XML file to look like this (I
    simplified the code
    > for
    > ease of writing, so don't bother with the syntax):
    > <Recipe>
    > <RecipeName>
    > <SubmittedBy>
    > <Ingredients>
    > <Amount>
    > <Unit>
    > <Ingredient>
    > <Description>
    > <Directions>
    > <Recipe>
    > <RecipeName>
    > etc...
    > How would I create a form that would create that type of
    XML file? Think
    > of a
    > MS Access form with linked subforms, but I don't want to
    repeat more data
    > than
    > I have to.
    >
    > Any advice or help would be very appreciated!!! Also, if
    you know of a
    > 3-party product that might solve this for me, I am open
    to that also!
    >
    > Thanks!!!
    >
    > ASP Page Code:
    >
    > Function saveXMLData(strPath, strFileName)
    >
    > 'Declare local variables.
    > Dim aXMLDoca
    > Dim aRootNode
    > Dim aFormVar
    > Dim aPI
    > Dim Item
    >
    > 'Create an XMLDOM Object
    > Set aXMLDoca = server.CreateObject("Microsoft.XMLDOM")
    > aXMLDoca.preserveWhiteSpace = True
    >
    >
    > 'Create the root node for the document
    > Set aRootNode = aXMLDoca.createElement("function")
    > aXMLDoca.appendChild aRootNode
    >
    >
    > 'Iterate the Request Object for all form data
    > For Each item in Request.Form
    >
    > 'Do not include the variable if it contains btn
    > If instr(1,item,"btn") = 0 Then
    > Set aFormVar =aXMLDoca.createElement(item)
    > aFormVar.Text = Request.Form(item)
    > aRootNode.appendChild aFormVar
    > End If
    >
    > Next
    >
    >
    > 'Append the processing instruction
    >
    > Set aPI =
    aXMLDoca.createProcessingInstruction("xml","version='1.0'")
    > aXMLDoca.insertBefore aPI, aXMLDoca.childNodes(0)
    >
    >
    > 'Save the XML document.
    > aXMLDoca.save strPath & "\" & strFileName
    >
    >
    > 'Release all references.
    > Set aXMLDoca = Nothing
    > Set aRootNode = Nothing
    > Set aFormVar= Nothing
    > Set item = Nothing
    > Set aPI = Nothing
    > End Function
    >
    > dim strFullFile
    >
    > Function DoesFileExist(ByVal strFullFile)
    > Dim objFSO
    >
    > 'If InStr(strFullFile, ":") = 0 Then
    > 'strFileNam = Server.MapPath(strFullFile)
    > 'End If
    >
    > Set objFSO =
    Server.CreateObject("Scripting.FileSystemObject")
    > DoesFileExist = objFSO.FileExists(strFullFile)
    > Set objFSO = Nothing
    > End Function
    >
    >
    > Const cont_Num=10000
    > Randomize
    > Dim intNumber
    > dim strFile
    > Dim blnYes
    >
    > blnYes=False
    >
    > Do Until blnYes=True
    >
    > intNumber=Int((Cont_Num * Rnd)+1)
    >
    > 'Create a random file name so you don't write over the
    same file
    > strFile="Recipe"& intNumber &".xml"
    >
    > strFullFile="c:\inetpub\wwwroot\xmltest\" & strFile
    >
    > if DoesFileExist(strFullFile)=False then
    > blnYes=True
    > End If
    > Loop
    >
    > ' The page starts here
    > On Error Resume Next
    >
    > ' Save the XML Data
    > SaveXMLData "c:\inetpub\wwwroot\xmltest",strFile
    >

  • Reset .asp form on page load

    I produced an .asp fillable form in DWCS5 using ASP Form 2 Email extension. Worked very well. Problem -- ONLY with IE. When I "submit" the form, I get the "success" page. If I hit the back button on the browser, all the form info is still there. I inserted the "pragma" meta into the <head> and it resolved the problem in all browsers EXCEPT IE. Any suggestions as to how I can force the cache to clear on page load? Or, maybe a way to disable the "back" button on the browser when the success page has appeared?
    Tom

    DelMar wrote:
    > DW8 / PHP / MySQL
    > How can I submit a form when the user enters the page? I
    want to emulate the
    > user selecting the page and clicking the submit button.
    Can this be done
    > easily?
    Perhaps you're not phrasing your question correctly, but what
    you're
    suggesting is nonsense/not necessary. A form is designed for
    user input.
    If you want the form to be submitted when the page loads, the
    user has
    no opportunity to enter any input before it's submitted. If
    you don't
    want any user input, there is no need to submit a form. You
    simply write
    a PHP script that runs automatically when the page loads.
    Forms play no
    role in your scenario.
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • How to track an ASP form

    My friend and I are trying to find a script that enables us
    to track the asp form sent to us with its own specific number. With
    either numbers or letters, so far we have not been able to do
    either. We have a webform on a server, so when somebody fills out
    the form out and when it is sent to us we want the email with the
    information filled out with its own specific number. Please
    help...Thank You

    Hi VLN,
    Use external breakpoint for Debuging ---> keep in mind that both the userid should belong to the same user (user name should be same on portal as well as ECC.60).
    ~BD

  • Error in ASP Form

    Hi
    I have put a very basic .asp form to mail on a contact page
    but when the form is processed, the only info received are the
    labels (i.e. Email Address, Name, Message etc.) but no actual
    content. There is obviously an error in the code somewhere. I'd be
    grateful for some asp wizard to give me a few pointers.
    Thanks
    martin
    The form
    <form action="confirmation.asp" method="post"
    name="YourFormName" id="YourFormName">
    <table>
    <tr>
    <td>Email: </td>
    <td><input type="text" name="Email" size="50"
    /></td>
    </tr>
    <tr>
    <td>First Name: </td>
    <td><input type="text" name="FirstName" size="50"
    /></td>
    </tr>
    <tr>
    <td>Last Name: </td>
    <td><input type="text" name="LastName" size="50"
    /></td>
    </tr>
    <tr>
    <td>Subject: </td>
    <td><input type="text" name="Subject" size="50"
    /></td>
    </tr>
    <tr>
    <td>Message:</td>
    <td><textarea name="Comments" cols="40"
    rows="5"></textarea></td>
    </tr>
    </table>
    <input type="submit" name="Submit" value="Submit Form"
    />
    </form>
    The server Script
    <body><%
    DIM strEmail, strName, strMessage, mail, reply, objMail
    strEmail = request.form("Email")
    strName = request.form("Name")
    strMessage = request.form("Message")
    mail = "[email protected]"
    reply = request.form("Email")
    Set objMail = Server.CreateObject("CDONTS.NewMail")
    objMail.From = reply
    objMail.Subject = "Contact from website"
    objMail.To = mail
    objMail.Body = "Email: " & strEmail & vbCrLf & _
    "Name: " & strName & vbCrLf & _
    "Message: " & vbCrLf & strMessage
    objMail.Send
    Set objMail = nothing
    %>
    <P>
    <%
    strName = request.form("Name")
    Response.Write strName
    %>
    </P>
    <div align="center"><P class="thankyou">Thank you
    for your email. <br/>
    We will be in touch shortly.</P>
    </div>

    Oh yea, missed that; stated element name and requested don't
    match.
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > <body><%
    > DIM strEmail, strName, strMessage, mail, reply, objMail
    > strEmail = request.form("Email")
    > strName = request.form("FirstName") & " " &
    request.form("LastName")
    > strMessage = request.form("Comments")
    >
    > mail = "[email protected]"
    > reply = request.form("Email")
    > Set objMail = Server.CreateObject("CDONTS.NewMail")
    > objMail.From = reply
    > objMail.Subject = "Contact from website" & "--"
    & request.form("Subject")
    > objMail.To = mail
    > objMail.Body = "Email: " & strEmail & vbCrLf
    > "Name: " & strName & vbCrLf & _
    > "Message: " & vbCrLf & strMessage
    >
    > objMail.Send
    > Set objMail = nothing
    > %>
    >
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "martinstan" <[email protected]> wrote
    in message
    > news:[email protected]...
    >> Hi
    >> I have put a very basic .asp form to mail on a
    contact page but when the
    >> form
    >> is processed, the only info received are the labels
    (i.e. Email Address,
    >> Name,
    >> Message etc.) but no actual content. There is
    obviously an error in the
    >> code
    >> somewhere. I'd be grateful for some asp wizard to
    give me a few pointers.
    >> Thanks
    >> martin
    >>
    >> The form
    >>
    >> <form action="confirmation.asp" method="post"
    name="YourFormName"
    >> id="YourFormName">
    >> <table>
    >> <tr>
    >> <td>Email: </td>
    >> <td><input type="text" name="Email"
    size="50" /></td>
    >> </tr>
    >> <tr>
    >> <td>First Name: </td>
    >> <td><input type="text" name="FirstName"
    size="50" /></td>
    >> </tr>
    >> <tr>
    >> <td>Last Name: </td>
    >> <td><input type="text" name="LastName"
    size="50" /></td>
    >> </tr>
    >> <tr>
    >> <td>Subject: </td>
    >> <td><input type="text" name="Subject"
    size="50" /></td>
    >> </tr>
    >> <tr>
    >> <td>Message:</td>
    >> <td><textarea name="Comments" cols="40"
    rows="5"></textarea></td>
    >> </tr>
    >> </table>
    >> <input type="submit" name="Submit" value="Submit
    Form" />
    >> </form>
    >>
    >> The server Script
    >>
    >> <body><%
    >> DIM strEmail, strName, strMessage, mail, reply,
    objMail
    >> strEmail = request.form("Email")
    >> strName = request.form("Name")
    >> strMessage = request.form("Message")
    >>
    >> mail = "[email protected]"
    >> reply = request.form("Email")
    >> Set objMail = Server.CreateObject("CDONTS.NewMail")
    >> objMail.From = reply
    >> objMail.Subject = "Contact from website"
    >> objMail.To = mail
    >> objMail.Body = "Email: " & strEmail & vbCrLf
    >> "Name: " & strName & vbCrLf & _
    >> "Message: " & vbCrLf & strMessage
    >>
    >> objMail.Send
    >> Set objMail = nothing
    >> %>
    >>
    >> <P>
    >> <%
    >> strName = request.form("Name")
    >> Response.Write strName
    >> %>
    >> </P>
    >>
    >> <div align="center"><P
    class="thankyou">Thank you for your email. <br/>
    >> We will be in touch shortly.</P>
    >> </div>
    >>
    >
    >

  • Problems installing ASP Form Captcha plugin

    Hi,
    I have just purchased and downloaded this plugin for Dreamweaver www.hotdreamweaver.com/asp-form-captcha . I am running DW MX.
    When I try to run the installation I get the following error message:
    'This extension package is not applicable with this version of Macromedia Extension Manager, you need a newer version of the package or the Extension Manager. Please visit the Macromedia Exchange website to obtain a copy. The extension will not be installed.'
    I cannot find anything of assistance and would appreciate it enormously if anyone could kindly point me in the right direction with this.
    Thanks
    Graham

    Sorry,
    found it, thanks anyway.
    Graham

  • Training: ASP/Forms/Database

    Where do I begin? I am a Dreamweaver user (approx 5 years). Now need to learn how to connect my site using DW to a SQL Database. Need an overall understanding/overview of asp/forms/database. The site I am working on has forms created in DW using ASP. How to get the data captured in the form to transfer to the database. Thanks much.

    Was this a bump?
    I also had to re-learn...I started using DW back when it was a Macromedia product (around 1998 and later) and the web standard was still static HTML and XHTML. Needless to say, those were the extent of my language repertoire (looked at ASP at the time but didn't feel it was necessary). I left the web design scene somewhere around the time MX2004 came out and had moved on to other things but stayed using the entire Macromedia design series to this date (I currently use CS5).
    I had recently been asked to help out with a website and it was suggested that it be a dynamic site with php and a mysql database. I wanted to hold on to my geek badge so I started learning php and mysql (still learning). I found that the best way to learn these languages is W3Schools. That is an awesome reference and education site and they've been around for 10+ years. I used W3Schools and jumped from php/sql forum to php/sql forum for help with specific problems I ran into with coding. Forums are indispensable for getting the help you need but you should be looking at language-speciic forums (php,ASP,sql,CF...). Fortunately php and mysql are relatively easy languages to learn and if you have any web design background, you should be able to self-learn with little difficulty. 
    Good luck.

  • Internet Explorer Error while running VS2005 asp form from devt envt.

    Compilation Error
    Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
    Compiler Error Message: BC30560: 'OracleDataAdapter' is ambiguous in the namespace 'Oracle.DataAccess.Client'.
    Source Error:
    Line 22405: Inherits Global.System.ComponentModel.Component
    Line 22406:
    Line 22407: Private WithEvents _adapter As Global.Oracle.DataAccess.Client.OracleDataAdapter
    Line 22408:
    Line 22409: Private _connection As Global.Oracle.DataAccess.Client.OracleConnection
    Source File: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\web_appl\2ace2c5c\69644e29\App_Code.ecqjnnlx.5.vb Line: 22407

    you form is running in the browser with the help of Jinitiator which is nothing but A JavaInitiator.
    as your machine files located in the System32 folder of your windows directory as .DLL. are not able to communicate with the Jinitiator DLL Files being used
    for the JRE.
    The Form is sending the request to the internet explorer to run the object of applet ttype which is nothing but the Oracle Java Applet named as OC4J(Oracle Container for Java)
    if your form is running or trying to run and hangged due to some problems and your machine got abnormal shutdown then at that time the DLL fiels communicating each other may got corrupt
    due to any abmormal shutdown of your machine...
    the problem is there with the Java Side...
    There is no solution other then reloading the JRE and Jinitiator as per the error being thrown by your machine

  • Passing asp form data to a .jsp string

    Hello and thanks in advance for any help.
    I would like to pass form information that comes from a standard form into a URL string as follows:
    "http://ui.constantcontact.com/roving/wdk/API_AddSiteVisitor.jsp?loginName=benefitevents&loginPassword=connoisseur&ea=[email protected]&ic=test&first_name=Joe&last_name=smith"
    I would then like to pass that string forward to its final destination.
    Some more info.
    Form data is collected on "register.asp" and then passed to "register1.asp" using form method="post" action="register1.asp".
    On register1.asp the form info is processed and delivered to the SQL database.
    I am only a beginner with the code (it was done by a programmer who is mostly absent when needed now).
    So, I need to know as much of the following as you can help with (in descending priority):
    1. How to pass the .jsp string forward assuming the proper variables have been passed in the asp code.
    2. Where should this command live, in register.asp or register1.asp?
    3. How to correctly insert the variables in the URL string from form (correct syntax using asp).
    As may be obvious this is for one registrant at a time. The object is deliver the registration information to my SQL database and, at the same time, pass some info to a Constant Contact list. This allows me to integrate Constant Contact into my services to clients seamlessly.
    Thank you, hope this was not too much info!
    Jim

    Javascript is not the same as Java.
    There are JS related forums at webdeveloper.com. But I would rethink about the JS approach. It should also be able with ASP and I would prefer that.

  • ASP form reads from access, can't write

    I am a complete ASP noob. I use ColdFusion and ASP has proven
    to be a pain I wish I would have never touched. I need to add a
    simple contact form to the end of an ASP page to capture basic
    info.
    When the page loads, all is well. In fact, the page is able
    to perform a query of the database and get some list options to
    populate the form. Once I complete the form and hit submit, it
    posts the form and generates an internal server error 500.
    I built the form using the built in Dreamweaver actions. It
    is set up to be an ASP VB file, though I get errors with ASP JS. I
    think the server is configured right, since the page loads and
    performs the query. I could be wrong. The database is Access and I
    have the permissions set for IIS to have the ability to write to
    the database.
    What do I need to look for?
    Thanks in advance for any advice!!!

    See if this helps:
    http://www.fordwebs.com/mx-asp/index.asp
    http://www.fordwebs.com/mx-asp/feedback.asp
    Ken Ford
    Adobe Community Expert
    Fordwebs, LLC
    http://www.fordwebs.com
    "dnaguy" <[email protected]> wrote in
    message news:esp3q7$ip8$[email protected]..
    >I am a complete ASP noob. I use ColdFusion and ASP has
    proven to be a pain I
    > wish I would have never touched. I need to add a simple
    contact form to the
    > end of an ASP page to capture basic info.
    >
    > When the page loads, all is well. In fact, the page is
    able to perform a
    > query of the database and get some list options to
    populate the form. Once I
    > complete the form and hit submit, it posts the form and
    generates an internal
    > server error 500.
    >
    > I built the form using the built in Dreamweaver actions.
    It is set up to be
    > an ASP VB file, though I get errors with ASP JS. I think
    the server is
    > configured right, since the page loads and performs the
    query. I could be
    > wrong. The database is Access and I have the permissions
    set for IIS to have
    > the ability to write to the database.
    >
    > What do I need to look for?
    >
    > Thanks in advance for any advice!!!
    >

  • How to Change ASP form Layout?

    Hi,
    I am trying to create an Asp.net form. but all the buttons are stuck with each other I cannot move them simple by draging them and put them any where on the form where I want, in the design pane. How will i change this layout?
    Azwar

    Posting in a sql server forum probably isn't much help.  Try the ASP forums
    ASP forums

  • ASP form for attachments

    Help! i'm going crazy. I need to know how to code a form that allows my
    users to upload files either thru my godaddy hosted site or directly to my email.
    can anyone help? need the html page code and the asp code that works with godaddy. thanks.

    Your better off using php, there are a lot of tutorials that
    are simple to use and plenty of resources to help you put this
    together. Try starting here:
    http://www.kirupa.com/developer/actionscript/flash_php_email.htm

  • .ASP form (JMail) - sending form twice to email

    I've created a Jmail form (
    http://www.rbc-furniture.co.uk/contact.asp
    ) everything is working perfectly although when the message is sent
    it delivers to the recipient twice - i have probably got a field in
    the code somewhere, one that doesn't need to be there but i can't
    work out which / where it is?!
    <%
    Name = Request.Form("name")
    SenderEmail = Request.Form("email")
    Subject = "Enquiry from RBC website " &
    Request.Form("subject")
    Recipient = Request.Form("recipient")
    Body = Request.Form("body")
    Dim Jmail
    set Jmail = Server.CreateOBject( "JMail.Message" )
    JMail.From = Senderemail
    JMail.Subject = Subject
    JMail.AddRecipient Recipient
    JMail.Body = Body & vbcrlf
    JMail.Body = JMail.Body & "Enquiry from Restall Brown
    & Clennell website:" & vbcrlf & vbcrlf
    JMail.Body = JMail.Body & Request.Form ("enquiry") &
    vbcrlf & vbcrlf
    JMail.Body = JMail.Body & "Contact information:" &
    vbcrlf & vbcrlf
    JMail.Body = JMail.Body & "Name:" & vbcrlf
    JMail.Body = JMail.Body & Request.Form ("name-field")
    & vbcrlf & vbcrlf
    JMail.Body = JMail.Body & "Telephone:" & vbcrlf
    JMail.Body = JMail.Body & Request.Form ("telephone")
    & vbcrlf & vbcrlf
    JMail.Body = JMail.Body & "Email:" & vbcrlf
    JMail.Body = JMail.Body & Request.Form ("email-address")
    & vbcrlf & vbcrlf
    JMail.Body = JMail.Body & "Profession:" & vbcrlf
    JMail.Body = JMail.Body & Request.Form ("profession")
    JMail.AddHeader "Originating-IP",
    Request.ServerVariables("REMOTE_ADDR")
    JMail.Logging = True
    Jmail.Send "localhost" 'localhost sends thru your SMTP server
    if not Jmail.Send( "localhost" ) then
    Response.write "<pre>" & msg.log &
    "</pre>"
    else
    Response.write "Message sent succesfully!"
    end if
    %>
    Any help much appreciated.

    Here's a link to a posting elsewhere some had had that may provide some useful info (?)
    http://board.flashkit.com/board/showthread.php?t=684031

  • ASP Form Problem

    I need to create a form that is a single form page (i.e not
    having different parts depending on differnt selections on
    different pages) that gives the user different options depening on
    previous selections.
    Im using ASP Mailer as my form script.
    So, the first option is to select an office from a dropdown -
    depending on the chosen office, the form is sent to a specfic email
    address. (A different recipient per selection made)
    The second option is the thype of enquiry - this can be a
    choice of 3, and depending on the answer generates one of 3
    different enquiry forms for completion below.
    Is any of this possible, and how?
    Thanks
    John

    >Heres a link to the form Ive been requested to redevelop.
    Yes, the process should be streamlined. I would create a
    single form with all fields and then use the 'Enquiring About'
    field to toggle the visibiity of the relevent fields. The form
    processing script can then assemble the correct fields for the
    email based on the value of the Equiring About field. And the
    recipient of the field would be based on their office selection. So
    you can do it all with 1 step and 1 form rather than 3.

  • ASP Form Email Query

    Hi
    I am using the code below to send form information as an
    email.
    All works well, but i now need to add a value to the body of
    the email from
    a recordset.
    The ActionId is the recordset record i need in the email
    body.
    It is sent with the email, but is repeated
    ActionID: 237
    actionee: 237 Mr Blobby
    NC_Details: 237 b
    As you can see, the ActionID is repeated on each line and i
    only want it on
    the first, as in ActionID: 237
    Hope someone can help me out here - Thanks
    Please see my code below:
    <%
    Dim BodyString
    Dim objCDO
    Dim RedirectURL
    Dim FormFields
    Dim arrFormFields
    DIM varToEmail
    DIM cc
    FormFields = "ActionID~actionee~NC_Details"
    If FormFields <> "" Then
    arrFormFields = split(FormFields,"~")
    End If
    varToEmail = (RSdirectors.Fields.Item("Emailaddress").Value)
    cc = (RSmanager.Fields.Item("Emailaddress").Value)
    Set objCDO = Server.CreateObject("CDONTS.NewMail")
    objCDO.From = "[email protected]"
    objCDO.To = varToEmail
    objCDO.Cc = cc
    objCDO.Bcc = ""
    objCDO.Subject = "A New Posting"
    BodyString = Replace("","~",chr(13) & chr(10) )&
    chr(13)
    If FormFields <> "" Then
    For Each item In arrFormFields
    BodyString = BodyString & item & ": " & ActionID
    & Request.Form(item) &
    chr(13)
    Next
    End If
    objCDO.Body = BodyString
    objCDO.BodyFormat = 1
    objCDO.MailFormat = 1
    objCDO.Send
    Set objCDO = Nothing
    RedirectURL = ""
    If RedirectURL <> "" then
    If Request.QueryString <> "" Then
    response.redirect(RedirectURL & "?" &
    Request.QueryString)
    else
    response.redirect(RedirectURL)
    end If
    end if
    %>

    yeah the page is all in .asp
    i believe the server dosnt support php it supports asp
    and i think the database is sql2000 im not sure right now i havnt done anything with that yet
    thats also why i want the form to go straight to email
    i cant access the database cause im using a mac and i cant access it from a mac cause i need a windows to do it cause the server is something only windows can access, something like tha i really dont have much experience with that yet. Theyre getting me a new windows computer so i canw ork with them but they havnt yet.
    I have found various sites but theyre usually pre made forms or they put a link to them or something
    besides i cant really place the things as i want and they look ugly.
    plus its a university and the forms will probably have important information that i really wouldnt want it passing through some site first
    or available to them, i really didnt see it THAT complicated by what i have seen in google of wayst o do it,
    i kind of didnt get the beginning of starting to do it in dreamweaver with the settings window the insert form area thing pops up
    and im not sure how to make the script i have understood i need to make the form work sending it to the email.

Maybe you are looking for

  • RIM needs to look at the Playbook registration process and followon support

    First, this post is NOT about the pros/cons of the Playbook. Second, it is NOT about the quality of support I received, which was very good. It's about the Playbook registration and the need for support during or right after that initial registration

  • Tracing a vendor based on an inbound delivery

    Hello Experts, Is it possible to trace the Vendor number from an inbound delivery document? Helpful answers will be rewarded for sure.

  • How to make my exported movie bigger?

    When I export my finished project as a QuickTime, the video canvas becomes REALLY small for some reason. Also, there is a huge black border around the entire video. Is there a format that will prevent that?

  • Network Settings for Verizon DSL

    I have some basic questions about network preferences for DSL. I spent the day on the phone with Verizon yesterday trying to figure out how to configure settings on my modem, and in the process, had my connection broken and fixed four different times

  • Reg. Jurisdiction code for procedure TAXINJ should be 9 characters long

    Dear Experts I am getting the follwing error when I create purchase order. " Jurisdiction code for procedure TAXINJ should be 9 characters long Message no. FC279 Diagnosis The tax jurisdiction code you have entered does not correspond to the predefin