Advertisement
| Hall of Fame |
|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
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: |
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Dim requester As SqlDataReader
Dim connectionstring As String = ConfigurationManager.ConnectionStrings("MMS V4 Leeds current").ConnectionString
Dim conn As New SqlConnection(connectionstring)
Dim comm As New SqlCommand("INSERT INTO WebSysSurvey (WOID, CreatedDate, RequiredDate, Status, WhoRequest, Notes) VALUES (@WOID, @CreatedDate, @RequiredDate, @Status, @WhoRequest, @Notes)", conn)
'add data vairables
comm.Parameters.Add("@WOID", Data.SqlDbType.BigInt)
comm.Parameters("@WOID").Value = System.Int32.Parse(Request.QueryString("WOID"))
comm.Parameters.Add("@CreatedDate", Data.SqlDbType.Date)
comm.Parameters("@CreatedDate").Value = Today()
comm.Parameters.Add("@RequiredDate", Data.SqlDbType.Date)
comm.Parameters("@RequiredDate").Value = DatePicker1.DateValue
comm.Parameters.Add("@Status", Data.SqlDbType.NVarChar)
comm.Parameters("@Status").Value = "Unallocated"
comm.Parameters.Add("@WhoRequest", Data.SqlDbType.NVarChar)
comm.Parameters("@WhoRequest").Value = Request.ServerVariables("LOGON_USER")
comm.Parameters.Add("@Notes", Data.SqlDbType.Text)
comm.Parameters("@Notes").Value = Notes.Text
Try
conn.Open()
requester = comm.ExecuteNonQuery
Catch ex As Exception
Finally
conn.Close()
End Try
End Sub
|