Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ma77c
  • Order by date
  1. ma77c

    Storing images in App_Data folder

    Thanks for the link ca8msm.
  2. ma77c

    Storing images in App_Data folder

    Hmm... how profound. Would you consider XML files to be appropriate for the App_Data folder?
  3. ma77c

    Storing images in App_Data folder

    I'm trying to include images on my webpage that are stored in an "images" folder in "App_Data", but they are not working (red X). Everything works fine if I move the images folder out of App_Data. Logically, App_Data is where I would think you would store such files, but apparently I am missing...
  4. ma77c

    xsl:sort

    Thanks for the replies, I appreciate the clarification Jon. Using your stylesheet originally gave me an error, as I don't believe <xsl:apply-templates> can be a child of <xsl:stylesheet>. This may have just been a typo. I switched it to a <xsl:template> that matches the root element and I am...
  5. ma77c

    xsl:sort

    I am trying to sort all the of entry elements alphabetically by entryTitle and have the output in XML. My document has the following structure: <root> <entry> <header> <index>A1</index> <entryTitle>Alligators</entryTitle> </header> <description>text text...
  6. ma77c

    Updating/Editing XML document

    I'm looking for ways to create an interface for users to be able to update/edit an xml document. The tricky part is that the users will not or should not have to know the tags and structure used in the document. I'm developing with ASP.net. The only idea I can really come up with is to just use...
  7. ma77c

    Maintaining dynamic controls

    Is my description not good enough or am I simply beyond help.
  8. ma77c

    Maintaining dynamic controls

    The controls collection of the placeholder, phEntryItems, contains all of the user controls, but it only displays the control that was added last. Can anyone explain this behaviour?
  9. ma77c

    Maintaining dynamic controls

    I'm trying to maintain user controls that are added dynamically when the user selects a menu item. To do this, I've created an ArrayList and I add the appropriate usercontrol depending on the menu item selected. I then call a loadControls() method on page load to add the controls to a...
  10. ma77c

    Dynamic data entry interface

    Thanks for the support. I think I'm going to try and take on AJAX and webparts, but instead keep it as simple as possible, for my own sanity :P Taking it one step at a time. I've created user controls to represent the different elements in the xml document. Next, I'm trying to add these...
  11. ma77c

    Disabled textarea

    Thanks for the tips guys. I was unaware of this property. Stars all around!
  12. ma77c

    Disabled textarea

    I have a multi-line textbox which I have disabled so users can only view the text, not edit (pretty basic). My problem is, I would like to still have the scrollbar enabled, in case there is more text than what fits in the area. Is there a way to achieve this? Thanks.
  13. ma77c

    Dynamic data entry interface

    I'm looking for suggestions on the best way to go about creating a dynamic data entry/editing GUI. I have an XML document that contains entries which users will update and also add new entries. The structure of each entry varies, therefore the interface will also change and need to be created...
  14. ma77c

    Application not functioning when deployed to server

    It made all the difference. I suspected there were some permissions lacking somewhere. Thank you ca8msm for your quick and very helpful replies!
  15. ma77c

    Application not functioning when deployed to server

    Yes, AltovaXML Application Class is listed there.
  16. ma77c

    Application not functioning when deployed to server

    Sorry, I don't know what you mean by that. Could you specify where I should look to check? Thanks.
  17. ma77c

    Application not functioning when deployed to server

    For a while, the page was loading but it was unable to read any of the data from the XML document. Now I'm getting this exception:
  18. ma77c

    Application not functioning when deployed to server

    I have an application that uses the Altova's XML Engine .net interface to perform XSL transformations and run XQueries. To do this I have added a reference to the necessary assembly. When I run the application in Visual Web Developer (VWD), everything works perfectly. However, when I deployed...
  19. ma77c

    XQuery in ASP.net application

    Hi, I made a post in the XML forum, but since I haven't received any responses, I've decided this forum might be more appropriate. I'm trying to run an XQuery against my XML document. I've been playing around with some code I got from a tutorial, but I am not always getting the expected...
  20. ma77c

    XQuery in ASP.net application

    When I run the following XQuery in Stylus Studio 2006 I get the expected XML output. However, when I use the same query in the .net application, the XML is butchered and drastically different. This is the code I am using the run the query. Dim col As New XQueryNavigatorCollection()...

Part and Inventory Search

Back
Top