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 Rhinorhino 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: roblasch
  • Content: Threads
  • Order by date
  1. roblasch

    XMLHttpRequest won't work in Firefox

    Can anyone explain why this works in ie, but not firefox? From editing this code and substituting alert statements, it seems that the readystate never gets past 1, but I don't see why. function objConstruct(url,obj){ this.url=url; this.lyr=document.getElementById(obj)...
  2. roblasch

    How do I retain the array order when I databind

    Dim PageArray AS New HashTable() PageArray.Add("Home Page",BaseURL) PageArray.Add("Education",BaseURL & "/1") PageArray.Add("Store",BaseURL & "/2") RepeaterLinks.DataSource=PageArray Page.DataBind() I am using this code to fill a...
  3. roblasch

    Can you reference all class members within a class function?

    In the following code, I am unsure of how to search through the members of the class to see if there are any matches. Public Class FormError Dim Name As String Dim FormValue As String Dim hasError As Boolean Public Sub New(ByVal n As String, ByVal v As...
  4. roblasch

    Retaining formview values after insert

    I have a formview that I am using to add, update and insert data into a database. Everything is fine, with one exception. I need to enter similiar records with minor changes (one field per record). So after an insert, instead of arriving at a blank form, ready for a new entry, I would like to...
  5. roblasch

    Is it possible to schedule an asp.net page?

    I need to access an xml page once an hour and then make a static html page on my server. The xml file is on a remote server and needs to be accessed from my server (only the single ip is allowed to accesss the file). All this could be done easily using asp.net if I could schedule the page to run...
  6. roblasch

    dwt files: how does publishing work?

    If I have a dwt template attached to 200 pages, and I make a change to the dwt, do I have to publish all 200 files to the server for the changes to take affect? Or does frontpage have a way of updating the pages on the server if I publish the updated dwt file to the server? It seems as though...
  7. roblasch

    How can I access the code behind an existing page?

    I am new to asp.net and am trying to edit the design of some existing asp.net pages. I have access to the server through ftp or remotetly, but I cannot find the actual code that runs the pages. Is it because it has been compiled? If so, can I get to it? I have web matrix installed.
  8. roblasch

    list bullet alignment

    I am having an issue with styling a unordered list. The text in each item is fairly long and it wraps on some lines and not on others. When it wraps it makes the position of the marker slightly different than the previous marker, which looks horrible. Is this a known issue (explorer 6) and is it...
  9. roblasch

    Mapping content type to correct extension

    I am running windows 2003 with iis 6. When I set up a content type as a custom header like this Content-Type:text/html;charset=utf-8 It changed the way images are served. In Firefox, the image appears in the page correctly, but if the image url is typed directly into the address bar, the...
  10. roblasch

    Form generates error, but saves results.

    I am not a frontpage person, but am helping a client who has a frontpage site. He has a form that collects info from a form, puts it into a file and sends an email. Everything works as it should, except that the confirmation page shows an error. It says to check the application log file for more...
  11. roblasch

    How can I reset credentials?

    I have a strange problem. I have a protected directory on my website. When I try to enter it, instead of being prompted for username and password, I get this error message 'HTTP Error 401.3 - Unauthorized: Access is denied due to an ACL set on the requested resource.' This only happens on my...
  12. roblasch

    Banning robots

    I am being visited by a robot every five minutes like clockwork. The user agent is Mozilla/4.0 (compatible; EMonitor 6.0 Windows NT). It seems to be looking for the same page over and over. Does anyone know what this robot is? And why it keeps coming back every five minutes? Is it possible to...
  13. roblasch

    Banning certain robots

    I am being visited by a robot every five minutes like clockwork. The user agent is Mozilla/4.0 (compatible; EMonitor 6.0 Windows NT). It seems to be looking for the same page over and over. Does anyone know what this robot is? And why it keeps coming back every five minutes? Is it possible to...
  14. roblasch

    Custom error page (500 vs 500.100)

    I have an asp custom error page set up for the 500-100 error. It gathers up info and enters into database. Then it sends me an email. My question is this ... should I be using this page for the basic 500 error and the other 500 errors as well? Will I still get useful information from the asp...
  15. roblasch

    Cannot make containing div height equal to absolutely positioned div

    Is it possible to make a containing div (in this instance #mainBody) the height of the elements in it. Right now i have some contents of the div spilling out of the bottom. The problem is that some of the elements are absolutely positioned. So my question boils down to this. If I have a div...
  16. roblasch

    equal columns list display

    I was wondering if the gurus hanging around here would be interested in tackling this problem that has confounded me. I am trying to display a list in columns that run accross the page. I want as many columns as the page width will allow, with the resulting column length equal (or close to it)...
  17. roblasch

    Can coordinated of an image submit be captured before the form is subm

    I am trying to capture a bunch of coordinates of an image before a form is submitted. It seems as though javascript doen't recognize the name.x and name.y values until after the form is submitted. Is this possible? When I use a standard submit button and do an alert before submitting for...
  18. roblasch

    Can I isolate users for ftp with a single ip?

    I am running w2k3 with iis 6. I am trying to set up one directory below the root that has access for a single user. I want that user to have access only to that single directory (and any folders below). I only have one ip address. Is this possible? Thanks
  19. roblasch

    Public use of stored procedures in master database

    I use the stored procedure sp_makewebtask from the master database to rebuild some web pages when changes are made. This action is called from another stored procedure and accessed through an interface on a web page. I get an error message that says the user must be a member of the sysadmin...
  20. roblasch

    information about web forms and spam bots

    I have a form where a visitor can send a e-card to a friend. I think that there is some danger of a spam bot being able to use this form to send spam to thousands of addresses from my form. Is this true? Are there some recources where I could learn more? I am adding a php generated image for...

Part and Inventory Search

Back
Top