如何从表中获取列并使其成为中继器中的链接?

发布于 2024-11-28 01:01:50 字数 710 浏览 4 评论 0原文

我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

俏︾媚 2024-12-05 01:01:50

您似乎已经使用中继器解决了您的问题。将数据表绑定到中继器并使用元素中的行模板
然后你可以使用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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文