我想问,我有表格测验当用户单击下一步按钮时,它将出现下一个问题和下一个选择,但问题和来自共享点列表的选择,但我在 asp.net 工作
你能帮助我吗?谢谢
我想问,我有表格测验当用户单击下一步按钮时,它将出现下一个问题和下一个选择,但问题和来自共享点列表的选择,但我在 asp.net 工作
你能帮助我吗?谢谢
您可以使用 caml 查询来查询 SharePoint 列表中的问题和答案。只需查询下一个问题 ID 或类似的东西。获取 SPListitem 并从中获取问题和答案。
像这样
SPQuery query = new SPQuery();
query.Query = "
<Where>
<Or>
<Eq>
<FieldRef Name=\"ID\" />
<Value Type=\"Number\">1</Value>
</Eq>
</Or>
</Where>";
SPListItemCollection item = questionList.getItems(query);
// Get the question and the answers from the item and show them on screen.