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

  • Users: jimberger
  • Order by date
  1. jimberger

    using FLOAT and DIVS instead of tables

    here is my code... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> <style type="text/css"> @import url(...
  2. jimberger

    using FLOAT and DIVS instead of tables

    thanks traingamer. I will work on doing something like this solution this afternoon and let you know how i get on. Cheers
  3. jimberger

    using FLOAT and DIVS instead of tables

    Hi, I am trying to make my layout with divs and not use tables. I am using the float property on my divs to align my columns into 3 etc..however, when i resize the IE window, the controls on the page move around and the layout messes up. what is going on here? how can i make the layout...
  4. jimberger

    fieldset

    Hello, I am trying to avoid using tables and use fieldset instead. I have a form which displays a user registration form. I want the fieldset to be into two columns - with name, birth date, gender etc.. on one column and adddress, postcode , telephone number on the other column. how do i do...
  5. jimberger

    DOCTYPE and CSS

    Hi, I have a html page containing a style sheet. When I have the doctype set to <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> everything is fine but when i change to <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  6. jimberger

    class library

    sorry, i forgot to add reference the dll!
  7. jimberger

    class library

    Hello, I have a solution with 2 projects. 1 project is my class library where I have a class called SQLWrapper. In my 2nd project I want to be able to reference this class to use the functions within sqlwrapper. When I write imports it brings up a list of namespaces, but my project that...
  8. jimberger

    IN query

    ah yes!! thanks!
  9. jimberger

    IN query

    Hello, I have a query SELECT * FROM table where name IN (SELECT name from nametable where year=2007) however i want to be able to do something like this SELECT * FROM table where name AND description IN (SELECT name, description from nametable where year=2007) but i get a syntax error any...
  10. jimberger

    validating list boxes

    Hi, I'm using VB.NET 2.0 thanks
  11. jimberger

    validating list boxes

    Hi, I have a list box populated with values. i want to be able to say if value 6 or 10 is selected along with any other value in the list box then print error i have so far If lbxBuyingAgencies.Items.FindByValue("6").Selected = True Or lbxBuyingAgencies.Items.FindByValue("10").Selected = True...
  12. jimberger

    get all table names in database

    Hello, IS there a query or system stored procedure that will return all the user tables in the database? Thanks Jimmmy
  13. jimberger

    uploading files

    Hello, I have a upload facility to upload a file - however, I do a check to see if the file already exists, if it does then I want to say "Do you want to overwrite this file?" with yes or no buttons. fine so far. However, on pressing yes I want to overwrite the file, the problem is that when...
  14. jimberger

    rewrite url in global.asax

    Hello All, I want to write some code in the Application_AuthenticateRequest function in the global.asax that takes the url for example http://192.168.1.72 and rewrites this url to the domain http://www.whateverhere.com does anybody know how to do this? thanks for your help
  15. jimberger

    splitting a string into 255 chars

    hi, no there isnt a delimeter unfortunately because i could then use the split function. thanks
  16. jimberger

    splitting a string into 255 chars

    Hi, I have a large string say maybe 1000 chars long and I want to split the string into 250 chars so i will have str = 1000 chars long do the split.. str1 = 250 chars long str2 = 250 chars long str3 = 250 chars long etc.. does anyone know how to do this? thanks for your time
  17. jimberger

    limiting text to 200 chars

    Hi, I want to pull a large bit of text from the database strip all the html from the text and then limit it to 200 chars. I can limit it to 200 chars no problem using substring but if the text contains a html tag like <em> and the </em> is not contaied within the 200 chars then the rest of the...
  18. jimberger

    using inherits causes space at top of page

    Hi, I have a web aspx page <%@ Page Language="c#" CodeBehind="index.aspx.cs" AutoEventWireup="false" Inherits="fff.index" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> like this but the page displays with a annoying...
  19. jimberger

    page unload

    Hello, I have a Page_Load function in which a call a stored procedure to the "lock" the page - however, when the user leaves the page .ie click on another link i want to call another "unlock" stored procedure. however page_unload doesent seem to work. any ideas on how i can do this? thanks...
  20. jimberger

    using dynamic dropdownlist

    Hi, thank for your posting however I get a "property cannot be assinged - it is read only" error message. any ideas? thanks for your help

Part and Inventory Search

Back
Top