Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Posts posted by pulpfiction

  1. to change mouse pointer when the page is requesting the transaction from the server.

    The CSS code to change the pointer, is link:hover, I could be wrong..... but I guess what phyoe2004 needs is to change the pointer during the time when the page loads from the server, like some other cursor instead if the normal sandclock.
  2. Saw this in another forum but with no replies, just curious to know the solution.

    I've seen on many sites that when you type in your password, as you are typing in your password, a message is displayed about how strong the password is. The values are Weak, Medium or Strong. Many sites have the buttons like a traffic light color: Red, Orange and Green. The color changes from Red to Green indicating password strength from Weak to Strong as you are typing your password.
    Thank you.
  3. Hi king,the function must stay as "this", swapImg(this). Just change these in the function.img1.src="icon_one.jpg"; // to image1 src img2.src="icon_two.jpg"; // to image2 src

  4. <HTML><HEAD><script language=javascript>  function test()  {  location.href='http://www.google.com';  }</script></HEAD><body><INPUT type="button" value="Button" onclick="test();"></body></html>

    is this what you were looking for?

  5. Hi I am looking for ideas to implement security in the website, i mean to redirect the user to the login page when trying to use the URL of some intermediate page. is there a nicer way in ASP.NET to handle other than checking normal sessions etc...Thanks a lot

  6. HiI am not pretty sure if this would fix ur problem, but no harm trying. try changing(reduce) the width, such that it is equal to the size of the image. the white space is bcos of the width being more than the size of the image..................

  7. I am using VS.NETJavascript code in the HTML page<script language="javascript"> function test() { // alert('working 1') document.location.href=('http://www.google.com'); // alert('after') }</script>I am calling this function in 2 ways 1. From the HTML page itself using,<input type="Button1" size="110" width="100" name="test" onclick="test();">2. From the .aspx.vb file,Button2.Attributes.Add("onclick", "java script:window.test();")When I click the Button1 the Google site is loaded, but when I click the Button2 the google site is not loaded and stays in the same page.When I uncomment the alert command the page is loaded for button2, only when i wait for the page to load and then give an OK for the alert.Is it the problem with time required for the page to load or whats wrong with the code...Why is this so????

×
×
  • Create New...