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

    XMLHttpRequest won't work in Firefox

    Thanks tsuji. That helps.
  2. 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)...
  3. roblasch

    How do I retain the array order when I databind

    I am really stuck here. I've got the hash table bound to two different controls. They both are in the same order, but not the order that the hash table is typed. So what determines the order at databind? It seems random, except that it is alwats the same. Any insight?
  4. roblasch

    How do I retain the array order when I databind

    But I need the key value of the hash table ... or is it possible to have a multiple dimension list array and bind to the repeater?
  5. 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...
  6. roblasch

    Can you reference all class members within a class function?

    Can you show me an example of how you would use this in my code, in the validate sub, to step through each member and check the formValue field?
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. roblasch

    How can I access the code behind an existing page?

    So, despite the line at the top of the aspx page (on the server) '<%@ Page language="c#" Codebehind="shipping.aspx.cs" AutoEventWireup="false" Inherits="testNET.Store.ShippingForm" %>' the cs file is not neccessary for the page to run on the server? So my next question is this. I am simply...
  12. roblasch

    How can I access the code behind an existing page?

    I searched the entire computer and can't find the files. Can the page work without them? If it is compiled. I don't have access to the previous developer.
  13. roblasch

    How can I access the code behind an existing page?

    I have looked for that file and cannot find it. The aspx files make a reference to it ... codeBehind=store.aspx.cs . But when i do a search, that file doesn't show up.
  14. 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.
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  19. roblasch

    Banning robots

    Is there any way to tell what it is? Is there any way to stop it? Besides the robots.txt file, that is. It is looking for the same file every time, although according to the header, it will only accept image files. It is looking for a file that doesn't exist ... a cold fusion file. It gets...

Part and Inventory Search

Back
Top