IWeb - publishing a pdf form

Howdy,
How do I publish a pdf form on iWeb so that visitors can fill it and return it to me?
thanx
pierre

Unfortunately, it is quite complex to be able to do this with a pdf form and you need to alter code.
It depends what you want to do though?
If you want to make a pdf form downloadable in iWeb, then you can. You can either go to Inspector and create a hyperlink to the file and when someone clicks on this link, the pdf will open. The other way is to Zip or Compress your pdf file and then link to that through Inspector and hyperlink and then when someone clicks the link, the document will be downloaded and they will be able to complete the form and send it to you in the post, or scan it and e-mail it to you completed.
When you say form, is it this that you want or a Contact/Feedback form that people fill in on your site, with the details e-mailed to you?
If so, then go to somewhere like Bravenet, Freedback or Wufoo and create your own form online and complete the option to have details e-mailed to you. When you have finished the form, copy the code and then paste it to the HTML snippet in iWeb and click Apply and you have your form.

Similar Messages

  • Will iWeb support interactive PDF forms?

    I need to put interactive PDF forms on my web site. Does anyone know if this can be done on iWeb and if so how?

    All you do is have the pdf on your desktop and make a link from iWeb to the file - so on the page you want it in iWeb, type in some text and then Hyperlink your text from the Inspector and Hyperlink to a file - find that file on your desktop and that will be hyperlinked.
    When you publish all hyperlinked files are uploaded too. When someone clicks on the link the pdf document will open up in pdf reader if they have it and they can then do whatever they wish.

  • Lost being able to publish with PDF.

    My projects, Elements 11, have all worked great for me when published in PDF form.  Now I find that I can NOT publish in PDF.  It asks for me to verify with the number sent to me via email.  Yet even though it has my email address correct, I never get one.  So I can not get past that point. 
    I do not use OutLook. I use Thunderbird.  So I tried to load OutLook to try to get past the problem.  I don't have MS Office on this laptop.  So I can't load OutLook.
    I keep hitting brick walls AND I need it in PDF in a few days for a presentation.  I was counting on it working and spent a month doing the slide project. 
    Please HELP, thanks,
    Bob [email protected]

    gm ATR,
    Yes I am using Adobe Premiere Elements 11 for sure.
    I am in the Organizer.  Upper right is Create and Share.  I am trying to
    use the Share and the 13th one down is PDF.
    I select the file on the left that I want and drag it into the space on
    the far right where it says to put it.
    Then I follow the work flow.  First I name the file.  Then I have
    inputted my email addresses, where I don't remember, but they show up in
    the select Recipients (Optional):     And I have tried it without
    selecting any recipients.  It does the same thing next no matter what
    I do.
    Then NEXT.   That is when the box comes up telling me that Adobe has
    sent me an email with verification numbers in it.  I never get that
    email.  And yes, I've checked SPAM.  I found some emails there that were
    not spam, but not that particular one.
    That is my "brick wall" now.  I am so very frustrated.
    I've used PDF to create the file I use.  It allows me to use it on
    anyone's PC/laptop, and I can advance at my own speed, go backwards, etc
    all without the "slide show" being in control and going at its speed.
    I have published my presentation in a format that will show at 5 secs
    per slide and I can increase or decrease the speed.  But I can NOT go
    back without going back to the beginning each time. With 500 slides,
    that does NOT work.
    I can not advance forward,  I have to wait for the slideshow to do its
    thing and I can only pause.
    I have some movies to show inside the presentation so I have to mark the
    spots on my laptop screen with a grease pencil and get the moving dot
    and drag it to that spot after showing the movie.  That is sloppy.
    Thanks for trying to help me.  I need a format where I have control and
    can stop, advance, backup, etc. without the "recorded speed" being in
    control.
    thanks.
    Bob Hardie
    [email protected]
    and the beat goes onnnnnn!
    Di-dah, di-dah-dit.
    Additional Info:
    Retired RF Broadcasting Engineer of over 50 years.
    Society of Broadcast Engineers Lifetime Member and Lifetime Certified.
    Served in military 1962-1968.
    My last DXpedition was 3DA0ET in November of 2013.
    See  SwaziDX.ORG/team
    Note, I have returned from that successful DXpedition.
    Over 30,000 Q's were made.
    Plus the additional Q's in the 2013 CQWW CW Contest.
    I was told that we totaled close to 12 million points.
    Calls held:
    A25UQ Botswana-V31UQ Belize-VP2EEU Anguila-ZF2UQ Grand Cayman,
    VP2MUQ Montserrat and HP0/W5UQ/MM/2 Carnival Cruise Ship.
    And now, 3DA0ET.
    See QRZ.com for accurate info on W5UQ.  Also, see W5UQ.com

  • Published pdf form is unable to connect with database

    Hi Guys!
    I have created a PDF form using Adobe Live Cycle Designer which have some text fields namely RECORD and NAME. I have connected this form with a Database. When I enter a record in the RECORD number field the NAME field of this form has been populated with the help of XFA Script which is written on the exit event of the RECORD text field. When we publish this form, a new interactive PDF is created which works fine and populates the NAME field from the an SQL database but when I access this PDF form (which is located on a shared location) from some another location (not on the same machine where i designed this form) it is unable to connect to the database and does not work as expected.
    I think there is some thing i am missing for the database connectivity.
    If any body on this forum can help me out.
    thanks
    Here is the Script for the above form which i used to populate the NAME FIELD on the basis of enetered RECORD number.
    ----- Document.Page1.txt_MRN::exit: - (JavaScript, client) -----------------------------------------
    /* This dropdown list object will populate two columns with data from a data connection.
    sDataConnectionName - name of the data connection to get the data from.  Note the data connection will appear in the Data View.
    sColHiddenValue  - this is the hidden value column of the dropdown.  Specify the table column name used for populating.
    sColDisplayText  - this is the display text column of the dropdown.  Specify the table column name used for populating.
    These variables must be assigned for this script to run correctly.  Replace <value> with the correct value.
    var sDataConnectionName = "DataSource";  // example - var sDataConnectionName = "MyDataConnection";
    var sColHiddenValue  = "RecordNum";   // example - var sColHiddenValue = "MyIndexValue";
    var sColDisplayText  = "Name";   // example - var sColDisplayText = "MyDescription"
    // Search for sourceSet node which matchs the DataConnection name
    var nIndex = 0;
    while(xfa.sourceSet.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    //var oDB = xfa.sourceSet.nodes.item(nIndex);
    var oDB = xfa.sourceSet.nodes.item(nIndex).clone(1);
    oDB.open();
    oDB.first();
    // Search node with the class name "command"
    var nDBIndex = 0;
    while(oDB.nodes.item(nDBIndex).className != "command")
    nDBIndex++;
    // Backup the original settings before assigning BOF and EOF to stay
    var sBOFBackup = oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("bofAction");
    var sEOFBackup = oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("eofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayBOF", "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayEOF", "eofAction");
    // Clear the list
    this.clearItems();
    // Search for the record node with the matching Data Connection name
    nIndex = 0;
    while(xfa.record.nodes.item(nIndex).name != sDataConnectionName)
    nIndex++;
    var oRecord = xfa.record.nodes.item(nIndex);
    // Find the value node
    var oValueNode   = null;
    var oTextNode   =  null;
    var sRecordNum  =  $.rawValue;
    for(var nColIndex = 0; nColIndex < oRecord.nodes.length; nColIndex++)
    if(oRecord.nodes.item(nColIndex).name == sColHiddenValue)
      oValueNode = oRecord.nodes.item(nColIndex);
    else if(oRecord.nodes.item(nColIndex).name == sColDisplayText)
      oTextNode = oRecord.nodes.item(nColIndex);
    var found= 0;
    while(!oDB.isEOF())
    if (oValueNode.value== sRecordNum)
      txt_FirstName.rawValue = oTextNode.value;
      txt_LastName.rawValue = oTextNode.value;
      found = 1;
      break;
      //this.addItem(oTextNode.value, oValueNode.value);
       oDB.next();
       if (found == 0)
        txt_FirstName.rawValue = "";
        txt_LastName.rawValue = "";
    // Restore the original settings
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sBOFBackup, "bofAction");
    oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sEOFBackup, "eofAction");
    // Close connection
    oDB.close();

    Finally achived the database connectivity for the published pdf form developed in the Adobe LiveCycle Designer 8.0.
    There must be the same driver version of the DSN on both machines. The machine which published the form and the one accessing it.
    Use the Admin account to add the DSN on both machines.
    Get rid of the error: Connection for Source "DataConnectionName" failed because the environment is not trusted.
    Thanks
    AbdulHafeez

  • Create form elements directly in InDesign and publish them directly to PDF forms.

    It would be great to add form elements directly in InDesign (e.g. on a specific layer) and when publishing the document to PDF automatically exporting them.
    Now the work flow for adding one new field in am existing PDF form is quite complicated:
    Edit the InDesign document (layout and text) in InDesing -> publish the PDF out of InDesign -> add the existing form fields (copy from existing form into new) -> move the fields to the right place (acrobat does not support paste in place!) -> add the new field (name it, place it, etc.) -> save the PDF.
    For our company handling many different forms, with a lot of changes, this process is very error-prone.
    Enabling this process in one application would help a lot. We are currently using CS3. The feature overview of CS4 does not seem to implement this.
    Anyone else suffering here?
    Best regards,
    Michael

    Just incase you don't Adobe make a Windows only app Lifecycle which is a full blown form design app. Real layout tools, real calculation tools, vastly better than Acrobat which is too tedious for forms. If you company does lots of forms I'ld give it a look.
    They have no intention to bring to Mac I gather, as Mac is a designers only domain according to one Adobe Evangelist I spoke to.

  • Publishing PDF Forms on Intranet

    I have these interactive PDFs that i created using designer. They work fine as pdfs, you can enter information and close out and when you reopen the information is gone and you are back to your original blank form. However, when i publish the pdf on our company's intranet, i can open the form, type information and select radio buttons, then if i close form without saving and open it again, the stuff i selected is still there. I was expecting the information to be cleared out. Does anybody have any idea about this problem?
    Thanks.

    I would prefer not to have a reset button. I would like for this to happen, a user fills it out and after they have printed it, if the close the pdf and exit the intranet, when they open the link to pdf again it will be blank and not have what they entered previously.
    Can this be done? I already tried the docready idea. I select form1 which contains all fields, and put this: xfa.host.resetData(); and for language i selected javascript and for "run at" i selected client and server" that didn't work so i changed and tried with just client and tried formcal.
    What am I missing to do?
    Thanks.
    Diane

  • Webservice call not working in published PDF form

    I've set up a dropdown field in a standard PDF form and have written the following code to run on the 'On Focus' event:
    var service = SOAP.connect("http://localhost:50592/lookup.svc?wsdl");
    var values = service.GetDropdownValues();
    this.getField("LookupField").setItems(values);
    This works great in Adobe Acrobat Pro X, but when I save as a Reader Extended PDF with Additional Features, the code no longer runs and I'm stuck with what was prefilled in Professional before the save.
    We're trying to get dynamic values for these fields from users in the field who will be filling out and submitting these forms.  We are also limited to a standard PDF form, LiveCycle isn't an option for us.  Can anyone recommend a method that will work or maybe tell me why this isn't working like we believe it should?
    Thanks.
    Matt Williams

    It's not working because the usage right that is required for it to work in Reader is not added when the form is enabled with Acrobat. It can be added if you enable the form with LiveCycle Reader Extensions.
    An alternative is to submit (using doc.submitForm JavaScript method) to a web server and have it return an FDF that sets the dropdown values. This can work even if the form is not Reader-enabled. You'll just need to find out how to create the type of FDF that will do this and program the server to return it.

  • How to distribute on browser a PDF form but editing it only online?

    Hi,
    this is my issue:
    I need to distribute a PDF form made with InDesing or Acrobat X Pro and collect data. But...I have  some other requirements/constraints.
    1)     The final user have to edit form only online
    2)     The final user have to edit the form in more work session (also day by day…the form is very long).
    3)     I have to collect data on a database for reporting
    Optionally…
    4)     The final user could not download the final pdf (I would have avoid that he/she print the pdf).
    Could you propose a technical solution to implement all this?
    Thank in advance!
    Valerio

    Hi Bernd
    I saw that Adobe have web tool also to publish and edit online the PDF... (into Acrobat X Pro - trial ed. - I see that it's possible publish on "some" server).
    But - after published - accessing to the form on line I could save locally the file?... will be open with a standard Acrobat Reader to fill the form?
    thk  u

  • PDF forms populating Access DB and vice/versa

    I have a PDF from that I published to Acrobat.com There are fields to be filled out. Problems:
    1. How can I set the fields to populate into an existing MS Access DB once submitted results back to me?
    2. How can the form populate upon a certain chouice criteria?
    Scenerio: Form is a log file for patients seen, including name, date, room#, diagnosis codes, testing, medications, f/u. The same fields exist in MS Access but distributed among 3 tables (linked). In the PDF form I have created a New Data Connection (OLEDB), Connection string (Provider for ODBC drivers), In the Data View I see my fields from access - so for each input Binding it points to the field (i.e.: for patient name - $record.Patient.Last_Name).
    But here is the rub:
    1. When the first patient filed is filled, all subsequent patient names are filled with same name (and they keep just replaceing the other inputs).
    2. I cannot seem to create a date calender, or have the current date default (taken from the computer time stamp).
    3. I can not seem to calculate the follow/up (it's 4 weeks) from the input of the date.
    4. When selecting a facility, how do I populate the fields with current patient names and previous Diagnosis (if at all possible).
    5. When I created the data connection, the fill in spaces become obscured and my drop down box for facility choice stops working.
    I know this is big, but any advice and help is greatly appreciated in advance. I have also attached the PDF form for analysis. Please not that there are two, one is the original prior to Life Cycle modification and the other is with the DB linking attempt.
    Thanks
    Shai

    Hi Paul,
    Thanks for the reply and help. I am uploading the MS Access DB (2007). Another caveat, when I chose to use the creat new connection and then chose the build - Microsoft Office 12.0 Access Databse Engine OLE DB Provider, I am not able to link into the database at all. I double checked the location and everything. I do not have any user name or password set-up and chose to leave it blank but get his error:
    Test connection failed because of an error in initializing provider. Could not find file 'C:\User\........'
    Since I am new at this, please feel free to change any structure of the form as needed - as long as the end result will work
    The set-up sounds quite easy and straight forward, but guess its a bit more complicated than I thought. I even have the book: Adobe Acrobat 9.0 in a class room - but no help there either. I am familiar with some Javascripting, so your explanations hopefully will not be over me head.
    Thanks again for your dedication and help
    regards
    Shai
    Message was edited by: Shailevit - I am not able to upload the Access database - file not allowed. it's in the .accdb format. Is there a different format that is accepted to be uploaded ? (PS: Zip doesn't seem to work either) - Thanks

  • Creating pdf forms from a Word doc that will need to be edited in the future

    Ok, I searched everywhere for an answer to this situation... and I want to know if there is a work around.
    Basically, I have a word document. I will use this Word document to create a application form. So I will manually create fields where needed after I convert the document to pdf.
    Now here is the issue... at some point, the Word document will have to be changed... maybe a date or an address or something. This would mean I would have to change the original Word document, re-create the form (adding all the fields again) and re-publish it.
    Can I somehow edit the text in the pdf (with the fields already in place) without having to change the original word file and re-create the form?
    Has anyone had this problem? Am I doing something wrong? Or is there an assumption that the original Word document you use to create your form (pdf) will not be changed at a later date?
    Thanks.
    Quinn

    Ok, sorry if I haven't quite figured this out.
    When I create a pdf form, AA can detect some fields and automatically creates them. This is great. For other fields, I have to create them. No problem.
    So here I have Document A (MS Word) and my new pdf form (Document B).
    I edit Document A and change the date in the header let's say. I re-create my pdf form (Document C).
    How will Document C remember to re-associate the fields I created in Document B? Won't I have to start all over again?
    This is my question. If the answer is no, then I just have to hope that when I create the new form, AA can figure out as many fields as possible (and selection choices such as bullet, check marks, etc).
    Thanks again for your help.
    Quinn

  • Submit PDF form data IMS database.

    Hello
    I have developed a pdf form using livecycle designer and it has a submit button in it. The form is published to our organization website. What we would like to do is, when the user opens and fills up the pdf form either on web browser / or after downloading to their desktop, users should be able to post the data in the form directly into our IMS database. Our users are not connected to our organization network but just to the internet.
    I understand that we need to use a Submit button with 'Submit As' property set to XML. IMS connect is an IBM interface that would read this xml and pass the data to the database. But, what I would like to know is the architecture and how the components communicate here. i.e. for our design document.
    I am assuming that we would need to lay out these components on the diagram but not very sure of the order in which the data is flowing from client to the database.
    1. Web browser
    2. Internet Connection
    3. Webserver (this is where the org. website is and the form is located on the website)
    4. LiveCycle ES sitting on an application server?
    5. Database tier.
    Appreciate if anyone could tell me exactly the steps and the data flow.

    You cannot use a submit button to invoke a web service. You woudl create your web service to recieve a single parameter (the XML that represents the data on your form). Then create a hidden field (to hold the data) and bind the input parameter to that field. Now using a regular button, add code that will take the data that is in the data dom and dump it into your hidden field:
    HiddenFieldName.rawValue = xfa.datasets.data.saveXML("pretty")
    Make sure the your hidden field is set for multiline. Now in the next line of code we need to invoke the web service. You can use the invokeBtn supplied by the DataConenction wizard (dropped on your form of course). You can use the command:
    invokeBtn.execEvent("click");
    This will send the data in the hidden field to the web service. You can code your web service to return a string that indicates that the data was recieved. You can bind that output parameter to another hidden field. Once the web service executes then that field will hold the message string. Now you can put up a message box to the user:
    app.alert(hiddenfieldname.rawValue);
    When I talk about hidden fields I mean to make the presence invisible not hidden.
    Make sense?

  • Fill out a pdf form from ADF application

    Hi
    I need to fill out a PDF form, from my ADF application and i want to know if exist a component or libarary to do this.
    i hope you can help me
    Regards.

    Hi,
    two options are:
    Oracle BI Publisher (by far best choice but needs to be licenced)
    http://www.oracle.com/technology/pub/articles/vohra-jdev-xmlpub.html
    Jasper Reports, Free but not as functional or easy to use as BIP
    http://jasperforge.org/projects/jasperreports
    Both products have Java API's which you can integrate with your application.
    Brenden

  • PDF- paex page data to pdf form fields

    Just want to find out if anybody can help me out with this -- without using BI Publisher:
    I have several pdf letters that are pdf fillable. What needs to be done is from an APEX page:
    1. user search for client id
    2. find and selects the client id. Hidden fields for this would be the client's fullname, address, citystatezip, workername, workerphone, workerlocation, workersupervisor, workersupervisorphone, clientid.
    3. select the letter category: CAT1, CAT2, CAT3, CAT4 . I have a letters_table in oracle and have a category field in there. Will create an LOV for this category as a radiobutton. User will select the letter category.
    4. Based on the letter category selected, a list of letters will appear or posted in the page.
    5. User will then select the letter or (letters) by checkbox from the report listing of letters.
    6. Letters in PDF template format will print with the hidden fields printed on them.
    Any idea how to do this? Already created a page for the user to search the client id. So steps 1 and 2 is done.
    Need ideas and help with the rest....
    Can you link the fields in a page into a PDF fillable form? The PDF forms reside in our intranet server.
    I do not have BI Publisher and the deadline for me for this project is Friday April 24.... so appreciate ideas!
    Thanks! ?:|

    There was/is a sample application for html-db 1.5/6 that was called mailmerge.. It allowed you to do a mailmerge document in WOrdpad with Oracle data.. The rtf file would be stored in a table in your schema and you would run code against it to look for filler characters that would be replaced with your data..
    It has limitations, you might want to go and download it and see what you think..
    http://htmldb.oracle.com/pls/otn/f?p=18326:44:338076716200094::::P44_ID:1682
    Thank you,
    Tony Miller
    Webster, TX

  • Texts in pdf form don't appear when viewing in Acrobat nor in Reader.

    Texts in pdf form don't appear when viewing in Acrobat nor in Reader nor when printed after the form has been filled. But the texts appear when one clicks inside the field. What is the solution to be able to print and view all of the texts in all of the fields that have been typed.

    More than likely caused by someone filling out the form with Mac Preview.
    Here's a potential fix: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html

  • Populate PDF form with XML data

    Although a seemingly simple task, this question has occupied way too much of my time the last week and I am asking the following out of sheer desperation and frustration.
    I have a pdf form created with Designer 7.0. I have a separate XML data file to populate the form with. I can test using the preview in Designer and everything looks great. Now, all I want to do is deploy this pdf to a standard web server (IIS, Windows) such that any visitor to the site (using Reader) is able to open it/view it/print it, with the data there. That's it.
    This was easily accomplished using Acrobat 6 by creating an ASP page that output an FDF file which referenced the PDF. Not so with the latest version.
    I have downloaded three separate several hundred page documents that do not explain how to accomplish this task simply. So to summarize:
    1. Does this task *require* a separate piece of software (Document Server) that was not required before?
    2. If Document Server is not required, what are the steps to publish the pdf file and reference the data file?
    Please help, extraordinarily frustrated :-(.

    Ravinder, were you actually able to get your PDF Document (Form) to load with data?  I have not been able to get my .NET page to populate my PDF document - the PDF loads in my Browser but has no data.  If you can post sample code that you were able to get to work, it would be appreciated, or if you notice something wrong with my code below, please let me know.<br /><br />Also, when my PDF document loads in my browser, I am prompted to "Open or Save" my .xdp file and if I click "Open", my PDF Form loads, but the fields are not populated.  How do I stop this prompt from loading?  I don't want the user(s) to be able to see this.<br /><br />My .NET page and XML file are listed below:<br />------------------------- .NET -----------------------------------<br />Imports System.Text<br />Imports System.IO<br /><br />Public Class WebForm1<br />    Inherits System.Web.UI.Page<br /><br />#Region " Web Form Designer Generated Code "<br /><br />    'This call is required by the Web Form Designer.<br />    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()<br /><br />    End Sub<br /><br />    'NOTE: The following placeholder declaration is required by the Web Form Designer.<br />    'Do not delete or move it.<br />    Private designerPlaceholderDeclaration As System.Object<br /><br />    Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init<br />        'CODEGEN: This method call is required by the Web Form Designer<br />        'Do not modify it using the code editor.<br />        InitializeComponent()<br />    End Sub<br /><br />#End Region<br /><br />    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load<br />        'Put user code to initialize the page here<br /><br />        Dim responseString As New StringBuilder<br />        Dim sr As StreamReader<br />        Dim xmldata As String<br /><br />        Response.ContentType = "application/vnd.adobe.xdp+xml"<br />        responseString.Append("<?xml version='1.0' encoding='UTF-8'?>")<br />        responseString.Append("<?xfa generator='AdobeDesigner_V7.0' APIVersion='2.2.4333.0'?>")<br />        responseString.Append("<xdp:xdp xmlns:xdp='http://ns.adobe.com/xdp/'>")<br />        responseString.Append("<xfa:datasets xmlns:xfa='http://www.xfa.org/schema/xfa-data/1.0/'>")<br />        responseString.Append("<xfa:data xfa:dataNode='dataGroup'>")<br />        sr = File.OpenText("c:\\inetpub\\wwwroot\\PDFFiller\\TestForm_data.xml")<br />        xmldata = sr.ReadToEnd()<br />        sr.Close()<br />        responseString.Append(xmldata)<br /><br />        'responseString.Append("<form1>")<br />        'responseString.Append("<txtFirstName>Homer</txtFirstName>")<br />        'responseString.Append("<txtLastName>Simpson</txtLastName>")<br />        'responseString.Append("</form1>")<br /><br />        responseString.Append("</xfa:data>")<br />        responseString.Append("</xfa:datasets>")<br />        responseString.Append("<pdf href='http://localhost/PDFFiller/TestForm.pdf' xmlns='http://ns.adobe.com/xdp/pdf/' />")<br />        responseString.Append("<xfdf xmlns='http://ns.adobe.com/xfdf/' xml:space='preserve'>")<br />        responseString.Append("<annots/>")<br />        responseString.Append("</xfdf>")<br />        responseString.Append("</xdp:xdp>")<br /><br />        Response.Write(responseString)<br />        Response.Flush()<br />        Response.End()<br /><br />    End Sub<br /><br />End Class<br /><br />----------------------End .NET -----------------------------------<br /><br />--------- XML (TestForm_data.xml) --------------------------------<br /><form1><txtFirstName>Homer</txtFirstName><txtLastName>Simpson</txtLastName></form1><br />----------------------End XML -----------------------------------

Maybe you are looking for