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 SkipVought 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: *

  1. hungerf5

    web form variables [$name]

    The cart pacakge that I am running is called VevoCart. It has multi language support built in and they use the token variables to manage the differences in translation. Now that I look at the admin pages they have a whole sysetem built to manage the token variables. I can add whatever tokens I...
  2. hungerf5

    web form variables [$name]

    Just found this: http://www.simple-talk.com/dotnet/asp.net/token-replacement-in-asp.net/ Looks like these are called tokens... --Rick
  3. hungerf5

    web form variables [$name]

    I'm editing a shopping cart package and there are variables in the web form that appear like [$some name]. What kind of variables are these? Here are some examples: <ul> <li><a href="Default.aspx">[$Home]</a></li> <li><a...
  4. hungerf5

    Dynamic Graphic Location not Printing

    I’m having an issue with a crystal report with an embedded image. The graphic location is set to a formula field that points to a URL. The URL is a webpage that dynamically generates an jpg. The issue is that the graphic shows and prints properly when launched via Crystal. But when I try to...
  5. hungerf5

    XML/SVG SetAttribute Issue xlink:href

    Yeah it only took me half a day of goggling and piecing together bits of information from here ant there... Ah, the joys of developing when you don't know what you’re doing... How can I give myself a star? ;) --Rick
  6. hungerf5

    XML/SVG SetAttribute Issue xlink:href

    I found a solution but I'm not sure I understand it? Here code that get the results I'm looking for: svgElem = SvgXml.CreateElement("use", "http://www.w3.org/2000/svg"); svgElem.SetAttributeNode("href", "http://www.w3.org/1999/xlink"); svgElem.Attributes["href"].Value = "#" + sheetName...
  7. hungerf5

    XML/SVG SetAttribute Issue xlink:href

    I'm working on code to generate SVG dynmically via the web. When I try to create an element to display one of the shapes in the <def> section of the SVG file I'm getting unexpected output. Below I'm trying to create a node called <use> with the following attribute xlink:href. svgElem =...
  8. hungerf5

    XSL Yielding HTML With SVG

    This may or may not be a concern but I must be able to print the svg data. I'm pretty sure that inline embedded svg will not print. --Rick
  9. hungerf5

    XSL Yielding HTML With SVG

    Sure thing.... Below is a really simple example of the XML data: <parts> <part id="square-1"> <name>First Square</name> <type>Square</type> <points> <point id="1"> <x>0</x> <y>0<5/y> </point> <point id="2"> <x>0</x> <y>5</y> </point> <point id="3">...
  10. hungerf5

    XSL Yielding HTML With SVG

    I have an xml file that has both textual and graphical information. I need to output the textual information as html and embed the graphical information into the html as svg. Is it be possible to write an xsl file that would output an html file with embedded svg? --Rick
  11. hungerf5

    com object can write to disk

    Already added NETWORK SERVICE and NETWORK with full rights. Also I know the accounts have access becuase I wrote a blank text file to c:\temp without any problems. So the app security is ok but the COM object can't write or there is something else causing problems. The only thing that looks...
  12. hungerf5

    com object can write to disk

    Yep, Windows 2003... --Rick
  13. hungerf5

    com object can write to disk

    I'm using a COM object in a web app that needs to write temporary files to disk then delete them. Once the COM object tires to write to disk I get the folloing message: Server Error in '/' Application. -------------------------------------------------------------------------------- Access is...
  14. hungerf5

    Power Failure now triggers are not working correctly

    We had a power failure and a few nights back. It appears the server shutdown incorrectly. Now the triggers in our ERP are not working correctly or at all. What are some things to look for when trouble shooting this type of problem? --Rick --Rick
  15. hungerf5

    SQL Server Replication to MSDE for Fault Tolerance?

    I'm planning on buying one dual processor server with 2 MSFT SQL Server Standard processor licences for publication on the net. I would like to replicate to the MSDE server for fault tolerance. If the more powerfull server goes down I would switch to the MSDE to limp along. Is this possible...
  16. hungerf5

    icepack.exe

    Icepack is the program used by Symantec quarentine software, it needs a SSL port trought the ISA server. The solution is in the Microsoft knowledge base article #283284. --Rick
  17. hungerf5

    T1 for apartment building

    So I can segragate each port on a 2950 by setting up a sperate vlan on each port. This gets me the security I'm looking for. What will be giving out the IP's (dhcp)? This setup needs to be plug and play. A user should be able to plug in a computer in their apartment and receive an IP if they...
  18. hungerf5

    T1 for apartment building

    Would a Cisco 2950 Do the trick? --Rick
  19. hungerf5

    T1 for apartment building

    Not sure if this is a switching question or a router question so here it goes: I'm looking into buying a T1 for my apartment building. What is the best way to allow all tenants to use the T1 but not be able to access each others networks? Is there a way to have a switch to dish out IP's on...
  20. hungerf5

    Distributed File Systems / File Repilication to External Array

    I’m in the process of building and archive server on our network. I’m trying to design the systems so live files are stored on an internal disk array and they are replicated to a larger external array (where they can’t be deleted). Using a RAID mirroring solution won’t work because I only want...

Part and Inventory Search

Back
Top