Web Hosting Talk







View Full Version : Tags


abr369
12-28-2009, 02:23 AM
Hello Friend,

I am developing a site that contains photos & videos.For this we are adding "Tag" system to site.But i don't know about tag system that's why I request you please give me any tutorial about tags in VB.Net


Thank You.

Hosting24
12-28-2009, 07:31 AM
Do you speak about tags in general? I mean do you want tags system like in Wordpress?

Chris-QuadHost
12-28-2009, 08:53 AM
Do you speak about tags in general? I mean do you want tags system like in Wordpress?

I think this is what the author means. A "has many and belongs to" type relationship.

Hosting24
12-28-2009, 09:02 AM
What do you want to do with tags? Display them under each photo/video and allow searching of content by tags? If so, then it's easier than you could ever think :)

abr369
12-29-2009, 06:16 AM
What do you want to do with tags? Display them under each photo/video and allow searching of content by tags? If so, then it's easier than you could ever think :)


Yes Exactly.

Hosting24
12-29-2009, 06:32 AM
Well, just add a new field "tags" to your table. Then use this type of query to search for videos by tags:

SELECT * FROM videos WHERE tags LIKE '%$keywords%' (where $keywords is keyword submitted by visitor)