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


Similar Messages:

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

Web Forms :: Meta Tags In Master Page?

Feb 17, 2011

I have a number of .aspx pages inheriting from a common master page. I need to insert <meta> tags into the master page and this varies from page to page. What is easiest and fastest way to get this done. The thing is, my site is already developed so I dont want to rework/rewrite any of the code.

View 4 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 :: Control Meta Tags Of Response HTML?

Feb 28, 2011

I'm quite new to ASP.net and developing my first website. I've created a Master Page Webform, and several other webforms based on that. The trouble is that the Master Page webform's meta tags (description, keywords and author) is rendered for all web pages. Is there a way in the web-form's Page_Load() event to set this tag? I tried to set it using response.write(), but it added this tag at the beginning of the document, not inside the <head> tag where it is supposed to be? Do any of you know how to write this inside the <head> tag? [URL]

View 4 Replies

Web Forms :: Dynamic Meta Tags And Aspx Files?

Dec 8, 2010

1 - I am trying to create on the fly dynamic meta tags: keywords and description (possibly others later). I have managed to do so however when I view the source page I find the meta tags at the end of the Head tag and everything else is before them like reference to JS files and CSS files. I want them to be right after the title tag and then everything else is listed after them: css, js, javascript functions, etc.

2 - I am also trying to create dynamic ASPX pages. Meaning for example: I have a client who has a dynamic website that consists of 3 pages: home page, about page and contact page. He wants to add more pages to his website in the CMS software I created for him. He wants to add History.aspx page for example which is simply created using an editor (no fancy coding like gallery, products, news, etc) but when he hits the save button, I want the new page to be saved as a stand alone page and I want the navigation menu to be updated to the new links which one of them would be history.aspx. I don't want the page to be displayed as page.aspx?Id=history. I want it to have its own name. How can this be possible especially when it is not compiled and I want to add other aspx features such as the caching feature like:

<%@
OutputCache
Duration="3"
VaryByParam="none" %>=

View 9 Replies

Web Forms :: Adding Meta Tags For Facebook Preview?

Apr 24, 2010

I've added meta tags in my master page for preview on Facebook. The tags I've added are:

<meta name="title" content="Just Think Art" />

View 1 Replies

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

Web Forms :: Populate SEO Keywords And Description Meta Tags From Database

Jun 6, 2012

In my website i have some users these users have their own page that they can put their product on it.

their page name is Store.aspx 

and i have users table i want my users insert their keyword in DB  after that thier keyword fetch to meta tag i want all my users have differrent mete tag in their page how i can do it ?

this is my users table

Id
Name
Tell
Keyword1
Keyword2
Keyword3

View 1 Replies

Web Forms :: Populate SEO Keywords And Description Meta Tags From SQL Server Database

Jun 8, 2012

I use these code to show keyword from my data base in metatag
 
SqlCommand _cmd = new SqlCommand("select Keyword1,Keyword2,Keyword3 from House_info", _cn);
_cn.Open();
SqlDataReader _dr = _cmd.ExecuteReader();
while (_dr.Read())

[Code].....

in my page meta tag show above keyword not my keywords from database

View 1 Replies

Web Forms :: Automatic Page Redirect On Session Timeout Using Meta Tags

Dec 15, 2013

I want to redirect to login page,when session is timedout. Here is the link i am following [URL] ...

For example:   If i am in the page called http://localhost/RealWebApp/Dashboard/RealProfile.aspx

when session is timed out, this page is showing like http://localhost/RealWebApp/Dashboard/logout.aspx

But i wanted to be like : http://localhost/RealWebApp/logout.aspx

If I use like this in master page:

meta.Content = Convert.ToString(Session.Timeout * 60) + ";url=../LogOut.aspx";

then it is redirecting to http://localhost/Logout.aspx

But i wanted to be like : http://localhost/RealWebApp/logout.aspx

How to accomplish this:

