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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ozane

  1. ozane

    XslCompiledTransform for transformatin via xsl encoding prob

    that is coming from remote server. i am working on a client. therefore i cant change it on the server. is that related to stringwriter or XML?
  2. ozane

    XslCompiledTransform for transformatin via xsl encoding prob

    it is starting with <?xml version="1.0"?>. no encoding in it. did you mean that? Thanks
  3. ozane

    XslCompiledTransform for transformatin via xsl encoding prob

    Hi, i am trying to transform a xml using xsl in asp.net page. my code like that. Dim bb = xmlhttp.responseXML.xml Dim dok As New System.Xml.XmlDataDocument dok.LoadXml(bb) Dim trans As New System.Xml.Xsl.XslCompiledTransform...
  4. ozane

    problem for string xml in textbox

    Ok guys... thanks. i was using MagicAjax, and since the textbox was in the ajax panel, it was giving me weird results. That MagicAjax causes that...
  5. ozane

    problem for string xml in textbox

    I am creating xml file in the code an i want to see it at the and. but when i send it to textbox i see &gt; and &lt; instead of < and >. how can i change it?? Dim aa = "<?xml version='1.0' encoding='UTF-8'?>" + _ goes like &lt;?xml version='1.0' encoding='UTF-8'?&gt;
  6. ozane

    extract values from xsd using xsl

    Hi... i am working on a web based tool. it is connecting to remote servers and receives a XSD as a response. what i need for next level is elements from xsd. here is the sample part of xsd <xsd:element name="park" type="myns:park_Type" substitutionGroup="gml:_Feature"/> <xsd:complexType...
  7. ozane

    xsl variable from &lt;select&gt;

    are you sure?
  8. ozane

    xsl variable from &lt;select&gt;

    hi, i am populating a html select from xml using xslt. what i need is assigning the selected value from <select> to a variable. which test shloul i do to check if which option is selected? here is my selector <select id="SRSSelector"> <optgroup label="Available SRS"> <xsl:for-each...
  9. ozane

    javascript in xslt

    i have xslt containing some hyperlinks. i need to add some variables to url's as querystring. those variables will come from labels on the page. ok how can i retrieve those values from textboxes using javascript in xslt. i found some links but couldnt achieve. browser is not running javascript...
  10. ozane

    from element value to url querystring (XSL)

    i cant get the value of the metaID variable in the url
  11. ozane

    from element value to url querystring (XSL)

    i want to get values from xml and transfrom it via xsl. for a value of element i want to create a hyperlink. but link should contain a value from other element as querystring. how can i do that?? i tried to create a variable and add it to href. but no way, i miss something... thanks <a...
  12. ozane

    responsXml namespace problem (Nullreferenceexception)

    hi i am sending request to server and receiving xml response from server. part of xml is as follows: <?xml version="1.0" encoding="UTF-8" ?> - <csw:Capabilities version="2.0.0" xmlns:csw="http://www.opengis.net/cat/csw" xmlns:dc="http://purl.org/dc/elements/1.1/"...
  13. ozane

    how populate textbox from xml

    Manarth, address is one element of xml. i will need to extract all elements from xml. address was one example. for example i need to get the value of "ServiceType" and others as well thanks
  14. ozane

    how populate textbox from xml

    Thanks for help manarth... but couldnt achieve extracting value from xml tag. sorry i am not an expert.... here is the part of my xml file... <?xml version="1.0"?> <csw:Capabilities version="2.0.0" xmlns:ogc="http://www.opengis.net/ogc" xmlns:xlink="http://www.w3.org/1999/xlink"...
  15. ozane

    how populate textbox from xml

    I am receving xml file from a server via javascript. i can populate all xml file to a textbox. but, is it possible to get the values from xml tags to populate the textboxes with that values?? if yes how for example i have an element in xml file as "address". i want to get the value of that...

Part and Inventory Search

Back
Top