Code To Add To Make Site Visible In Search Engines

Nov 19, 2010

Still new. What can I add to my site to get picked up by serch engines without paying for services? Right now if I do a search My site does not appear.

View 8 Replies


Similar Messages:

Web Forms :: Meta Tags For Search Engines

Feb 10, 2010

I seem to be having an issue with our meta-tags as they are not being picked up by search engines. It has nothing to do with the fact that I don't know how to create them, but I think it has to do with the way we need to set up our site with our hosting company. Our hosting company requires that we have a page called Default.asp with a script that forwards requests to default.aspx which is currently set up as follows:

[Code]....

The Default.aspx page uses a master page. Our meta-tag is currently setup to index the default.asp page, but not to index or follow any other pages on the site. I also have a robot.txt file that states not index or follow any of the pages within the web site. Do I have the meta-tags in the wrong place? Should they be in the Default.aspx page or on the master page instead? If so, how do I format my tags, as if I just copy and paste them, get all sorts of issues.

View 3 Replies

Handle Pages That Move To A New Url With Regards To Search Engines?

May 7, 2010

I have done some refactoring on a asp.net mvc application already deployed to a live web site. Among the refactoring was moving functionality to a new controller, causing some urls to change. Shortly after the various search engine robots start hammering the old urls.What is the right way to handle this in general?


Ignore it? In time the SEs should find out that they get nothing but 400 from the old urls.Block old urls with robots.txt?Continue to catch the old urls, then redirect to new ones? Users navigating the site would never get the redirection as the urls are updated through-out the new version of the site. I see it as garbage code - unless it could be handled by some fancy routing?Other?

View 2 Replies

Completely Hide Website From Search Engines?

Feb 20, 2010

Whats the best recommended way yo hide my staging website from search engines, i Googled it and found some says that i should put a metatag, and some said that i should put a text file inside my website directory, i want to know the standard way.

my current website is in asp.net, while i believe that it must be a common way for any website whatever its programming language.

View 7 Replies

Web Forms :: Displaying Data From Search Engines?

Mar 25, 2010

I have recently adapted a project and I would like some help with the problem. I have a textbox on a webpage. When someone enters a string and submits the page, I want to search search engines such as Google, Yahoo, Bing, etc and display the results according to relevance from the various search engines.

I have currently looked into the httpwebrequest and related classes. Also, I am new to ASP.NET, 17, and want to do this as a school project.

View 4 Replies

Web Forms :: Stop Search Engines Firing Events?

Jan 7, 2011

How can I stop Search engines firing events.....

I have a button that adds a product to my shopping basket. it has a postbackurl="../shoppingbasket.aspx?productID=1" when the page is loaded I get the querystring (ProductID) and add it to my database. Well I have been watching the database and I can see that in 1 day the whole of my product range has been added to the shopping basket, not only that but every time it fires the event it creates a NEW basket thus messing up my shopping basket ID's.

So my question is, I want the search engines to index my product pages, BUT I do not want then to add to my basket ( i.e. firing the postbackurl ) I have tried may things like rel="nofollow" adding the URL to my robot.txt. I don't really want to use recaptha as I have do before and have many complaits about it.

View 10 Replies