protected void Page_Load(object sender, EventArgs e) {
HtmlMeta meta = new HtmlMeta();
meta.HttpEquiv = "Refresh";
meta.Content = Convert.ToString(Session.Timeout * 60) + ";url=LogOut.aspx";
this.Page.Header.Controls.Add(meta);
}

View 1 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

Dynamic Meta Tags Using SQL And VB?

Jul 27, 2010

I am new to ASP.NET and I am trying to dynamically bind the Meta Keywords, Title and Description from a SQL database to a MasterPage / Code Behind file using VB. I need to know what goes into the Master Page and what goes in the Code Behind file. My database is named "Products" and the columns I need to bind are Keywords, WebTitle, and Description.

View 2 Replies

Where To Place Child Meta Tags

Dec 5, 2010

I am using a master page and few child pages... I have my common meta tags placed in the master page but i have special tags for every child page? where can I place it or how can I do it?

View 3 Replies

C# - Reading Meta Tags Dynamically?

Jan 11, 2010

how to simply write the meta tags in an asp.net page. The meta tags have been inserted in the page and I just want to loop through them and write the keywords tag. I don't have a probably adding dynamically, just reading.

View 2 Replies

C# & Adding Dynamic META Tags?

Apr 30, 2010

I have this code

protected void Page_Load(object sender, EventArgs e)
{
DataSet.DestinationsDataTable GetDestinations = (DataSet.DestinationsDataTable)dta.GetData();[code]....And it's returning this error (on a content page)The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).

View 2 Replies

WebMatrix :: Confused About Where To Put Meta Tags?

Apr 1, 2011

f I put the description meta tag in the cshtml for my page (below any code block), and I'm using a _SiteLayout page, the tag gets inserted at the bottom of the rendered page. How do I ensure that the meta description tag gets inserted into the <head> section. Is there a helper I'm missing

View 3 Replies

Adding New Meta Tags With Property And Content?

Sep 23, 2010

I programatically add meta tags to the head of each page using htmlhead, specifying the name and content. I now need to add new meta tags with property and content.

View 1 Replies

Localization :: Localize META Tags From Code Behind?

Aug 3, 2010

I understand how to localize controls like buttons etc. I'm wondering how to accomplish the same thing with META tags.We use the following code to set META tags from code behind:

Title = AppConfig.CompanyName +
" | [some prose that is specific to the page";
// Build META tags

[code]...

View 1 Replies

Configuration :: Meta Tags On All Pages Of 1.1 Site?

Feb 15, 2011

I know it is possible to add custom headers via the httpProtocol >>customHeaders section of the web.config for 2.0+ sites but this is not allowed on 1.1. Is there an easy way to add meta tags to all pages of a site? I've already tried the httpHeaders tab in iis(6) but with no luck.

I need to force ie7 mode on ie8 for all pages of my 1.1 sites.

View 1 Replies

Master Page Contentplaceholderid For Meta Tags And Title?

Jul 28, 2010

I have a txt file with a list of <titles><meta keyword> and <meta description> and the link that these titles and tags should be associated with. how do i set the master page contentplaceholderid to read the text file and set the tags and titles accourding the the link on the txt file.

View 2 Replies

Web Forms :: Adding Meta Tags In ASPX Page Within Master Page

Aug 28, 2012

I need to add Meta tags, description and keywords in aspx page. My aspx pages are in master page and I have already added meta tags and description in my Master Page.

 Now I want add in my other pages also so if someone search my site on GOOGLE it should look like same as this:

[URL] ...

How to achieve this?

View 1 Replies

How To Add Title And Meta Tags For Content Pages In A Project Base On Master And Content Page

Oct 17, 2010

how can i add title and meta tags for content pages in a project base on master and content page(dinamically) ?

i used the blow method for master page :

[code]....

and the error is :(in line *)

Error 17 'System.Web.UI.MasterPage' does not contain a definition for 'SetMetaTags' and no extension method 'SetMetaTags' accepting a first argument of type 'System.Web.UI.MasterPage' could be found (are you missing a using directive or an assembly reference?)

View 3 Replies







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