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

  1. mooniron

    PerlSax Module

    Hi everyone. I am using perlsax for parsing xml files. I want to enforce my parser to see dtd and I want it to return error when an undefined element or etc. occured in my XML file. But perlsax doesn't see the DTD as reference. I am trying to use DTDHandler of it. But couldn't get the solution...
  2. mooniron

    Xml::sax and parser.pm

    Hi all. I am using parser.pm for parsing my xml files. But I have a problem with the output of parser. That is about the encoding. I use the encoding parameter as ISO-8859-9 for Turkish characters. But it converts the output to UTF8 encoding. I also wonder whether parser.pm uses xml::sax::base...
  3. mooniron

    Subroutine references in modules

    Yes it returns. But I just want to take the reference of that sub routine.
  4. mooniron

    Subroutine references in modules

    Hi all. I am trying to get a reference to a subroutine in a module. But I can't. I am trying something like this: $my_var = \$my_module->sub_in_module; this assigns a scalar value in $my_var not a code reference. Could you help me what to do? Thanks
  5. mooniron

    Fetching data from database

    Hi all. I have problem with fetching from database using fetchrow_hashref function. In fact I can fetch data but if my query returns null from db fetchrow_hashref function returns a null hash reference. So I am unable to use the field names of query which would be returned. Is there any way to...
  6. mooniron

    Communication between aspx, ascx other controls

    Hi all. I have tried some ways to communicate any child control and ascx file with aspx file or any parent files. I have tried for something like this: I created a class and defined some simple properties within it. At runtime I created instances of that class and add into any ascx file which...
  7. mooniron

    Reserved keywords

    I would like to know whether we can use a string as a reserved keyword. For example I hold &quot;and&quot; keyword in a variable and I want to use it in an if statement like: if (&quot;($myX == $myY) &quot;.$ao.&quot; ($myY < $myZ)&quot;) and here I want the interpreter to understand $ao...
  8. mooniron

    Substitution

    I have small problem. I want to show a link contains a query string parameter which has two separate strings like $myName = &quot;my name&quot;; $myLastName= &quot;lastname&quot;; When I want to built the link like: &quot;<a href =...
  9. mooniron

    Multiple values with hash

    How can I enter multiple values per key? Thanks
  10. mooniron

    What about ASCX controls

    I tried this property way for several times but every time it returns the error something like: Object reference not set for an instance etc... although I defined the user control like protected MyControl uc1 = new MyControl(); What do you think? Thanks.
  11. mooniron

    how to create directory?

    Thanks
  12. mooniron

    how to create directory?

    Could anyone tell me how to create directory in Perl. Thanks
  13. mooniron

    Updating info. using TextBox

    Hi all. I want to update my record from db. For this purpose I use TextBoxes. When I show record inserted into textboxes on the page by setting their values with: TextBox1.Text = myDataSet... etc. this value is set on the server and when I post this page back with changed text server ignores...
  14. mooniron

    calling a javascript function

    Nobody answered my question about ASCX files and same as yours. I think we need to use jscript alert function and make our control (like a Button) know this java script function by adding a c# code like Button1.Attributes.add(&quot;onclick&quot;,&quot;javascript:myAlert()&quot;); as I saw on...
  15. mooniron

    What about ASCX controls

    Hi all. I have some problems with using jscript asp.net (c#) and ascx files. Firstly, I have created several ascx files and included them in my page. For example I created an ascx file to hold logged in session information. But I couldn't send information from this .ASCX file instance to the...
  16. mooniron

    Jscript in ASP.net (c#) and ascx files

    Hi all. I have some problems with using jscript asp.net (c#) and ascx files. Firstly, I have created several ascx files and included them in my page. For example I created an ascx file to hold logged in session information. But I couldn't send information from this .ASCX file instance to the...
  17. mooniron

    How can I insert time in datetime without Date

    Would you please how to put time like hh:mm:ss into datetime column without date info. When I want to insert time into datetime column sql server automatically adds 1:1:1900 next to my time info. But I want only the time info to be inserted! Thanks and best wishes...
  18. mooniron

    Whe I retriev char from db it brings with spaces

    Hi all. When I want to get data from a SQL table, which is char type, sql server gives me that data with spaces. For example my coloumn is: name char(20) But if the data in this colomn is 13 length, query takes the left 7 length space with itself. How can I resolve this problem. Thank you and...
  19. mooniron

    I want to insert data from text into database

    Hi everybody. I want to insert data from text into sql server. Text file includes some words separated by commas. I want to copy them into only one colomn but when I try to use DTS it shows me too many colomns. How can I solve this problem? Thank you very much!
  20. mooniron

    How to page recordset in Sql server?

    I want to show recordset as paged. I mean for instance: if I have 50 records and I want to show 10 of them per page. If anybody help me thanks to him/her....

Part and Inventory Search

Back
Top