Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Everything posted by pulpfiction

  1. 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. Hi Ravi,Well if you want to do it in ASP, it is definitly tedious, one option is to sort the dates and take the first and last value.HTH
  3. Saw this in another forum but with no replies, just curious to know the solution. Thank you.
  4. 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
  5. <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?
  6. Thank you that is what I was looking for, it was very helpful...
  7. 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
  8. 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..................
  9. Hi Check out this sitehttp://www.w3schools.com/asp/asp_browser.asp
  10. HI saubzIn IE, I dont see any blank space between the image and menu.....
  11. HiThis will create a new column, if this is what you need.....ALTER TABLE TablenameADD PercentComplete AS (ActualHours/EstimatedHours)
  12. hi skemcinNice game, came close but could go over 323.5, but reached 323.4... so close
  13. HI aspnetguy, I didnt see ur reply when i replied, probably we replied in the same time.
  14. VBScript function, round()check out this sitehttp://www.w3schools.com/vbscript/func_round.asp
  15. Hi ChocolateThe "M" in the "members" is kind of tough to read, took me some time to understand that.
  16. pulpfiction

    No Apostrophe

    HiOfcourse you will have even number of Apostrophe, cos for every open Apostrophe u will need 1 to close....
  17. Hi,Try this, Do you need somthing like this,<div align="center">
  18. 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...