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 Mike Lewis 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: overDeveloper
  • Order by date
  1. overDeveloper

    Code not firing?

    Here is a sample of the .net code (that creates xml code) that I need to create (an IE Web Control): <iewc:TreeView id......> <iewc:TreeNode Text="xxx" expand="true"> <iewc:TreeNode Text="aaa"></iewc:TreeNode> </iewc:TreeNode> <iewc:TreeView> This code gets served by the...
  2. overDeveloper

    Code not firing?

    Again, the issue is that the treenode XML is served BEFORE the code behind - so trying to build the xml in the code behind does not work as the aspx page is served without the xml being built yet... make sense? Not trying to make trouble... if seeing the code would help - I'd be glad to provide...
  3. overDeveloper

    Code not firing?

    I am only dismissing it because I have tried it.
  4. overDeveloper

    Code not firing?

    The problem with that is that the code that is being produced is xml for a tree node and it seems to fire that code before the code behind so it will not work if it created in the code behind....
  5. overDeveloper

    Code not firing?

    I ahve the follwoing code in a control: <%@Import namespace="System.Data"%> <%@Import namespace="System.Data.SqlClient"%> <script language="C#" runat="server"> DataSet nodeDS = new DataSet(); dataSet GetNodes() { SqlDataAdapter nodeAptr = new Sql........ nodeAptr.Fill(nodeDS, "nodes")...
  6. overDeveloper

    tree node or list view tutorial

    Anyone know of a good list view or treenode turorial online?
  7. overDeveloper

    tree node

    Unfortunaltely, no... SQL 2000 Love the handle! GOTERPS!
  8. overDeveloper

    tree node

    I need to make some xml that will make a tree node out of 1 (if possible) result set... How would you suggest I do this... I want to make 1 query and then loop through it to produce something like: parent 1 --- child 1a --- child 1b --- child 1c parent 2 --- child 2a ---...
  9. overDeveloper

    recursive query

    No, I do not have anything done yet - I am just trying to figure out how much of this SQL should handle and how much .net should handle... Ideally, I'd like to accomplish it all in SQl and just loop through the results, but I am not sure if that is even possible....
  10. overDeveloper

    recursive query

    I need a query to produce a tree node - something like: parent 1 --- child 1a --- child 1b --- child 1c parent 2 --- child 2a --- child/parent 2b --- child 2b1 --- child 2b2 all of these are in the same table that looks something like: id parentID hasChild...
  11. overDeveloper

    stop/start server via command line

    How would I stop/start CF via command line?
  12. overDeveloper

    Sorting DataList

    Is there an easy way to make a DataList sortable via the column headers (like with a DataGrid)?
  13. overDeveloper

    BETWEEN query on varchar

    I need to do a between query on a varchar field that looks like, for example, 12 DEC 2007 so something like ...where field1 between '12 DEC 2007' and '12 JAN 2008' is there a way to do this?
  14. overDeveloper

    Page Viewer

    Does .net have a "page viewer" like in Share point? meaning I want a panel that I can load a url into? make sense?
  15. overDeveloper

    Query Help Part II

    Beautious! That did it!
  16. overDeveloper

    Calendar Control

    I see the calendar control comes with the buttons to change the moths... is there a way to add buttons to change the year? so with one click I can go from mar 2007 to mar 2006?
  17. overDeveloper

    Query Help Part II

    I am not sure what the problem is... I must be missing something - thanks for the help...
  18. overDeveloper

    Query Help Part II

    I'm sure it is an issue with the data... it's weird - this: And B.ID in (select max(ID) from @ab group by ParentID) gives me the majority of the results I should have, and: And B.ID in (select max(ID) from @ab group by ID) seems to give me the ones the first on is missing....
  19. overDeveloper

    Query Help Part II

    ok - if I add a distinct to the original select... Select distinct A.Name + isnull('/' + B.Name, '') As OutputColumn From ( select * from @ab where parentID = 0 ) A Left Join ( select y.* from @ab y inner join @c z on y.ID = z.id )B On A.Id =...
  20. overDeveloper

    Query Help Part II

    ok - Table a/b looks like: id name parentid 1 aaa 0 2 bbb 0 3 ccc 0 4 ZZZ 1 5 YYY 1 6 XXX 3 Table c looks like id tableabid 1 3 2 3 3 5 4 5 5 2 so I would want the following...

Part and Inventory Search

Back
Top