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!

Recent content by ReportingAnalyst

  1. ReportingAnalyst

    ASP function with AJAX calls

    Anybody has answers on how to make this simple thing work which I have no clue... Thanks.
  2. ReportingAnalyst

    How to show this data as indented?

    Please ignore this post. I forgot that I had posted a similar question here and got a few answers. Sorry for the inconvenience. Thanks.
  3. ReportingAnalyst

    How to show indentation?

    I tried your example using styled UL tags: My HTML output looks like this: 12 Manuel Abad Ibanez(40801) 0 Bill Adkins(40104) 12 Ashish Agarwal(41736) 6 Gustavo Agusti(41034) 9 Sanjay Ahuja(40431) My ASP code that rendered the above output is: <ul id="menu"> <% For iRows...
  4. ReportingAnalyst

    passing variables in a function

    Or you could call the function: Call passTwoValues(value1, Value2) Look into this code snippet: <% QS = Request.Querystring("ID") 'Now pass the querystring to the following function. if QS = trim(aCategory(0, iRows)) then Call GetProducts...
  5. ReportingAnalyst

    How to show this data as indented?

    Hi, This is my result set from which I would like to show an indented hierarchy: Emp_Name Indent Mgr_ID Sub_ID Lft Rgt William McMonigal 4 862336 862336 604 617 David Block 5 862336 627298 605 606 Joseph Hennessy 5 862336 862337 607 608...
  6. ReportingAnalyst

    How to modify the query to get the required resultset?

    Using this query, I got the indentation of everybody in the orgstructure. I just showed the data for one top level manager - W. McMonigal so that you can see the indentation for him and his subordinated who have the indentation of 5. The query I made to get this indented Org Structure is...
  7. ReportingAnalyst

    Unknown Runtime Error Message

    I added the above alert. I shows me a big grey color window which has all the code of my HTML page. What should I be looking for? Thanks.
  8. ReportingAnalyst

    Unknown Runtime Error Message

    Hi, This question is related to AJAX. I am trying to display a list of products for the category "Beverage" using the Northwind database. When I click on the link "Beverage", I get thie error - "Unknown runtime error". In the code below, I made the error line bold. What is causing it? My...
  9. ReportingAnalyst

    ASP function with AJAX calls

    I am still not able to get this working in a simple page. Please help me. I am badly stuck.... :( I am trying to view the contents of the Beverage Category. I have built it like a hierarchy in the form of styled <UL> tags. Please assist me in combining the 2 pages into one page. I would...
  10. ReportingAnalyst

    ASP function with AJAX calls

    Any suggestions how can I work this in one page? I am badly stuck. Thanks.
  11. ReportingAnalyst

    ASP function with AJAX calls

    Even if I were to split the code, how my getProducts.asp call a Javascript function without having a script tag in the asp page as it is an embedded within the Categories_dynamic.asp Wait a minute...as I am writing this message I noticed that when I view the page source, I cannot see the...
  12. ReportingAnalyst

    AlwaysRequiredSteps.asp......

    Hi, I get an error at this line: '/// Collect the Values wanted into the dictionary object for i= lbound(aParams) to ubound(aParams) aKeyValue = split(aParams(i),"=") sIDX = aKeyValue(lbound(aKeyValue)) sParam = aKeyValue(ubound(aKeyValue)) dList.add sIDX, sParam next...
  13. ReportingAnalyst

    Nested structure.

    Hi, I have 2 seperate queries from a nested table structure. This query returns the emp and his subordinates. SELECT s2.*, dbo.Employee.FirstName + ' ' + dbo.Employee.LastName AS Emp_Name FROM dbo.Stack1 s1 INNER JOIN dbo.Employee ON s1.employee =...
  14. ReportingAnalyst

    How to show indentation?

    Yes, 5 are under 4 which are under 3 which are under 2 and which are under 1. How can I use CSS for this to handle the different indentation? Thanks.
  15. ReportingAnalyst

    Why do I have to doubleclick on this link to see?

    My HTML code looks like this: <ul id="menu"> <li> <input type="radio" checked name="prodid" id="Catid2" value="2"> <a href="#" class="a_style" onclick="showProducts(2);s_Hide('2'); return false;">Condiments</a> <ul id="UI_2">...

Part and Inventory Search

Back
Top