Well, yes and no. If your page is 100% dynamic then a search engine will not be able to store a URL to get back a particular state. But with upshot and many of these other dynamic client side frameworks they try really hard to update the URL to represent
the current state of the page. This URL is then supposed to be able to be bookmarked and then accessible on the server later. So then this could potentially be stored by a search engine so that search results could have a URL back to a particular state in
your dynamic page. But again, this requires your server to be able to produce a page that represents the dynamically updated URL from your dynamic behavior.
thaicarrot
Contributor
5120 Points
1459 Posts
Are we lost HTML5 sementic web?
Apr 12, 2012 11:37 AM|LINK
Hi,
It seems like we are lost HTML5 sementic web when we are using knockout plus UpShot libraries.
Am I correct?
We need spider web rather than silverlight's brother 20%
<table>
<caption>Product Inventory Table</caption>
<tr>
<th>Manufacturer</th>
<th>Name</th>
<th>Price</th>
<th>Rating</th>
</tr>
<tbody data-bind="foreach: products">
<tr class="product">
<td data-bind="text: Manufacturer"></td>
<td data-bind="text: Name" class="name"></td>
<td data-bind="text: '$' + Price().toFixed(2)" class="price"></td>
<td data-bind="text: Rating"></td>
</tr>
</tbody>
</table>
Weera
BrockAllen
All-Star
27502 Points
4895 Posts
MVP
Re: Are we lost HTML5 sementic web?
Apr 12, 2012 01:04 PM|LINK
Well, yes and no. If your page is 100% dynamic then a search engine will not be able to store a URL to get back a particular state. But with upshot and many of these other dynamic client side frameworks they try really hard to update the URL to represent the current state of the page. This URL is then supposed to be able to be bookmarked and then accessible on the server later. So then this could potentially be stored by a search engine so that search results could have a URL back to a particular state in your dynamic page. But again, this requires your server to be able to produce a page that represents the dynamically updated URL from your dynamic behavior.
DevelopMentor | http://www.develop.com
thinktecture | http://www.thinktecture.com/
BrockAllen
All-Star
27502 Points
4895 Posts
MVP
Re: Are we lost HTML5 sementic web?
Apr 12, 2012 01:15 PM|LINK
Also, check out http://www.sitemaps.org/protocol.html -- this is how you inform search engines about your dynamic content.
DevelopMentor | http://www.develop.com
thinktecture | http://www.thinktecture.com/
thaicarrot
Contributor
5120 Points
1459 Posts
Re: Are we lost HTML5 sementic web?
Apr 12, 2012 08:07 PM|LINK
I am talking about world database like HTML5 not RDF. Never mind this should be closed.
Weera