Hiding A Page From Search Engines Like Google (like Facebook's Security Settings)

Dec 27, 2010

I am using asp.net 2010, and I would like to know how can I go about completely hiding a particular page from search engines, similar to how Facebook's security settings are set (for example, if I search for my real name, my fb page will now show up in google).

View 3 Replies

Way To Make A Label Visible For A Seccond And Then Make It Visible =false?

Apr 16, 2010

there is a way to make a label visible for a seccond and then make it visible =false ; ?without javascript... just c# ,,,

View 4 Replies

Custom Server Controls :: How To Make Controls Inside A Template Visible To Code-behind

Nov 27, 2010

I have created a custom control that implements Templates (based on Panel controls) ... I can do a FindControl to locate imbedded controls. This allows me to get and set values in the imbedded controls, but I want to be able to reference the imbedded controls like they are properties of the associated panel. Here is a sample of how my custom control now works:

<cc:CustomControl ID="myCustomControl" runat="server">
<PanelTemplate>
<asp:TextBox ID="myTextBox" runat="server"></asp:TextBox>
</PanelTemplate>
</cc:CustomControl>

I can do the following (where my custom control has given the panel hosting the template the name "myPanel"):
Dim txt As TextBox = myCustomControl.myPanel.FindControl("myTextBox")
txt.Text = "Some text to put in TextBox"

What I want to do is:

myCustomControl.myPanel.myTextBox.Text = "Some text to put in TextBox"

View 2 Replies

SQL Server :: Minimum Search Engine - Add A Search Mechanism To The Site

Jan 19, 2011

I have a database filled with information about a bunch of different articles. I'm trying to add a search mechanisim to the site where you would type in what you are looking for, and it would search through the articles finding the most appropriate article. In my database I have a bunch of different fields that will help find the best article. For example, for each article, there is a title, description, category, a bunch of tags, Number of page views, number of votes, and the sum of all the vote scores. All this informaiton i believe can be used to gather the most relevent article based on the persons search terms. The problem is I don't know what to do with this information. What I would like to do is have a scoring system where the highest score is the first result and the lowest score is the last result. Where the first result is the most relevent.

So for example: The user types in "Korean War" it looks through all the articles, and gives all the articles with "Korean War" in the title + 1, all the tags with "Korean" or "War" + .1, then adds the number of views/1000, and then adds the average vote/4. (I just made that scoring system up on the spot, I would need to do some testing of course). Then it would sort the articles based upon the score it recieved. Is there anyway to do this with a select statement where I can run all of the calculations and then sort them with an "ORDER BY" command? Or would i have to have the server side code do the calculations store them in an array, and then sort them in the array? Or is there a better way of doing this that I might not know of (which is certainly possible).

View 3 Replies

Search Functionality In Site To Search Within Own Site?

Feb 20, 2010

I would like to have a search functionality in my site to search within my site. is it possible to have our own search engine.

View 2 Replies

DataSource Controls :: Search In A Database - Make A TEXTBOX And A Button "Search"?

Jan 18, 2010

now have tried to locate and find anything about how to make a

TEXTBOX and A Button "Search"

Problem is that I have made this "bellow" and when I then enter a "value" into texbox2 and hit enter on the button it wont show me the "emnenummer" that I have requested.

im not even sure this is the correct way to do a "search"

<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><asp:Button ID="Button1"
runat="server" Text="Button" />
<asp:SqlDataSource ID="SqlDataSource1" runat="server"[code]....

View 3 Replies

How To Make Visible RegularExpressionValidator

Feb 23, 2010

I would like to raise error by myself and use reqularexpressionvalidator to show it's text. (My idea is to reuse this control.) I don't remember what property should I use, and what to assign to show the message from control. How to raise error for this control from code?

View 3 Replies

Vb.net - How To Make The Image Visible From Everywhere

Jan 8, 2010

i have this code -

<td id="td_h1" runat="server" style="background-image:url(images/img_new.jpg);vertical-align:top">
<div id="title_1" runat="server" class="caption" >This is New</div>
</td>

here's the problem -this is the code from the .master.aspx page. Some file access this master page from different folders, and some files from root. And the img_new is visible only from root files or files in folder. how do i make that image visible from everywhere?

View 1 Replies

AJAX :: How To Make Search Like Google Search (ajax Search Box)

Apr 30, 2010

i want make the search box for my website same like google have for it's site(ajax search box).i want as soon as i type something in my search box the realted link's of my site should be availble for the user.

View 2 Replies

Make A Button Visible For Two Roles?

Jan 5, 2011

I am trying to make a button visible for users that are either in admin or manager role. I can't seem to figure it out,

Code:
teamLists.Visible = Page.User.IsInRole("Administrators", "Manager")

View 1 Replies

Dynamically Make Visible Certain Panels?

Jan 11, 2010

How do I capture other events in an asp.net textbox on a webpage in more of a way in which a windows app does? For example, if I want to handle when someone just presses a key (keydown) on a textbox in a webpage?

The functionality that we want to create breaks down like this:

We want to create a "smart" search box at the top of our page. When the user starts typing, a little panel or some element should become visible and it will have some check boxes on it. They can search for one or many different types of searches: First Name, Last Name, Business Name, ZIP, Customer Number, and Contact Info. As they begin typing their search, we need it to execute some code that attempts to figure out exactly what they are searching. So if it can tell they are typing in alphabetic characters and not numbers, then we know to NOT check the Customer Number box, but we will want to check the First Name, Last Name, and Business Name boxes. If they start typing a number, we know that we can check the Customer Number box and leave the First Name and Last Name, etc boxes unchecked. If they type a number that is 5 digits, then we know to check the ZIP and Customer Numbers both. Any other length number characters and the ZIP will be unchecked. And any other rules like these that we might want to implement in the future. The idea here is we will almost always be able to tell what someone is searching, but the user can always check any box that they want to search for if they so choose. For example, if a business is named "123 Plumbing Company" and they just want to search the Business Name field for a number, they can over ride it and do that. Otherwise, they just can blindly type their search and hit enter and the program will usually know what kind of search they are trying to do.

I come from a strong windows app development background and have just recently tried to do some web development professionally. A quick few sentences on what philosophy I am missing out on as far as a more robust and "Windows App-like" webpage would be appreciated if anyone wants to coach me on that area and point me in the right direction!

Also, in my example we are using master pages. So if you can imagine a typical master page that has a logo top left and a search box and button top right, then you can picture what we have. Its simple looking. But with the content page being a separate aspx page, we are having trouble referencing it after a search is performed anyway. So what I mean by all this is The masterpage.master has a search textbox. They type something, hit enter. We then want a gridview that is on our default.aspx page to update with the results of the event that was fired from the masterpage.master.

My windows app background tells me to just point to it like I would from two different forms. Like if I had a form1 with a search box on it and I wanted it to show up the results on form2, I would just say Form2.Show: Form2.GridView = whatever.

Of course, with my confusion of what the scope of these asp.net pages is, I am having a difficult time just visualizing everything and how they are inter-related.

So I guess to recap here:

1) How do I tap into more events with textboxes or any other asp.net control. Is the answer AJAX? If so, can you elaborate just a little bit?

