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

    CSS absolute positioning problem

    Hi everyone. I'm going bonkers trying to figure out this problem. I have some simple CSS <DIV> tags on my page to position linked images. I'm using absolute positioning, specifying the left and top pixels. This looks great in IE on my PC, but on my Mac which runs both IE and Safari the...
  2. bunnyweb

    Problem with ListBox Control

    Hi. I have just started transitioning from ASP to ASP.NET and I have run into a problem I need help with. I have a listbox control on my .aspx page: <ASP:LISTBOX ID="Sites" RUNAT="server" DATAVALUEFIELD="SiteID" DATATEXTFIELD="SiteName" ROWS="1"> This works fine. My listbox populates from my...
  3. bunnyweb

    Proxy server problem

    I have another Tomcat question! I have Tomcat installed and using port 8090 (I'm not sure how relevant the port is). When I tried to run my JSP pages I was getting an error message saying something along the lines that the proxy server was not allowing access to the gateway. I then went into...
  4. bunnyweb

    Help with context path needed!

    I'm hoping and praying that this is possible. I have a Windows 2000 server. I have Tomcat installed and running on the C drive. I want to be able to put my JSP pages on the D drive of the same machine. I'm not all that familiar with Tomcat, but I found that I can add a context path in my...
  5. bunnyweb

    checking if double is null

    I'm having a problem. I am reading a double value out of my database like so: double VisitDate = rsReport.getDouble("VisitDate"); My database allows nulls values so I want to check if this value is null. I tried quite a few things, but keep getting error messages. I remember something I saw...
  6. bunnyweb

    Auto Increment Possible?

    Hello. Our application currently works with SQL Server, but we are attempting to move it over to Oracle. In SQL Server we can use the "Identity" feature to auto increment an ID field by 1 each time a record is added. Is the same feature available in Oracle? I can't figure out how to do it...
  7. bunnyweb

    Time help needed

    Hello Everyone. I am attempting to create a JSP application and having problems with formatting a time field. I have a time stored in my database (SQL Server) as a Date/Time field and when I query the field I get somthing like: 1900-01-01 06:00:00.000 Below is how I'm getting the time value...
  8. bunnyweb

    Add a month to a date

    Hello. I'm trying to do something quite simple. I have a date that I want to add a month to. So for 21/9/2004, add 1 month to get 21/10/2004. My concern is with the year changing. So for 16/12/2004 I want to get 16/1/2005, not 16/13/2004. I'm sure that there is some class available that...
  9. bunnyweb

    Writing PHP for multiple platforms &amp; database question

    Hello Everyone, I am hoping someone can help me out. I have 2 questions. Question 1: We have two web servers. Server 1 is a UNIX box running Apache. Server 2 is a Windows machine running both IIS and Apache. If I write a PHP script, will I be able to run that same script on both my UNIX...
  10. bunnyweb

    How can restrict the number of concurrent users?

    Hi Everyone. I have a web application and I want to limit it so only a set number of concurrent users can access the pages at the same time. I want to allow the first 5 people that access the application to use it with no problem. But then when the 6th person attempts to access the...
  11. bunnyweb

    Very simple database connection - but error

    Hi All, I am having problems with my database connection. I have two computers, one running Win XP with MS Access 2002. The second computer is running Win 2000 with MS Access 2002. My application works perfectly on my Win XP machine, but keeps giving me an error message on my Win 2000...
  12. bunnyweb

    ASP Mail

    Hi Everyone, I'm trying to get a grasp on what ASP Mail is and how it works. Is it an Active X component that I need to purchase or is it more like a protocol that ASP uses? And even more importantly, how do I get my hands on it? Any help and information would be greatly appreciated...
  13. bunnyweb

    JSP Session beans with NT4

    I have the strangest problem. I have a small web application that I wrote using a mix of JSP pages and Java Beans. In my index page I create the bean by using the following syntax: <jsp:useBean id=&quot;Visitor&quot; class=&quot;com.safeguard.safeweb.beans.VisitorBean&quot...
  14. bunnyweb

    How do I get future dates??

    I am trying to find a way to get future dates and I'm stuck. I am taking in a String which contains a set date String myDate = &quot;30/05/2003&quot; (UK format) How would I go about adding 3 weeks to this date to get: myNewDate = &quot;20/06/2003&quot; I also need to do the same for...
  15. bunnyweb

    Add Double to Vector

    Is it not possible to add a double value to a Vector? This is what I'm trying (basically): Vector vecTest = new Vector(); double mynumber = 1.1; vecTest.add(mynumber); I'm getting the following error: method(add)double not found in class java.util.Vector I am importing java.util.Vector and...
  16. bunnyweb

    Invalidating a Session

    Hello out there ... I have a servlet where I am invalidating my session objects using the following: request.getSession().invalidate(); My problem is that it invalidates ALL of my session objects. I have multiple session beans in my application. How do I invalidate just one of them? Thanks...
  17. bunnyweb

    Desperate for Cookie Help

    I want to update the value of an existing cookie, and I'm having problems. Here is my code: // Get all the cookies Cookie [] cookies = request.getCookies(); boolean foundCookie1 = false; // If there are cookies (to avoid null pointer exception) if (cookies != null) { // Loop through all...
  18. bunnyweb

    Formatting Time

    Hi. I am hoping someone out there can help me. I am querying on a date/time field in MS Access and receiving a value back that looks something like: 1899-12-30 15:45:00 I would like the above to return: 3:45 PM I have looked up the Java Time class, but that doesn't seem to be getting me...
  19. bunnyweb

    Julian Date

    I have a web application written in Java and I need to be able to convert a standard date (dd/mm/yyyy) into Julian Date format. And then later in my application I will need to take a Julian Date and turn it back into a standard date. I am somewhat new to Java, so this is a very daunting task...
  20. bunnyweb

    How do we host our own web server?

    Hi. Our company would like to move from having our web site hosted by a 3rd party to hosting it ourselves. What exactly do we need to make this happen? We would be using Windows 2000 Server running IIS. Thanks for the help!! Rachel

Part and Inventory Search

Back
Top