本文介绍了如何在ASP.NET和SQL服务器中实现关键字搜索的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好



我正在开展博客类项目,我需要设置搜索文章。

我正在使用sql server和asp.net。



我使用文章名称和一些与文章相关的关键字或标签设置了搜索。



我的问题是如何设置特定文章的关键字或标签列表



我尝试过:



我目前所做的是



srno | articlename |描述|关键字

1 | abc |完整的文章文本|一些相关的关键字



一个包含上述列的表格,其中可以搜索文章名称和关键字或标签。

我还将所有关键字或标签分开带分隔符,



关键字列表是每篇文章4-5个关键字或标签。每篇文章最多10个关键字或标签。

建议在博客表栏中使用关键字或标签



请告知



谢谢

Hi Everyone

I am working on a blog type project where I need to set up search for articles.
I am using sql server and asp.net.

I have set up search using article name and some keywords or tags related to the article.

My issue is how to set up keywords or tags list for a particular article

What I have tried:

What I have done currently is

srno | articlename | description | keywords
1 | abc | complete article text | some relevant keywords

A table with the above columns where articlename and keywords or tags will be searchable.
I also separated all keywords or tags with a delimiter ","

The keyword list is 4-5 keywords or tags per article. Max 10 keywords or tags per article.
Is it advisable to use keywords or tags in the blog table columns

Please advise

Thankyou

推荐答案


这篇关于如何在ASP.NET和SQL服务器中实现关键字搜索的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 15:05