Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个 webpart,它使用 SearchHelper 根据搜索参数获取智能搜索结果,以通过 Ajax 在实时搜索中显示。
我正在寻找一种使用数据集显示结果的方法
SearchHelper.Search(SearchParameters)
返回的方式与 SearchResults webpart 的工作方式相同。
好吧,没关系,找到答案了。答案是只使用 BasicRepeater。
var results = SearchHelper.Search(sp); BasicRepeater br = new BasicRepeater(); br.DataSource = results; br.ItemTemplate = CMSDataProperties.LoadTransformation(this, CMS.Root.SmartSearchResults", false);