如何从表中获取列并使其成为中继器中的链接?
我在sql server 2008中开发一个表表
如下
表名:tbqst(tablequestion)
列: qstcod(问题代码)
qstdsp(question description)
qstsubby(question submitted by)
qstdat(question date)
qstans(question answer)
现在我在这个表中手动添加了4条记录。
现在我需要输出为:
q.1 什么是 asp.net?(这是第一个问题的问题描述)
q.2 什么是 vb.net ?(这是第二个问题的问题描述)
q.3 什么是 sql ? (这是第三个问题的问题描述)
q.4 什么是oracle? (这是第四个问题的问题描述)
这些问题也应该充当链接 当我点击任何问题时,它应该显示
1) 所点击问题的问题描述。
2) qstans 即我在表中手动输入的问题答案
3) qstsubby
4) qstdat
另外,当我再次单击特定问题时,显示的内容应该折叠起来,对于所有 4 个问题也是如此。
请记住,我只能使用 REPEATER 来解决这个问题。
请帮助我...... 任何帮助表示赞赏
I develop a table in sql server 2008
Table is as follow
Table name: tbqst(tablequestion)
Columns:
qstcod(question code)
qstdsp(question description)
qstsubby(question submitted by)
qstdat(question date)
qstans(question answer)
Now i added 4 records manually in this table.
Now i need output as:
q.1 what is asp.net?(this is ques. description of 1st question)
q.2 what is vb.net ?(this is ques. description of 2nd question)
q.3 what is sql? (this is ques. description of 3rd question)
q.4 what is oracle? (this is ques. description of 4th question)
Also these questions should act as links
When i click on any question, it should display
1) question description of the question clicked.
2) qstans i.e. question answer that i enter manually in table
3) qstsubby
4) qstdat
Also, when i again click on particular question,the contents displayed should get collapsed and similarly for all the 4 questions.
And kept in mind that i can use only REPEATER for this problem.
Plz help me......
Any help is appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎已经使用中继器解决了您的问题。将数据表绑定到中继器并使用元素中的行模板
然后你可以使用javascript来显示/隐藏答案部分
You seem already to have a solution to your problem, using the repeater. Bind the datatable to your repeater and use template your rows with in element
Then you could use javascript to show/hide the answer section