本文介绍了使用gridview插入gridview记录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在gridview中的运行模式如下



Staffid姓名问题1问题2问题3问题4



1 Raja 4 3 2 1

2 Koushik 3 2 1 5

3 Ramesh 2 4 3 2



表格结构如下



Staffid

员工姓名

问题1

问题2

问题3

问题4



我想插入上面的gridview记录使用已存储的程序



在表中我想保存记录如下



员工姓名问题1问题2问题3问题4

1 Raja 4 3 2 1

2 Koushik 3 2 1 5

3 Ramesh 2 4 3 2



如何使用csharp在asp.net中做什么。



此致,

Narasiman P.

In Run mode in gridview as follows

Staffid Staffname Question1 Question2 Question3 Question4

1 Raja 4 3 2 1
2 Koushik 3 2 1 5
3 Ramesh 2 4 3 2

Table structure as follows

Staffid
Staffname
Question1
Question2
Question3
Question4

I want to insert the above gridview record USING STORED PROCEDURE

In table i want to save the record as follows

Staffid Staffname Question1 Question2 Question3 Question4
1 Raja 4 3 2 1
2 Koushik 3 2 1 5
3 Ramesh 2 4 3 2

for that how can do in asp.net using csharp.

Regards,
Narasiman P.

推荐答案


这篇关于使用gridview插入gridview记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 18:01