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 TouchToneTommy 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
  • Content: Threads
  • Order by date
  1. 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) {...
  2. 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.
  3. 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...
  4. 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...
  5. 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!
  6. 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...
  7. micawber

    want to add an error message on submit

    I have a working asp page that collects an entry and checks it with a database then shows the results. I want to show an error message when nothing or a none matching entry is submitted. Can anyone help? Here the relevant code... <% dim str_PhoneNumber, sql, rs str_PhoneNumber =...
  8. micawber

    Replace Function on Datasource

    On my asp page I am using the replace function to remove spaces from a user input. Does anyone know if i can do the same for my data source (excel spreadsheet) if so how? Many thanks. Below is the code for the section. <% dim output, number, strSQL, rs, mystring output=request.form("input")...
  9. micawber

    Number Converter

    I would like to create a page to enable a user to type a choice of 3 freephone numbers (i.e. 0800 123 4567) and it then return a corresponding local number. (i.e 0121 123 4567) I have a long list of the numbers in a excel document. As I have some knowledge of asp, I presume this would be best...
  10. micawber

    Asp Validation Message.

    I have a validation page, the code I have taken from a example I found on a web page. The page/validation works great. Does anyone know how to use similar validation but instead of going to a new page to show the validation messages, the message appears in a message or alert box over the present...
  11. micawber

    Form/Radio Button Output Results

    i have a section of a form that uses radio buttons to give results. this works fine in firefox, but in Internet Explorer once you have chosen the selections a few times it doesn't work. can anyone help me out? thanks! form.asp <html> <head> <title></title> <script language="JavaScript"...
  12. micawber

    Form/Radio Button Output Results

    i have a section of a form that uses radio buttons to give results. this works fine in firefox, but in Internet Explorer once you have chosen the selections a few times it doesn't work. can anyone help me out? thanks! form.asp <html> <head> <title></title> <script language="JavaScript"...
  13. micawber

    display results as text in a form

    Hi, I have a form that i am sending results to. At the moment the results are sent to a text box i.e: <input name="red" type="text" class="main" size="8"> Is there a way to display the results as just text without being in a text box? The results are sent to the form via an 'if statement' in...
  14. micawber

    display results on asp form

    hi, i have a asp form that i am sending results to. at the moment the results are sent to a text box i.e: <input name="red" type="text" class="main" size="8"> is there a way to display the results as just text without being in a text box? thanks.
  15. micawber

    no output query - asp form - no error message

    hi, can anyone work out why i can't get an output from the form? i don't recieve an error message so i'm finding it difficult to work out. thanks. // form.asp <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script...
  16. micawber

    multiple radio button validation

    Hi, I have a form using radio buttons. I need to be able to set the form so that it only allows one selection from each column. So, if one radio button is selected the previous is deselected. Below is the working version of the form apart from the required validation on the radio buttons. Any...
  17. micawber

    asp form multiple radio button validation

    Hi, I have a form using radio buttons. I need to be able to set the form so that it only allows one selection from each column. So, if one radio button is selected and another gets selected the previous is deselected. The output values do not work if I call the radio buttons the same name which...
  18. micawber

    asp ajax querystring dropdown form

    hi, i would like to be able to return more than one value to the page once the two dropdown menus have been selected. at the moment i am only able to return one. can anyone help? any help would be greatly appreciated! many thanks. here is the code so far: // form.asp <!DOCTYPE HTML PUBLIC...
  19. micawber

    asp querystring ajax dropdown result

    Hi, I would like to be able to get a new result in a new field to display from the outcome of the three dropdown menus. Can anyone help? Here is what I have so far... Many thanks. // FORM.ASP <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...
  20. micawber

    ASP AJAX QUERYSTRING

    I would like to be able to view/show variables from the querystring sent to checkoptions.asp Can anyone help - point me in the right direction? Here is what I have so far: - Many Thanks! // FORM.ASP <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...

Part and Inventory Search

Back
Top