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 bkrike 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: wvmikep
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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
  5. 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...
  6. 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...
  7. wvmikep

    Trouble with WROX book (Beginning JSP Web Dev)

    In case you're familiar with the book, &quot;Beginning JSP Web Development,&quot; their chapter 8 example on pages 185-186 won't compile for me. I get: com\wrox\Utilities\ArrayListSort.java:6: cannot resolve symbol symbol : class User Has anyone else had success with this...
  8. wvmikep

    Need help with a Self Join

    I think a self join is what I need. I have a table with three columns: CAT_ID int identity primary key CAT_NAME varchar(20) CAT_PARENT int cat_parent is a primary key which references cat_id (yep, a self-referencing table). I'm doing this because I want to generate a crumb-trail kinda like...
  9. wvmikep

    Need help with an IE/Netscape problem

    http://www.mike-pulsifer.org/techphilespoc/ttp.htm The IE Problem: There's a gap between the right edge of the table and the scrollbar of the browser. (works in Netscape) The Netscape (4.7) Problem: The black vertical lines (left and right side of menu) are displaying as too wide. (works in...
  10. wvmikep

    getting close to giving up on ASP...getting null values from good data

    I've got the following code....it returns null values for many of the columns in the query only ifI leave the IF and SELECT in the DO WHILE loop. If I take them out, things SEEM to work. However, that doesn't help. There's nothing wrong with the db because I wrote a version in ColdFusion and...
  11. wvmikep

    I can't find what's killing this page.....endless loop?...

    If I do the same thing in ColdFusion, the page loads quickly. However, this ASP code seems to have some issues as the page never fully loads. I'm following the logic used in my CF code. Any ideas what's killing it? All the way up to the &quot;pretty much just some HTML here&quot; area has...
  12. wvmikep

    Variable-defined include files

    For my forums, I use include files for the header and footer HTML that surrounds the forum output. These file names are stored in the database. I find this a more intuitive and better-performing method than having someone enter all that HTML in a form and then pull it out of a database. So...

Part and Inventory Search

Back
Top