-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeaveFeedback.aspx.vb
32 lines (28 loc) · 1.55 KB
/
LeaveFeedback.aspx.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Partial Class LeaveFeedback
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
SqlDataSource1.SelectParameters("varUser").DefaultValue = Profile.UserName
MultiView1.ActiveViewIndex = 0
End Sub
Protected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridView1.SelectedIndexChanged
MultiView1.ActiveViewIndex = 1
End Sub
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim varUser As String = Profile.UserName
Dim varID As Integer = GridView1.SelectedRow.Cells(2).Text
Dim varFeedback As String = TextBox1.Text
Dim varPositiveOrNegative As Integer = RadioButtonList1.SelectedValue
Dim varFeedbackLeftFor As String
If GridView1.SelectedRow.Cells(3).Text = varUser Then
varFeedbackLeftFor = GridView1.SelectedRow.Cells(4).Text
Else
varFeedbackLeftFor = GridView1.SelectedRow.Cells(3).Text
End If
SqlDataSource1.InsertParameters("varUser").DefaultValue = varUser
SqlDataSource1.InsertParameters("varID").DefaultValue = varID
SqlDataSource1.InsertParameters("varFeedback").DefaultValue = varFeedback
SqlDataSource1.InsertParameters("varFeedbackLeftFor").DefaultValue = varFeedbackLeftFor
SqlDataSource1.InsertParameters("varPositiveOrNegative").DefaultValue = varPositiveOrNegative
SqlDataSource1.Insert()
End Sub
End Class