0

我在 DotNetNuke 中使用表单和列表模块,并想设置一个查询来过滤结果集并返回仅由用户提交的记录(不显示其他人)

我对 DNN 表并不十分熟悉,我认为它会类似于下面的内容,但我不确定 WHERE 子句中的内容......

我想会是

SELECT * FROM ---tablename--- WHERE ...

提前致谢。

编辑:

解决方法:在模块的List Settings中插入一条过滤语句:

[Created by_UDT_Original] = ‘[User:UserName]’
4

1 回答 1

0

The FNL module uses it's own table structure, so querying against it will be fairly complex, and will vary based on the columns and types you created when configuring the module.

That being said, it is possible to have the module only display an individual user's data, that is either configured through the Module Settings, or within the FnL configuration itself.

于 2013-04-04T17:13:27.513 回答