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.

Similar Messages

  • .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

  • 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

  • Max amount of forms emailed

    Hey,
    I am creating a form in indesign to sign up for an event. Now that designing isnt the real problem but this is:
    For the event(on multiple day's) there is a limited number of sign up.
    Is there some kind of function to verify if that number is reached?
    So you click send, and then it just send if there are less than 350 forms emailed, or if there are more it shows an error message that that day is full?
    Hope you guy's van help.
    Rob

    Personally, I would have the form be a fill-out, print and snail-mail or fax form. Have the URL on the form for people to go to an on-line version of the form.
    Emailing forms or form data can be fraught with problems. So many people these days use something other than what would be considered a "default email" application. Instead opting for browser-based emailing.
    You can have  a button that pushes people to a web site for on-line registrations. Use PHP or ASP.net to process the form. Have a simple shopping cart system to deal with quantities of registrations for any given event.
    You can have the Acrobat form data feed a PayPal shopping basket upon a submit action as well. Depending on how you set up the PP account, it can keep simple "inventory" (in your case, seats at an event) so you cannot overbook.
    But using Acro forms for such direct "booking" isn't something I recommend. Once people click that submit butting, whether they are sending XML or whatever data type vial email, or simply pushing them to an on-line form, they will get a security warning about whether they really want to do whichever action you've scripted.
    Just my opinion about "live" Acro forms.
    Take care, Mike

  • Pass Values to Edit Form thru Query String and Save in List

    I have developed a custom Edit form from SharePoint Designer and I am passing values thru Query String as below;
    http://<>/cli/acc/Lists/GIInfo/testEdit.aspx?ID=262&com=POD_Send
    And, user supposed to save the form directly without changing the values came thru Query String as below. 
    Now, issue is, when user saves the form, values is not getting saved. It saves when we change the value in text box or when we do a text change event in form. Becasue data binding says Text Change even in data binding property.
    __designer:bind="{ddwrt:DataBind('u',concat('ff22',$Pos),'Text','TextChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Actions')}"/>
    Kindly guide me what is the issue, or correct approach to do that? I want to pass values to Edit Form thru Query string and save in List without changing those.
    -Rajesh A.

    I know this is late, but i found a very good solution on this post and credit goes to the author.
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/4be1be38-0663-4b80-8f28-45f38f98f9d0/sharepoint-designer-2010-custom-newformaspx-data-in-textbox-fields-dont-save-on-submission?forum=sharepointcustomizationprevious
    The issue was resolved by changing the textbox values,
    <asp:TextBox runat="server" id="ff1{$Pos}" Name="Title" Text="" Value="{$Destination}"  __designer:bind="{ddwrt:DataBind('i',concat('ff1',$Pos),'Text','TextChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Title')}">
    instead of
    <asp:TextBox runat="server" id="ff1{$Pos}" Name="Title" Text="{$Destination}"  __designer:bind="{ddwrt:DataBind('i',concat('ff1',$Pos),'Text','TextChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Title')}">

  • I only see Web Forms & Email in Site Manager

    Why do I only see Web Forms & Email settings in the Site Manager for a WebMarketing Site? Where did everything else go? I'm trying to upload a pdf file and that function is gone in BC.

    Hi,
    If you have published the site via Muse, Please try this
    In Admin Panel, on your Right Hand side top, Mouse over on your name and Go to "My Details". You will see a check box "Enable online content editing". Check this box, Click save and logout. Login again, and goto site manager, you will see some more options like File manager
    Please let me know if you have any other query.

  • 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>
    >>
    >
    >

  • I requested a repair, but there was an error after clicking the button with my credit card info. I was still charged, but the form email I received the next day had incorrect info about my iPod Touch problem. How can I contact CS w/o paying $19?!

    My iPod Touch battery is not working. I requested a repair through the Apple Support. On the final page, when I clicked the button that puts the info through with your credit card number, the resulting page gave an error (I wish I'd have saved it!). Anyhow, I checked my credit card and it was charged, so I assumed the repair request went through. The next day I received a form email saying my problem was with "Sync with iTunes (Not iCloud) - Data Backup/Migration (not iCloud)" instead of the battery repair. It also says for iPod customers, to send your iPod to Apple - but I had requested the "iPod Coffin" to be mailed to me so I could send it back. Obviously there was an error between the request and what was received, so I'd like to ask Customer Service about it. However, I can't find a way to contact them. When I replied to that form email, I recieved an automated reply saying emails there were not read. Anything online asks me to pay $19 and I don't have the correct issues to request an exception. The closest store is over an hour away or I'd simply go there to ask. What can I do?! Any suggestions you have are much appreciated. Thank you!
    PS - The form email also says if I wait 10 days the repair request will be canceled. Does this mean my credit card will be refunded for the $85 battery replacement charge if it is canceled automatically?

    Thanks, but I've been on the phone with AppleCare US (where I am and live) and AppleCare UK. They continue bouncing me back and forth without helping resolve the problem.
    Perhaps someones knows how to further escalate the issue at Apple?

  • Purchase Order form in Query only mode for some users

    Hi All,
    I want to make the Purchase Orders form as query only for a single user. I tried by giving 'Query_only=Yes' in the parameters section. I am getting 'FRM-04151: You cannot query records here' message more than 10 time. I know we get this message and this is applicable to all the users. But this message is comming more than 10 times.
    Is there anyway that I can restrict the Query only mode to a single user and please suggest about the message also.
    Thanks in Advance,
    Naresh

    Naresh,
    Since you want to achieve this for one user only, I would suggest you create a new function/menu/responsibility and assign this responsibility to the user.
    Note: 400380.1 - How To Create a QUERY-ONLY FORM
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=400380.1
    For the FRM error, please review the following document.
    Note: 116074.1 - ACCESS LEVEL - REVIEW ONLY - PO
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=116074.1
    Regards,
    Hussein

  • Purchase Orders form in Query Only mode for a single user

    Hi All,
    I want to make the Purchase Orders form as query only for a single user. I tried by giving 'Query_only=Yes' in the parameters section. I am getting 'FRM-04151: You cannot query records here' message more than 10 time. I know we get this message and this is applicable to all the users. But this message is comming more than 10 times.
    Is there anyway that I can restrict the Query only mode to a single user and please suggest about the message also.
    Thanks in Advance,
    Naresh

    Please post this question here: OA Framework
    There are so many special conditions and restrictions for E-Biz Suite that this forum is not the right place to ask these questions. The Apps forum at this location is the right place.

  • How to put the form in Query mode

    Hello
    Please let me know how to put the form or block in Query mode , so that when i run the form it should be in Query mode . I have seen properties of SET_FORM_PROPERTY and SET_BLOCK_PROPERTY but cannot find one
    Thanks

    QUERY mode? Did you mean, that you can only QUERY without changing data.
    This is the QUERY-ONLY-mode, which can be started e.g. call_form
    this is the help for that topic:
    PROCEDURE CALL_FORM
    (formmodule_name VARCHAR2,
    display NUMBER,
    switch_menu NUMBER,
    query_mode NUMBER,
    data_mode NUMBER,
    paramlist_name VARCHAR2);
    query_mode     
    NO_QUERY_ONLY (The default.) Form Builder will run the indicated form in normal mode, allowing the end user to perform inserts, updates, and deletes from within the called form.
    QUERY_ONLY Form Builder will run the indicated form in query-only mode, allowing the end user to query, but not to insert, update, or delete records.

  • 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
    >

  • Open form in query mode

    I want to be able to open a form in query mode - is there any way to set this?
    I am using Designer and Headstart.
    Thanks

    Hi Cathy,
    You can do this. See the help topic: About the startup query mode of generated forms.
    Rgds
    Susan
    Oracle Designer Product Management

  • How do I get and pass Master-Detail rowid to another form in query mode?

    I am trying to get the rowid of my master record passed to
    another form in query mode. This is necessary because, I need to
    have a way to show other detail tables for my master record. I
    have been successful in calling the other forms, but only if I
    hard code the rowid(or Primary Key).
    Ultimately a "Tabbed" HTML table for each supporting detail
    table that I have would be perfect. Any help would be greatly
    appreciated. Thanks.

    correct me if I am wrong, is this a 9iAS (Application Server)
    related question? This forum is for 9iAS only.
    Regards,
    --Tao

Maybe you are looking for

  • How do I replace image color with an exact html color code?

    I simply want to change the color of a small pic to an existing html color code, 3399CC.  The pic is very simple, and only has one color.  In Photoshop CS4, I go to:  Image -> Adjustments -> Replace Color.  For the new replacement color, when I type

  • Reading Data From XML File to SQL Tables.

    I Have XML of this type <empdept> <employees_marks> <emp_id>1</emp_id> <DIVISION_ID>BUS</DIVISION_ID> <JOB_ID>PRE</JOB_ID> <FIRST_NAME>SMITH</FIRST_NAME> <LAST_NAME>JAMES</LAST_NAME> <salary>10000</salary> </employees_marks> <dept> <dept_details> <de

  • I have tried to transfer Mail from iMac to Macbook pro. It isn´t functioning, the program always hang up.

    I have tried to transfer Mail from iMac to Macbook pro. It isn´t functioning, the program always hang up. Mac OS 10.9.4.

  • Can't switch email back?

    I have my phone protected under the Geek Squad replacement warranty. In order to send your phone in, you need to turn off Find My iPhone. Since my screen was broken to the point where it couldn't be used, I had to use iCloud.com. The verification ema

  • Blank events after time machine restore

    After a restore from Time Machine,  Some events have only the default "palm tree" image.  Opening the event shows no photos.  Ive gone through all the steps to rebuild the thumbnails and library etc with no affect. I also use Aperture and I know they