Help creating a search field in my website for users to search within my site

Hello .
Basically i want a search field in my website so visitors can search withing my website for what they are looking for .
Here is an example website of how i want my search field (search field top right if website)
http://www.asos.com/
So if any one can let me no what code i need or what i should do to make this search field happen .
Im using dreamweaver cs4 . Doing the website in html and using css .
Thanks allot .
Rob .

Go to Freefind.com.  Their free search engine has a few text ads on the results pages.  The paid version is add free.  Customize the look, and search features any way you wish.  After they spider your site (usually within 24 hours), people will be able to search your site. You can see a working example on my site alt-web.com
Zoom from Wrensoft -- free up to 50 pages with tiered pricing for larger sites. Also works on intranets and CDs.
And of course there's always Google 
http://www.google.com/cse/
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com

Similar Messages

  • Firefox(20.0.1) is ignoring my proxy server for google searches from website and the search box. It works for all other search engines and chrome/safari.

    firefox(20.0.1)
    squid (port 3128) and dansguardian (port 8080) not running in transparent mode.
    I am applying blacklists and a custom url regex to apply "safe=vss", this works for all browsers and all search engines except firefox using google search engine.
    Search engines tested (bing, yahoo, norton, ask, amazon, avg, ebay) - all work.
    Links from the search results are blocked by content filter, but search results still appear and google images are still shown. This does not happen in Chrome(23.0.1271.97), IE9(9.0.8), Opera(12.14) or Safari(5.1.7) with the same settings.
    No log entry appears in Dansguardian access.log implying proxy settings are being ignored for just this combination.

    I can't think of a reason that one particular webpage would behave differently from all the others, i.e., if you are starting at google.com and running a search using the form in the page, I'm not aware of any reason for Firefox to handle that specially just because it's Google.
    Does it make a difference if you disable JavaScript when using Google? If that yields the results you expect, perhaps Google's XMLHttpRequest AJAX traffic is bypassing your filters?
    The search bar has its own code, so someone would need to look at that to see whether/why it bypasses your proxy if the above hypothesis does not apply.

  • How to create a table with 5 rows ready for user entry

    Hello All,
      Can someone kindly advise on how can I achieve the above ? Everytime the table is created, the fields are not enabled for entry . I am trying to create a ytabel that consists of 8 columns. Of which 2 of them are date fields and another 2 of them are dropdown listboxes (by key).
      Thank you very much.
    from
    Kwok Wei

    Hi,
    Conside you have Valuenode which is bound to table and valueattributtes bound to Tablecolumns.
    Create a elements of the Nodetype.
    Ex: IPrivate<<ViewName>>.INodeElement ele=wdContext.create<Node>Element();
    ele.set<<Attrib1>>(Value1);
    ele.set<<Attrib2>>(Value1);
    ele.set<<Attrib3>>(Value1);
    ele.set<<Attrib4>>(Value1);
    ele.set<<Attrib5>>(Value1);
    ele.set<<Attrib6>>(Value1);
    ele.set<<Attrib7>>(Value1);
    ele.set<<Attrib8>>(Value1);
    wdContext.node<<NodeName>>.addElement(ele);
    The above statements should be in a loop so that it will add 5 rows in Table. )
    Regards, Anilkumar

  • PR no created in SRM : No valid request Found for user 0013

    Hi.  I try Send PR from ECC6.0 to SRM 7.0 
    I appobed the PR in BACK end but SC does not created in SRM side.
    in transaction SLG1 into SRM show the next message.
    No valid requester found for user 0013 .
    Previously made the next configurations
    1.- IN ECC6.0 has the RFC with USER RFC creates in SRM system i check the connection and working ok.
    2.- in PPOMA i created a new node of Unit Orgnizational to Entry channel .
    3.- I created a new RFC user and was assigned to previous Unit Organizational
    4- created a new local purcharse gruops and assigned the responsability for Entry channel and product categories are introduced.
    some idea what is missing to set?

    Hi,
    Check the below threads
    [No valid requester found for user 0013 . BBP_EXTREQ_TRANSFER    Posted: Jan;
    [No valid requester found for user 0013 .   BBP_EXTREQ_TRANSFER;
    [BBP_EXTREQ_TRANSFER  - No valid requester found for user 0013;
    regards,
    MRao

  • Getting the value of a dynpro field in an exit for a standard search help.

    Hallo Experts!
    I need to modify the selected data displayed in standard sap search help: H_T357
    What I've done is create an exit for the search help.
    Then, when CALLCONTROL-STEP = 'DISP' I use the function module F4UT_PARAMETER_VALUE_GET and I get the value of the parameter 'WERKS' correctly. I think that this function module can only obtain values from the parameters of the search help. Well, here is the problem, I would like to get the values of dynpro fields
    'ILOA-STORT' and 'VIQMEL-QMART' (warning type) in transaction IW21.
    I prefer not to add these fields as parameters to the standard search help: H_T357.
    Any ideas for getting the value of these fields? I've seen functions modules: F4UT_GET_ENVIRONMENT and F4UT_SH_SIC_GET_FIELDS. But I don't know if I can use them  for my porpuses.
    Thanks a lot in advance.

    Hello again,
    I have already solved the problem using function module 'DYNP_VALUES_READ'.
    Thanks, David.

  • Help creating time worked field on time sheet.

    I am new to acrobat. I am creating a time sheet submittable form. I have start time fields and end time fields and now i need a field that  calculates total time worked in hours. I could do this using military time except that in the calculations tab in field properties there is no subtraction calculaton option, just addition. Is there anyway to acomplish this by writing a script? I know nothing abiut writing scripts, PLEASE HELP.

    You need to use JavaScript to write the custom JavaScript Code. You can convert the time string to a JS data object and do the math at milliseconds.
    You can split the time string into hours and minutes, convert the hours to minutes and add to the minutes, do the math in minutes and finally convert the minutes back into hours and minutes.
    Since you will be repeating the math for each day, I would look at creating a function to convert the time string cell to minutes for the computation.
    There can be problems with leading zeros and no separator symbols since the Number format strips the leading zeros from number character strings.
    function Time2Min(cTime){
    var min = 0
    var hr = 0
    cTime = cTime.toLowerCase();
    // civilian time
    if (/(\d{0,2})[:](\d{2})[ ]?([ap])/.test(cTime)) {
       hr =  Number(RegExp.$1);
       if (RegExp.$3 == "p") {
          hr += 12;
       min = (60 * hr) + Number(RegExp.$2);
       } // end civilian time
    // 24 hour time
    if (/(\d{0,2})[:](\d{2})/.test(cTime)) {
       min = (60 * Number(RegExp.$1)) + Number(RegExp.$2);
       } // end 24hour time
    // military time
    if (/(\d{0,2})(\d{2})/.test(cTime)) {
       min = (60 * Number(RegExp.$1)) + Number(RegExp.$2);
       } // end military time
    return min;
    } // end function
    function Min2HH:MM (nMinutes) {
    return util.printf("%,1 01.0f" + ":" + "%,1 02.0f", Math.floor(nMinutes / 60), Math.floor(nMinutes % 60));
    var elapsed = 0;
    var sEnd = "1600"; // change for field value as string
    var sStart = "0900" // change for field value as string
    // add loop to go through fields:
    if (sEnd != "" & sStart !="") {
    elapsed += (Time2Min(sEnd)  - Time2Min(sStart)) ;
    // end of loop
    // format the output
    Min2HH:MM(elapsed);

  • How to get the search field with API UCM  for a specific UCM Profil

    We have UCM 10g
    For the checkIn we have for exemple the URL : http://xp-ucm1.oth.prs/idc/idcplg?IdcService=CHECKIN_NEW_FORM&dpTriggerValue=1&dpDisplayLabel=Codification%201&IsSoap=1
    To obtain all the field for the checkIn is very simple with this service(IdcService=CHECKIN_NEW_FORM) and RIDC, but for search we don't find the idc service ?
    <SOAP-ENV:Envelope>

    <SOAP-ENV:Body>

    <idc:service IdcService="CHECKIN_NEW_FORM">

    <idc:document dRevLabel="1" dUser="sysadmin" dDocName="" dDocTitle="">
    <idc:field name="xClbraUserList:isExcluded">1</idc:field>
    <idc:field name="xsgti_top_rule:isSetDefault">1</idc:field>
    <idc:field name="xlist1:isExcluded">1</idc:field>
    <idc:field name="xsgti_g_ll_niv1_1:isExcluded">1</idc:field>
    <idc:field name="xsgti_chrono_soc"/>
    <idc:field name="xsgti_g_entier4:isExcluded">1</idc:field>
    any ideas

    Hi,
    In fact, I don't want to send parameters to the search service but to get the fields to display an advanced search form of my own.
    Some rules and profiles filters the amount of fields availables and having a service that can do this filtering for me would be very useful.
    The check-in service do this for a trigger value (profile), but I can't find how UCM uses services to display the search form with the right fields depending on the rules and rights of the user.
    When I call a search form, UCM calls a service : http://xxx.xxx.xxx.xxx:xx/idc/idcplg?IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=STANDARD_QUERY_PAGE&dpTriggerValue=xxx&dpDisplayLabel=xxx
    But with &IsSoap=1, the values returned are not good, some fields are missing, the field captions are not right... I guess UCM calls sub-services but which ones ?
    Thanks :)

  • Is there a way to search for a specific keyword within the sites to which the bookmarks are linked? I need to search all linked sites in the bookmark folder without having to open each page and "find" manually.

    Currently, I must browse through 50 or so bookmarked pages to see if a specific topic is covered. I would like to be able to search all bookmarked pages at once for a specific keyword. For example, if I have 50 news sites bookmarked and I would like to see which pages have the word "tuna" in them, I would need to open each page individually and do a "find". If I could search all of those pages at once, then I would save an immense amount of time. I have looked on the add-ons and found nothing...

    1. Create a smart album and in the drop down in the top right corner select file status
    2. Check mark the file status box and select 'Offline'
    Now you should have all your 'Offline' (Yellow Exclamation and/or Red Slash) files.
    To reconnect..
    1. Select the missing files.
    2. Go to File and scroll to Manage Referenced Files
    The dialog box will have one of the photos selected
    3. Select the drive and folder that contains the referenced file and select it
    4. Click 'Reconnect All'
    This might not reconnect all of them, but the dialog box will still be open and you can reconnect the ones left.
    Narvon
    Message was edited by: Narvon

  • Is it possible to hide the detail for a field in infotype screen for users

    Hi,
    My requirement is that.
    1) For a group of users in IT0002 screen the content of SSN field would be shown as XXXXX where for some users it will show the actual value in PA20,PA30. This is not MOLGA specific, this would be user specific.
    Is it possible to do that. I was trying with the exit ZXPADU01 but not working. I believe T588M will also not work in that case.
    Please suggest on that.
    Thanks & Regards,
    Sandip

    Hi,
    Instead of presenting the SSN as XXXX, you can simply hide the field using screen modifications and feature P0002. The key here is using field group USERG (user group) in the decision tree. The prerequisite is assigning the set of users to a user group (UGR parameter) through SU3. That value will be the return value under USERG in the feature.
    Hope this helps.
    Donnie

  • Dynamic links to modules for user-friendly searching.

    Hi,
    We want to create a generic search form/report which can be called from any number of our other forms in an application. The results of the search should contain a dynamic link back to whichever form the search facility was called from. This is to overcome having to 'next' and 'previous' through records one at a time. This is fairly simple stuff but I am at a loss as to how to do it with portal.
    Is there a property/fn/method call which will return the current moduleid from a form so that we can use this to create our dynamic url once the search results are displayed? e.g. a p_session attribute which I cannot find? Is there a clever way to then manipulate the link in the PL/SQL section of a report or dynamic page to point back to the correct moduleid?
    Thanks,
    Alan.

    Did the installer get deleted? If it fails to install, I didn't think it would get deleted. Check the Applications folder.
    See, What to do if the installer warns that no Recovery System can be created,
    in this document: http://support.apple.com/kb/HT4718
    You can create a recovery hd on another drive and install on the startup drive (if your drive is formatted correctly).
    Otherwise, you can install Mountain Lion on an external drive.

  • If after clearing history, I am still getting filled in suggestions in Firefox 3.6 user names using Mac OS 10.6, how can I eliminate the suggestions for users and searches?

    I made an error when I was filling in a user name. Firefox is continuing to offer this as a suggestion in a drop down menu after using Clear Recent History. I used Clear Recent History, tried restarting Firefox after clearing history, and reinstalled Firefox. I did a search on Google, Firefox and Apple to see if someone else has reported this problem. All gave the same information that I have already tried.
    Firefox 3.6.11
    Mac OSX 10.6

    In my case it seems that Firefox just doesn't "see" (or can't find?) the coupon printer application anymore after the FF update. (and yes, my add-ons are enabled - to answer the tech support people's first question).
    For me, the coupon printer doesn't even show up in my Firefox "Add-Ons" list anymore. Is that what people typically see when they're saying the coupon printer "doesn't work" with FF? The coupon printer was visible on the add-ons list before my FF update, and now it's totally Gone! It seems that Firefox just doesn't "see" (or can't find?) the coupon printer application anymore since the FF update.
    When I'm on the coupons.com site and I click "print coupons", it tells me I haven't installed the application. But it Is installed on my computer, I can see it in my folders, and it works on IE, so it's definitely there.
    BTW - I have uninstalled/reinstalled the coupon printer application. I have tried all the suggestions on the Mozilla help/forum sites, as well as the Coupons.com web site. I have closed and re-started Firefox after the installation. I have also shut down and restarted my pc after installation. I tried installing the application with Firefox open, and tried it again with Firefox closed. I've even cleared out all my cookies/history associated with Coupons.com.
    ... I can't think of anything else to try, except for the "solution" of using IE for coupons.
    If it Really is a problem on the Coupon.com end of things, do you think it's worth it if we bombard the coupons.com support team with messages saying they need to fix the problem? (or just a waste of time?) ;(

  • How do I get rid of previous search topics when I look for a new search

    When I type in the search box I get my old search items from a drop down box how do I get rid of old topics

    I don't know whether you can remove individual items, but you can flush all of your form and search bar autocomplete history using the steps in this article: [[Clear your browsing history and other personal data on Firefox for Android]].

  • Including a Search Field for a website

    Hi, I want to include a Search Field in my website and I
    wonder what is the best method for achieving this? Is the DW
    extension ZoomSearch a good idea? (
    http://www.projectseven.com/tutorials/accessibility/zoomlearn/index.htm)
    Many thanks, Simon

    Thanks :-) Cartweaver is a++. But like I said you need to do
    some homework
    before diving in. Your server host should offer some info for
    setting-up
    your remote database.
    Next, you'll want a testing server on your local machine.
    http://www.wampserver.com/en/
    Installing PHP and MySql on Windows XP - (video)
    http://www.webassist.com/professional/products/solutionrecipes.asp
    Navicat to administer your MySql - optional but very useful
    http://www.navicat.com/
    Connecting DW to your local testing server.
    http://www.adobe.com/designcenter/dreamweaver/articles/drw8at_testserver.html
    Best of luck on your project,
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "Simon RCL" <[email protected]> wrote in
    message
    news:g6hf4v$gct$[email protected]..
    > Hi Nancy, Many thanks for your feedback on the DW forum
    and your advice on
    > databases etc. I'll order the 'PHP Solutions' book and
    take it from
    there
    > with fingers and toes crossed!
    >
    > I sense that you're in favour of PHP and MySQL. Without
    wishing to
    plague you
    > with loads of questions I wonder if you would recommend
    Cartweaver for
    building
    > an e-commerce site?
    >
    > I've looked at your website today. Now I know what I've
    got to apsire
    to!
    > It's great! Best wishes, Simon
    >

  • Aperture library inspector search field searches only project names?

    I've been trying to use Aperture 3's Library Inspector search field. It works great if I search for a project name (and I love this feature) but not if I search for part of a master file name (eg "4671"). I was under the impression that a Library Inspector search looks across various fields in the entire library for the search term. Is this a feature? A bug? Is my library corrupted?
    (I realize I can search the library by clicking on Photos in the Library Inspector and then using the search field in the browser on the bottom right, but it's too many clicks to be convenient. Maybe it's the only option, though?)

    Aperture will search for practically anything you care to think of, but you need to be specific. What you are doing is searching for a Project.
    To find a File Name, select a project, look for the little black square and letter Q in it, in the top right of the browser view. This opens a search field. You will see a little label that says Add Rule, click it and there in the list click on Aperture Metadata, then click another couple of times, just for some idea of how powerful Aperture searches are. Allan

  • Permanently removing Yahoo from search field

    Since the last upgrade I believe, I cannot remove the Yahoo search from my search field. Yes, I can temporarily remove it by selecting the manage search engines, but everytime I restart FF it reappears. Can you please tell me how to get rid of this forever! there is no Yahoo tool bar as many have suggested, just the search field. thank you kindly for any assistance. Someonezmom

    See http://kb.mozillazine.org/Search_Bar#Removing_search_engines

Maybe you are looking for

  • How i connect to SQL server using java?

    hi every body i need to connect to a sql server database using java i do not know sql driver in java plz help me thanks

  • IPod app crashes after 3.1 update

    I just updated to 3.1 and now the iPod app crashes whenever I try to make a Genius playlist. I do this every day so understandably I would like a solution. In the log, it points to low memory as the cause. I don't have much stuff running, I have Wi-F

  • Editing Buttons in an Old Flash Movie

    Hello, I am trying to edit a Flash movie that was created several years ago (probably around 2002-2004ish), using ActionScript 1. It's a library map that shows Library of Congress subjects when you hover over the stacks buttons. Here is a link to sho

  • How can i get the status of the loaded database in OCI ??

    Hi, buddy! Now i wanna get the status of the loaded database,example MOUNT, NOMOUNT,OPEN. Can i use the OCI interface to get it? if it like that, how can i do? Otherwise, is there another way to do in program?? thanks!!

  • Where is ESR ,Service Registry in ECC or SAP-PI?

    Hi Gurus, i am trying to develop a custom web service in ECC 6.0 with the end point "Function module' . i went to SE80 and did all the required things. I want to know where is my ESR and service registry in ECC? Does it only exists in SAP-PI or it al