2 simple questions

admin

Administrator
Staff member
I m a newbie...I know little of web designing. I have two very simple questions.<br />
<br />
<br />
1) Can anyone tell me what is the code for search button to give a search<br />
for my site itself.<br />
i dont know Javascript or CSS.<br />
Seeing many codes makes me confused.<br />
Any simple code can be suggested?<br />
<br />
2) I want to put menu bar and left navigation the same for all the pages.<br />
Only the content part should be changed.<br />
without using frames, how can I open new pages in the same browser ? How ccan I open a new page by clicking on the links on the menu bar using HtML<br />
Does adding frames gives problems?DO i have to use Javasript for this?<br />
<br />
PLs help!!<!--content-->To Question 1: I think you can Download <!--more--> scripts that'll do site searches for you<br />
<br />
Q2: use a server-side include for using the same nav bar on all your pages:<br />
<br />
somewhere in you pages put <br />
<br />
<!--#include file="includes/nav_bar.asp"--><br />
<br />
where just the code for the nav bar is in a directory called 'includes'<br />
See:<br />
<!-- m --><a class="postlink" href="http://www.smartwebby.com/web_site_design/server_side_includes.asp">http://www.smartwebby.com/web_site_desi ... cludes.asp</a><!-- m --> <br />
<br />
To open a new window you can code this:<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"new_page.html" target="_blank">Link to new page</a><br />
<br />
I don't like frames and really do anything to avoid using them. You have to be very careful about how you link to other pages from within a frame otherwise things can get messy. <br />
<br />
Hope this helps<!--content-->Thank you for ur answer..<br />
I had seeen code for search button in diff sites . Cud u suggestt some easy code or site.<br />
<br />
And thanks for the link..i will try with that<!--content-->I haven't tried this yet but Aerotags might do the site search job. You can Download <!--more--> it here:<br />
<br />
<!-- m --><a class="postlink" href="http://www.topshareware.com/AeroTags-Search-Expert-Download">http://www.topshareware.com/AeroTags-Se ... t-Download</a><!-- m --> <!--more-->-8313.htm <br />
<br />
<br />
A site search facility is something I'd like to add to a site I'm working on but I haven't really persued it yet.<!--content-->thanks for ur reply..The link u gave me to Download <!--more--> the code is not free ...:(<!--content-->If you click Download <!--more--> you'll get the shareware version. It's not complete (I think it limits search results to 6 at a time).<br />
<br />
Here's a cgi searching script...<br />
<br />
<!-- m --><a class="postlink" href="http://www.scriptarchive.com/search.html">http://www.scriptarchive.com/search.html</a><!-- m --> <br />
<br />
or using PHP:<br />
<br />
<!-- m --><a class="postlink" href="http://www.scriptarchive.com/search.html">http://www.scriptarchive.com/search.html</a><!-- m --> <br />
<br />
There are others, just try doing a Google search on 'site search scripts'<br />
<br />
Hope this helps<!--content-->
 
Back
Top