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 strongm 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: micawber
  • Order by date
  1. micawber

    Resize function

    Tsuji, Yep both resize functions work. Sorry, what i mean by "not work" is it doesn't do what i want it to. i.e Only resize if the window opened is smaller. How do you mean stuffy? Thanks!
  2. micawber

    Resize function

    Thanks, I've given that a go, changing the slash forward unfortunately it doesn't change anything. Thanks.
  3. micawber

    Resize function

    Thanks Tsuji. I've changed the line so it looks like this, i don't have an onload handler: <script type="text/javascript"> window.onload=function() {Resize2(960, 720);} </script> I don't notice any difference though.
  4. micawber

    Resize function

    I have various links across sites, here is an example: <area shape="rect" coords="8,14,239,48" href="JavaScript:void(0);" onClick="MM_openBrWindow('https://www.test.com/popup.asp','Popup','status=yes,scrollbars=yes,resizable=yes,width=1000,height=960');"> the (link/page)...
  5. micawber

    Resize function

    Yes, basically when I say I'm unable to get this to work, I am saying I have tried the recent function provided by tsuji. It doesn't work for me. I'm calling the function by the correct name and criteria looks correct to me. I have tried removing and altering lines without success too. Thanks...
  6. micawber

    Resize function

    Thanks for your help. I'm still unable to get anything to work. Does anyone know a way around this? Thanks.
  7. micawber

    Resize function

    Well i can't seem to get anything to work so i still have the code from my original post.
  8. micawber

    Resize function

    I'm still unable to find a solution so that if i open a window at a larger size (i.e. 1000 x 800 pixels) the resize function set at 960 x 700 pixels doesn't do anything. I need it so the resize only works if the window opened is smaller.
  9. micawber

    Resize function

    I use the code below to resize my popup windows. I would like to change it so that if the open window is already larger that the current size, it doesn't do anything. Can anyone help? <script type="text/javascript"> ResizeTo(100, 100); </script> function ResizeTo( intWidth, intHeight) {...
  10. micawber

    Google Keyword Position

    I would like to find the Google Keyword positions for my site. For example show our position for a number (?50) of Keywords. Does anyone know of a script or something that will do this for me? Thanks.
  11. micawber

    redirect page from asp.net to asp

    Yeah I've got it working now. I needed to use <%= session("fieldA") %> instead of <%= request.form("fieldA") %> on the redirect pages. Thanks!
  12. micawber

    redirect page from asp.net to asp

    I'm trying to redirect the highlighted page whilst passing the values of a form from asp.net to asp. Can anyone help? Here is an example: <form action="http://www.test.co.uk/test/transfer.aspx" method=post> <input type="hidden" value=" <html> <body...
  13. micawber

    if/then statement

    Got it! Cheers!
  14. micawber

    if/then statement

    Thanks guitarzan! Great help! I have a function that lists the different instances, is it possible to use this rather than use the 'And _' or 'select'? Function IsChefDesc( str_Desc ) Select Case str_Desc Case "Chef", "Cook", "Pastry Chef", "Waiter", "Head Chef", "Kitchen Worker", "Bar...
  15. micawber

    if/then statement

    I have the following if/then statement on my asp page, The problem i have is i need to add more instances to the highlighted word. Can anyone advise? If obj_RS1("FullTimeOccupation") = "CH" Then If UCase(str_Value) <> "Chef" Then int_Errors = 1 str_Error = "Use ""Chef"" as your...
  16. micawber

    Count number of visitors to a page

    I want to be able to count the number of visitors to a page on my website (not the homepage). I don't want a counter to show on the page/site. I just need to be able to read the number of visitors, perhaps in a text file? Is there a simple way of doing this? Thanks!
  17. micawber

    body onClick

    i've now sorted this, just had to move the the <script> tags for the hints out of the head section into the body section. thanks.
  18. micawber

    body onClick

    They are attached via span tag after the inputs: <span class="hintleft">Enter your first name<span class="hint-pointer">&nbsp;</span></span> i have a file called inc_hints.js with the functions for the hints. i think the body onload is overwritten by this but don't know a way around it...
  19. micawber

    body onClick

    On my asp page i have the following: <body onClick="AJAXPremium();" class="mainnav"> I have introducted a hint system for my form input fields that works when I remove onClick="AJAXPremium();" from the body tag but doesn't work when it is there. i.e <body class="mainnav"> The problem is i need...
  20. micawber

    want to add an error message on submit

    Thanks sheco, I am familiar with the concept of sending an email via a form in asp. The problem I have is stitching it into the code I've used and if it is even possible. Thanks!

Part and Inventory Search

Back
Top