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

    Problem with code in beginner book...

    It finds the class. The odd thing is, if I comment out that second jsp:getProperty tag it works. I even tried <%= getPrice() %> instead and that didn't work.
  2. wvmikep

    Problem with code in beginner book...

    I can't figure this one out: I have the following bean: /* * CarBean.java * * Created on October 2, 2003, 8:36 PM */ package com.wrox.cars; //package Templates.Beans; import java.io.Serializable; //import java.beans.*; /** * * @author mike */ public class CarBean implements...
  3. wvmikep

    Selecting from the middle of a recordset

    Re: JamesLean DOH!!! That's so simple I'm ashamed I didn't think of that. However (and this might be unfounded), will performance become an issue doing it this way if the second TOP statement uses a large number (as in well over a couple hundred)? BTW, I'm using SQL Server 7 right now.
  4. wvmikep

    Selecting from the middle of a recordset

    I want to be able to duplicate, in some fashion, what I can do in mySQL. In mySQL, I can use the LIMIT statement to grab select data from the middle of a recordset. All I know of for SQL Server is to use SELECT TOP n. However, TOP doesn't help me here. For example: A recordset has the...
  5. wvmikep

    image gap problem in XHTML Strict

    I had tried that too. Actually, that was the original method, but that doesn't even work. :(
  6. wvmikep

    image gap problem in XHTML Strict

    I have a problem where I have a stack of images (a vertical menu) separated by <br /> tags that show a gap between the images in Mozilla. When I remove the XHTML DTD, the gap disappears, but that's not what I want to do to get rid of the images. I suspect that there's a CSS property that I...
  7. wvmikep

    Which port number does IE use for FTP?

    I can FTP using the command line or WS-FTP. However, when I go to any site that offers software for download (download.com, any software vendor that has an FTP:// link for their software, or Netscape's download page), I can't access the file for download.
  8. wvmikep

    Which port number does IE use for FTP?

    IE (and netscape) seem to use a &quot;non-standard&quot; port for FTP. I need to find out what port that is so our network idiots, I mean people ;) can know which port they need to free-up. Thanks
  9. wvmikep

    Security Tab not available for folders

    This is most perplexing and it's preventing my access-driven web app from running. I need to assign IUSR write access to my database. However, when I right-click on it and select Properties, there's no security tab. This computer (a laptop) is not ever connected to a domain and it's rarely...
  10. wvmikep

    .ASPX files aren't running

    I found the problem. For some reason, the mappings weren't made in IIS to handle .ASPX files....and still aren't after three reinstalls. It won't even let me (the admin) add any more mappings. :( http://www.mike-pulsifer.org/images/iis1.png ------------------------------------ &quot;Unclean...
  11. wvmikep

    .ASPX files aren't running

    It lets me save the file, but when I browse the page, it's not being processed. IIS just spit the page back at me without doing anything with it. ------------------------------------ &quot;Unclean beast! Get thee down! Be thou consumed by the fires that made thee!&quot; - Brother Jacobus in...
  12. wvmikep

    .ASPX files aren't running

    : What happens if you create a new web project and try and view it. Same thing? I created a new web project. It wouldn't save the asp (not aspx) page I created to the directory under wwwroot, but when I manually put it there, it runs (just has a response.write) : Oh, something else to check...
  13. wvmikep

    .ASPX files aren't running

    should there be something for .aspx in the ISAPI settings for IIS? ------------------------------------ &quot;Unclean beast! Get thee down! Be thou consumed by the fires that made thee!&quot; - Brother Jacobus in Dragonslayer
  14. wvmikep

    .ASPX files aren't running

    -IIS is running -It's not a virual directory -I can view other pages no problem. My ColdFusion app runs fine. This is my first jab at VS.NET and all I was hoping to do was just verify that .ASPXes do run before I start digging deeper. ------------------------------------ &quot;Unclean beast...
  15. wvmikep

    .ASPX files aren't running

    ICQ won't work through our firewall. I added a text box, browsed the page and this is what came up through view source: <%@ Page Language=&quot;vb&quot; AutoEventWireup=&quot;false&quot; Codebehind=&quot;WebForm1.aspx.vb&quot; Inherits=&quot;WebApplication1.WebForm1&quot;%> <!DOCTYPE HTML...
  16. wvmikep

    .ASPX files aren't running

    For example. The page had the following: <% response.write (&quot;testing....&quot;) %> That code did not execute. I got a blank page. Yet, when I view the source from the browser, all of the asp.net code is there. ------------------------------------ &quot;Unclean beast! Get thee down! Be...
  17. wvmikep

    .ASPX files aren't running

    it's a real directory under wwwroot. VS.NET created that directory. ------------------------------------ &quot;Unclean beast! Get thee down! Be thou consumed by the fires that made thee!&quot; - Brother Jacobus in Dragonslayer
  18. wvmikep

    .ASPX files aren't running

    That's part of the visual studio.net install isn't it? I also installed the redistributable runtime on one of our Win2K servers and I have the same problem. ------------------------------------ &quot;Unclean beast! Get thee down! Be thou consumed by the fires that made thee!&quot; - Brother...
  19. wvmikep

    .ASPX files aren't running

    I installed VS.NET and created a simple .ASPX file. When I browsed it in my browser, I could see all the ASP code when I viewed the source. Why is IIS sending me the whole file rather than processing it? ------------------------------------ &quot;Unclean beast! Get thee down! Be thou consumed...

Part and Inventory Search

Back
Top