Search Result

Collapse
8 results in 0.0024 seconds.
Keywords
Members
Tags
page
  •  

  • How to center an homepage with CSS and Javascript

    Hello Friends,

    I have a question: How to center an home page with CSS and Javascript according to screen resolution that a home page may be seen in all kind of monitors?
    The problem is all my objects are moving around the space of a home page and how to create inner scrolls for the home page itself?
    I am sending you the code of the homepage. Thanks alot....
    See more | Go to post

  • Nicholas25
    started a topic How to create a Login Page in a website?
    in Java

    How to create a Login Page in a website?

    How do I create a login page a SECURED one?
    I found this but not a secured login. Help me out! The Username are: Simon,Visitor and Tom. Password are also the username. But you can change it the BOLD line. Also when a Visitor enter the wrong password three time the person could re-flash the page to "UNLOCKED" the login page. At the window.location there change the URL to transport the user to another page when a user login the page....
    See more | Go to post
    Last edited by Frinavale; Nov 10 '11, 02:58 PM. Reason: Please refrain from posting your email address on this forum. Removed email, added code tags and code indentation for readability.

  • Mr LePaK
    started a topic Pagination Number Style

    Pagination Number Style

    Hello everyone...

    How can i build page number like this:

    Variable from database:

    $amount_of_data _available = 1000;
    $number_is_disp layed_in_one_pa ge = 5;

    Page 1 for 200 [1]...[79][80][81][82][83]...[200]

    Thank..!
    See more | Go to post
    Last edited by Dormilich; Dec 6 '10, 02:57 PM. Reason: chnaged title for better readability

  • cynicon
    started a topic Fill a form from excel?

    Fill a form from excel?

    Hi everyone

    So this is my question...

    I need to log in so many times in so many computers, in a specific web page "http://webshipping.dhl .com.mx"

    I wold like to do it with a macro Im using Excel 2003

    By now, I have the next code, But doesnt seems to work, please help me...



    Code:
    Sub pag()
    
    Dim myie As New InternetExplorer 'New'
    Dim
    ...
    See more | Go to post

  • ajnoz
    started a topic PHP Array from mysql table
    in PHP

    PHP Array from mysql table

    I am currently trying to make a website. I have an array that is for the variable $page. It currently looks like

    Code:
     if ($page == logout){include ('logout.php');}
      $pages = array(
      
    		'register'		=> 'regform.php',
    		'verify'        => 'verify.php'
        );
        
        if (array_key_exists($page, $pages))
            include($pages[$page]);
    I am trying...
    See more | Go to post

  • ad08
    started a topic Making a DIV height equal to page height

    Making a DIV height equal to page height

    I want to create a div over the body which should take 100% height of the page.
    I am defining html and body height is 100%. Also the div height is 100%.
    still it's not working for me. Can some one please tell me what is wrong?
    below is the code snippet.

    Thanks.

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
     <HEAD>
    ...
    See more | Go to post
    Last edited by Dormilich; May 18 '09, 05:42 AM. Reason: Please use [code] tags when posting code

  • chemlight
    started a topic PHP library for printing landscape
    in PHP

    PHP library for printing landscape

    I seem to remember from somewhere that there is a PHP library for converting a php page into an image, and rotating it for printing in landscape. I haven't been able to find anything on google, or bytes. A lot of chatter about the @page CSS properties (which don't work). Not what I need though...

    A point in the right direction would be appreciated.
    See more | Go to post

  • syedfasih
    started a topic GridView PageNavigationProblem with LINQ

    GridView PageNavigationProblem with LINQ

    Hi, I am Syed Fasih

    ---this is my aspx.cs file for the page navigation.
    Code:
    protected void grdConsultation_PageIndexChanging(object sender, GridViewPageEventArgs e)
    
    {
    
    grdConsultation.PageIndex = e.NewPageIndex;
    grdConsultation.DataBind();
    
    }


    ---this is my aspx file the gridview..
    Code:
    <asp:GridView ID="grdConsultation" runat="server"
    ...
    See more | Go to post
    Last edited by Frinavale; Feb 10 '09, 03:07 PM. Reason: added [code] tags
Working...