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: *

  • Users: tmcneil
  • Order by date
  1. tmcneil

    passing variables to forms

    Well, I've got the following code to use the Session variables. If Not IsEmpty(Request.Form("FA")) then Session("rVal") = Request.Form("FA") 'Response.Write(Session("rVal") & "<br>") if rVal = ST then if Not IsEmpty(Request.Form("FASTV")) then Session("sState") =...
  2. tmcneil

    passing variables to forms

    I seem to have forgotten how to pass variables to multiple pages. I have an asp page that I choose values from select boxes. Those values get passed to another page by using the request.form call to each element. I want to pass these same values onto a 3rd page and am having trouble doing...
  3. tmcneil

    AJAX and multiple select control

    BillRayPreachersSon, It's not in an iframe, but does get placed inside a <td> tag. So, yes, I think it is on the same page. I'm not sure that I understand your last statement. I'll post some code. The submit button is at the top but I took out the surrounding code since it was relevant...
  4. tmcneil

    AJAX and multiple select control

    vicvirk, I'll post it when I get in to work tomorrow morning. Todd
  5. tmcneil

    AJAX and multiple select control

    Hi All, I have an asp page with three options buttons representing a different geography. Next to the 1st two radio buttons, I have a multiple select box where you can select no more than ten values. If you select more than ten, then the page will not submit. The last option button has a...
  6. tmcneil

    &lt;style&gt; tag issues

    Thanks johnwm, I was able to use that link and figure it out to get it to do what I want. <style type="text/css"> table.scrollTable { text-align: left; font-size: 12px; font-family: verdana; background: #c0c0c0; } table.scrollTable thead.tHead { cursor: pointer; }...
  7. tmcneil

    &lt;style&gt; tag issues

    I found some code that creates a scrollable table that is formatted using a <style> tag. The problem is, the <style> tag formats other tags on the page that I do not want it to. I only want it to format the scrollable table. Is there a way around it to get it to do what I want? <style>...
  8. tmcneil

    IIS and ASP on Windows 2000

    Hondy, You da man! That worked. I'm definitely bookmarking that url. Thanks, Todd
  9. tmcneil

    IIS and ASP on Windows 2000

    Hondy, I tried a basic asp test and still get the same error. I checked all the settings and they are what they are supposed to be. Well, I guess I'll go on to something else and come back to this later.
  10. tmcneil

    a href problem

    MikeyJudd and prosper, The <%= theOnlink %> is a variable that stores a shared drive that contains pdf documents. When clicking on a button, a new browser opens with the pdf document. The value looks like this: \\<machine name>\pdr\Metadata\Maps\BLS\LABOR\Labor_Force_Participation.pdf I...
  11. tmcneil

    IIS and ASP on Windows 2000

    Well, someone told me that ASP.NET works on this box which if configured correctly, one would think it should work with ASP. I copied and pasted the last couple of lines from the IIS logs, but it does not give me any indication as to what is going on. 2008-09-05 12:15:36 10.200.50.23 -...
  12. tmcneil

    a href problem

    I have this piece of code that's problematic and I am not sure what is wrong with it. <% if (theOnlink.length() != 0) { %> <a href="<%= theOnlink %>" + ' target="_blank"' onMouseOut="MM_swapImgRestore()"...
  13. tmcneil

    IIS and ASP on Windows 2000

    I am referencing this thread, thread96-903450, and am having the same problem. I am getting a HTTP 500 error which I think is a server application error. The application logs show two errors occuring, W3SVC and DCOM errors one after another. Any ideas how to fix this? Thanks,
  14. tmcneil

    Reserve Characters and ZIP Code values

    tsuji, That's right, I need a string. Big help since I thought I was going to have to write a lot of code.
  15. tmcneil

    Reserve Characters and ZIP Code values

    I have a form that retrieves a zip code using Request.Form method. This form has a button that I would like to pass the value of the zip code to a javascript function that will contain a window.open method. The problem is that say if I enter a zip code that starts with a "0", like 04910. Then...
  16. tmcneil

    Formatting XML Request

    PHV, You really jogged my memory about how to use the double quotes correctly. This is what I came up with and I think it's working but I having to continue to test my responses back from the server and count the number of features selected. Dim sAXL sAXL = "" sAXL = sAXL & "<?xml...
  17. tmcneil

    Formatting XML Request

    I've got some vbscript code that I am trying to format into the proper XML format. Dim sAXL sAXL = "" sAXL = sAXL & "<?xml version='1.0' ?><ARCXML version='1.1'>" sAXL = sAXL & "<REQUEST>" sAXL = sAXL & " <GET_FEATURES outputmode='newxml' skipfeatures='true' geometry='false'>" sAXL = sAXL & "...
  18. tmcneil

    Transparent Background

    I have a gif that I took from the web with a white background. I would like to remove it to use it on some web pages. I converted it to an rgb image by going to Image > Mode > RGB Color. I then went to File > Save for Web, selected each and every GIF option under Settings on the right-hand...
  19. tmcneil

    Create table script

    I have another create table script that I have been using for about a day or so and it was working. Now, I use it this morning and it does not work. Here is the script: CREATE TABLE HMDA_HUD_FHA_LIMIT_06 as (SELECT A.OBJECTID, A.RESP_ID, A.AGENCY, A.LN_TYPE...
  20. tmcneil

    Create table script

    Jaxtell, Worked like a charm. Thanks! Todd

Part and Inventory Search

Back
Top