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. Stunner01225

    £ no £ in output

    Cheers, But I fixed it using Response.ContentEncoding = System.Text.UTF7Encoding.UTF7 . I guess they do a similar thing.
  2. Stunner01225

    £ no £ in output

    I have an asp.net page that dumps html data into an Excel file by changing the contentType header to ms/excel. Unfortunately all the £ signs in my text come out as £. Does anyone have any ideas on how to stop this? Cheers
  3. Stunner01225

    New to IIS 6 & None of my validators are working

    Fixed See Article at http://www.aspnetresources.com/blog/ie_validators.aspx
  4. Stunner01225

    New to IIS 6 & None of my validators are working

    I normally use IIS 5 , but I have had to install my .net application on an IIS6 server. I have managed to get it working but none of my client side validators seem to work. Does anyone have any idea why?
  5. Stunner01225

    Flat Data to XML

    Don't worry I solved it.
  6. Stunner01225

    Flat Data to XML

    I have a table with three fields An ID field, a parent ID field and a title field. The table stores the staff hierarchy. So the values are like 1|null| Director 2|1| First Sub Director 3|2| Second Sub Director 4|1| First sub director PA And so on. I need to convert this flat table into a...
  7. Stunner01225

    Basket like class

    Thanks ca8msm If the session is stored on the server then that’s good enough for me. I had seen somewhere (and since lost) on the web a code sample where an object was placed in the cache with a session id, and I couldn’t fathom why. Thanks for all your help
  8. Stunner01225

    Basket like class

    Hello, I have created a class for storing and changing data; it is similar in design to a shopping basket. Most of my users are read-only and will therefore not need to use this class, so it is only users who have logged in (about 20%). Each logged in user will need to insatiate one. I have a...
  9. Stunner01225

    Role Based Security

    How I solved it. After a successful login I set session variable. The time out of my security and session is the same. In the session variable is a string saying “To view the page you must have a permission level above” and then the users level. When my login page is loaded I set a labels text...
  10. Stunner01225

    Role Based Security

    Thank you for your post, but unfortunately I cannot access that resource from work (don’t ask bleeding techs). I have set up all the role-based security and it all works my problem is this. I have three pages A B C and we will say two users X Y. X can see ABC and Y can see AB and everyone can...
  11. Stunner01225

    Role Based Security

    I have just spent two days setting up role based security in for my site and it works, but I have a small problem. In my system I have four levels of user and I am handling the permissions through the web.config file. When a user logs in and then tries to load a page they don't have the right...
  12. Stunner01225

    managing treeview

    I use the NodeData attribute to hold all my values. Is that any use?
  13. Stunner01225

    load xml from a string

    Thanks once again ca8msm
  14. Stunner01225

    load xml from a string

    What is the most efficient way to load an XML document from a string? The only way I can find is by using the loadXML() method of the XmlDocument(), is there a better way? Thanks for any help.
  15. Stunner01225

    lsit boxes

    Thanks ca8msm , I was coming to the same conclusion my self. I thought when I started this code that it was too easy. Thanks for all your help.
  16. Stunner01225

    lsit boxes

    a custom function function addItem(varNo , varText) { var myBox = document.getElementById("lbCom"); var newOp = new Option(varText,varNo); myBox.add(newOp, myBox.length); } The javascript adds them to the box , or at least it shows them. The reason im working like this is because im using a...
  17. Stunner01225

    lsit boxes

    Just a quick and simple question, but I cannot find the answer. I have an empty list box web control on an aspx page. I use javascript on the client side to add items to it but when I post back to the server I cannot see them and items .count is returning 0 . What am I doing wrong? Cheers for...
  18. Stunner01225

    Reg ex

    Thank you for all the help you have given me.
  19. Stunner01225

    Reg ex

    I Think all my expressions are passing 0.0.0 as true becuase it finds 0.0 in it once. Anybody know how to fix it I need an exact match and my RegEx are not my greatest.
  20. Stunner01225

    Reg ex

    I wish I could download it, but security is too high on my workstation. I will try to get hold of it but in the meantime im afraid I will need some more suggestions as I only have vis studio 2k3 in front of me at the moment.

Part and Inventory Search

Back
Top