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 bkrike 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: ozane
  • Content: Threads
  • Order by date
  1. 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...
  2. 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;
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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/"...
  8. 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...
  9. ozane

    the way of sending value to server

    i have some hidden textboxes with values populated by javascript. what is the way of sending that values to server for some events on the server side?
  10. ozane

    do something when jscript change the text...

    hi, i have a textbox which is populated by javascript on the client side. but, i want to start a sub on server side when javascript changes the text, like autopostback. this textbox will be hidden so there is no way to control it with keyboard. is there a way to trigger that when text is...
  11. ozane

    cathing mouseup event while moving the cursor

    hi. i am now drawing rectangle over an image. when user mousedown left click and moves to another point i can get the coordinates of the starting point. but i want to get the coordinates of the points where mouseup event occurs at the end of the move... is there a way?? function move(e){ if...
  12. ozane

    text instead of number from textbox

    there are 4 textboxes on my web site. when a mouse over an image script runs according to the values of the textboxes. (what i want to be) here is the texboxes. maxx<input id="maxx" name="maxx" type="text" runat=server /><br /> maxy<input id="maxy" name="maxy" type="text" runat=server /> in...
  13. ozane

    mouseover image

    hi, i have an image on my aspx page. i wantto see the coordinates of that image while roaming on the image dynamically. and when i mouseover i want to change the cursor. so, i could achieved this. but when i want to mouseout from the image, anywhere on the page, i dont want to see coordinates...
  14. ozane

    Visual Studio 2005 instead of 2003

    hi i am currently working with VS 2003, .net 1.1. i have 2005 beta 2 CD. if i install 2005 instead of 2003 should i change my projects. i have several applications developed in vs 2003, and dont want to loose or change anything. can i go on with 2005 with my current 2003 projects. i am mainly...
  15. ozane

    getting html textbox value from radiobuttonlist

    hi, i have a radiobuttonlist control and in it i have textboxes. how can i get the entered value of textbox in code. here is my radiobutton code. <asp:RadioButtonList id="Time" runat="server" Width="568px"> <asp:ListItem Value="1" Selected="True">Anytime</asp:ListItem>...
  16. ozane

    show the xml or html response on the page

    hi, i am connecting to a server and getting the query result via asp.net. result can be in XML or HTML format, and prepared on the server side. when i get the result file i want see the details on the page. coudnt manage showing the content on the page appropriately. it must be very easy :) if i...
  17. ozane

    repeater label control from sub

    Hi i have a repeater, and it is gettin values from database table. at the end of each row in repeater i want to add label and the label will be controlled from a sub. this sub is gettin required values from table and after testing it should give the result to the label in repeater. but how can i...
  18. ozane

    String reference not set to an instance of a String. Parameter name:

    hi, trying to implement a project in asp.net (VB) and having the error below: String reference not set to an instance of a String. Parameter name: className Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more...
  19. ozane

    &quot;The data at the root level is invalid&quot; error on reading XML

    i am trying to read an xml from binary field in SQL server. i read the blob correctly. but when i want to see file as xml "the data at the root level is invalid. line 1..." error appears. i searched the web. i met that, the reason is: the xml is not an xml, it is text. correct i have statement...
  20. ozane

    how to populate forms with data from XML

    i have a an xml file and would like to extract the elements from xml and popoulate the text boxes in the web form with those data. but couldnt solve it. i am confused actually.. any idea? Thanks

Part and Inventory Search

Back
Top