2) How would I use the keypress or keydown type of event to make a panel or some kind of content holder to become visible when the textbox gets focus from the cursor and go back to being invisible if it loses focus.

3) What about the scope in which asp.net pages behave?

View 29 Replies

Make The Panel Visible In The Page

May 7, 2010

i have a panel(visible false) in a page and a user control. i have a button in a user control when i click that user control button then i need to make the panel visible in the page... (panel which is not in the user control)...

View 3 Replies

AJAX :: Make All DropDownExtender Visible?

Aug 31, 2010

I use DropDownExtenders everywhere in my project, but it bothers me that it's not visible all the time. It looks like an usual TextBox :-(

<script
type="text/javascript">

View 3 Replies

How To Make The RequiredField Validator Visible

Feb 16, 2010

Using javascript or jquery, how can I make a Required Field Validator control (of ASP.NET) visible. If we check the viewsource of the Required Field valiator, we can see that the visibility is false initially. $("#spanReqFieldValidator").show() / fadeIn() wont work.

From googling, I understand that jQuery has some issues with visibility attribute.

View 2 Replies

Make Panel Visible Using Javascript?

Oct 14, 2010

I have a Panel with property, Visible set to False

<asp:Panel ID="pnlUpload" runat="server" Visible="False" />

and i try to make it visible using javascript as code below

document.getElementById('<%= Panel1.ClientID %>').style.visibility = 'visible';

View 4 Replies

Make .NET AJAX CalendarExtender Always Visible?

Jan 18, 2011

I'd like to be able to have the .NET AJAX CalendarExtender show on Load without having to click in a TextBox. If I can simulate a TextBox being clicked so the CalendarExtender will show I'll take that too.

View 1 Replies

Web Forms :: How To Make The Sub Application's Css Visible To Its Pages

Feb 26, 2010

I have a project that uses a CSSHandler with images and css style sheets in the project root directory in their own folders (img, styles, App_themes). I also have a sub application that comes with a MasterPage. The sub application is located in a separate folder in the root directory with all its images, css, and pages. Functionally the sub application works, but the formatting is lost. The images and colors are not displayed. How can I make the sub application's css visible to its pages? It has probably something to do with the way the CSS handler delivers themes and css style sheets?

View 1 Replies

Make Using Javascript A Table Row Visible Or Invisible?

Jun 7, 2010

how can i make using javascript a table row visible or invisible when checkbox is checked? also i need table row runat="server" so when postback page it will not loose table row state.

View 9 Replies

Web Forms :: XmlHttp To Make Link Visible?

Jul 29, 2010

I've successfully used the xmlhttp object to redirect (xmlHttp.open) user to another page but I have the following issue ..I have a classic ASP application that has some very antiquated "admininstration" functionality built in that loops through a SQL table with NT Accounts and allows the link to only be visible to users with NT account in the table. We have since moved on to manage permission to our .net apps using an object that looks for your NT account in an Active Directory Group. So, I would like to use the .net object to return True if NT account is a member of the group and then display the link (which is in the classic ASP page) if the .net object returned true.I don't know if that can be done .. I just know I'm able to return the TRUE value using the xmlHTTP ajax object but I only want to set visibility of a link rather than xmlHttp.open to redirect to another page.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved