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 SkipVought 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. cjdrake

    Wildcard Application Maps

    I think I have answered my own question by finding this information: http://blogs.msdn.com/david.wang/archive/2005/10/15/Why-Wildcard-application-mapping-can-disable-Default-Document-resolution.aspx Hope this helps someone else at least.
  2. cjdrake

    Wildcard Application Maps

    Hi there, I'm running a .NET web app and using a wildcard application map setup in IIS to secure all files (I need images etc to be secure as well as pages). It's working fine, but there is one snag. When I type in the address of the app using the virtual directory root (e.g...
  3. cjdrake

    GET Request null

    Thanks alot for your fast response. By analysing the logs further I've managed to narrow down the behaviour to pages which contain IE WebControls (what a rubbish decision it was to use these!). I will do some further investigation first so as not to waste any more of your time! Thanks again.
  4. cjdrake

    GET Request null

    I just check, yes it does happen when I debug too. Strange huh?!
  5. cjdrake

    GET Request null

    Hi, We recently setup a custom 404 error page for our ASP.NET application which e-mails details of the missing page to a specified account. Surprisingly we were immediately bombarded with 404 errors for content where the file name is 'null'. Cross-referencing this with IIS logs it is...
  6. cjdrake

    Validating XML using DTD in .NET

    Hi, I've been using .NET for ages now but recently have started using it in conjunction with XML. I have a v.simple XML document with DOCTYPE reference to my DTD at the top which I wish to validate the XML against, however when I load the XML into a XMLDocument object I get the following...
  7. cjdrake

    Keep page at current location during post back

    hi, don't know whether this is helpful to you but it's the method I use to solve the problem you are describing. the idea is to manually catch the postback and use a combination of the javascript methods focus() and scrollIntoView() full details on Matt Meleski's blog here...
  8. cjdrake

    How does AJAX differ from ASP.NET 2.0 Callback?

    I'm no expert on ASP.NET 2.0, however it seems to callback by invoking server side code from client javascript over XMLHTTP, which is exactly how AJAX works. Chris
  9. cjdrake

    Strange browser progress bar behaviour

    For thread completion, I just today found a solution to this. The keyword in my post was behaviour. The (htc) behaviours with the IE webcontrols I am using was effecting the progess bar. See for more info: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q320731#kb3 Hope this helps...
  10. cjdrake

    Dropdownlist z-index

    Thanks alot kaht, that's exactly the sort of effect I am after! Knew there would be some kind of workaround.
  11. cjdrake

    Dropdownlist z-index

    Thanks MrGrey, that's what I needed to know.
  12. cjdrake

    Dropdownlist z-index

    Thanks ca8msm. The table forms a floating menu which moves down over the page, so it's not a case of hiding the inputs, I just want it to be consistent - it's very messy if the lists show through in the middle of the menu.
  13. cjdrake

    Dropdownlist z-index

    Hi Dave, I've set the background-color of the table but they still show through. It's so annoying, none of the other elements on the page show through! It's sending me crazy! Thanks though!
  14. cjdrake

    Dropdownlist z-index

    I have a form with standard HTML drop down lists in. When I position a table over the form using CSS absolute positioning, no matter how high I set the z-index the drop down lists always show through. Is there any way to get them to stay behind the table? Thanks in advance, Chris
  15. cjdrake

    Strange browser progress bar behaviour

    Thanks Jim, I'm inclined to agree with you. Just done some testing using Firefox and don't get this behaviour. Flippin' IE.
  16. cjdrake

    Strange browser progress bar behaviour

    I have a deployed ASP.NET application where on some pages, after loading is finished and the browser status bar says 'Done' in the bottom left corner, the browser (IE) progress bar starts to slowly 'charge up' again. I have run perfmon on the server and it definitely finishes serving the...
  17. cjdrake

    Updating .NET application in IIS6

    My .NET site is hosted using IIS6. I update this site using a simple file copy procedure as explained in the Microsoft web application deployment documentation (quoted below). As far as I understand (I'm fairly new to this) this seems to state that any current site requests are served before...
  18. cjdrake

    Server.Transfer problem

    Can't you use Session instead of viewstate? The arraylist will then automatically be accessible on the page you redirect to? Session("sessionVariableName") = arrayListName
  19. cjdrake

    jump from application_error when status=404

    <error statusCode="404" redirect="404Error.aspx" /> When I have included the above line in my webconfig file, control gets half way through application_error in global.asax then jumps out to redirect to 404Error.aspx I actually want application_error to complete before the redirection and...
  20. cjdrake

    Calling a VB.NET function from JavaScript

    Thanks adam. That's a useful suggestion. It might be a little more complicated than that as the page is part of a multipage wizard and the control I want to populate is actually a datagrid..... Will keep working on it. Thanks again.

Part and Inventory Search

Back
Top