I have some issue where I keep getting an error of my system on web server. But, when I run on local server no error come out.
The error is on Try...Catch exception. It keep come out a message "failed to upload a file" while the file successfully insert into a database.
I don't know why this problem happen. Can someone explain to me?.
Try
'check fileupload
If uploadPic.HasFile Then
Dim filecount = 0
'connection string
Dim conn As New SqlConnection("server=jkprod01; database=whrepairing; user=sa; password=sa")
conn.Open()
'get the multiple file from file upload
Dim hfc As HttpFileCollection = request.Files
sqlstring = "select * from dbo.[mst_jigtool] where jigtool_code='" & jigCode.Text & "' and jigtool_type='" & regType.SelectedValue & "'"
cmd = New SqlCommand(sqlstring, conn)
dr = cmd.ExecuteReader
dr.Read()
If dr.HasRows = False Then
dr.Close()
cmd.Dispose()
For a As Integer = 0 To hfc.Count - 1
Dim hpf As HttpPostedFile = hfc(a)
fs = hpf.InputStream
br = New BinaryReader(fs)
bytes = br.ReadBytes(Convert.ToInt32(fs.Length))
sqlstring = "insert into mst_jigtool ([jigtool_code], [jigtool_type], [jigtool_address], [jigtool_image], [upd_by], [created_by], [date_created], [upd_date]) VALUES ('" & jigCode.Text & "', '" & regType.SelectedValue & "', '" & jigAdd.Text & "', @pics, '" & Class1.user_id & "', '" & Class1.user_id & "', getdate(), getdate())"
cmd = New SqlCommand(sqlstring, conn)
cmd.Parameters.AddWithValue("@pics", bytes)
fs = Nothing
br = Nothing
bytes = Nothing
cmd.Dispose()
filecount += 1
dr = cmd.ExecuteReader
dr.Close()
conn.Close()
cmd.Dispose()
Next
Dim msgRslt As MsgBoxResult = MsgBox("Jig tool succussfully registered. Do you want to continue register jigtool? .", MsgBoxStyle.YesNo)
If msgRslt = MsgBoxResult.Yes Then
response.Redirect("regJig.aspx")
ElseIf msgRslt = MsgBoxResult.No Then
response.Redirect("home.aspx")
End If
Else
Dim msgRslt As MsgBoxResult = MsgBox("Jig tool already registered !/n Do you want to update ?", MsgBoxStyle.YesNo)
If msgRslt = MsgBoxResult.Yes Then
For a As Integer = 0 To hfc.Count - 1
Dim hpf As HttpPostedFile = hfc(a)
fs = hpf.InputStream
br = New BinaryReader(fs)
bytes = br.ReadBytes(Convert.ToInt32(fs.Length))
Dim conn2 As New SqlConnection("server=jkprod01; database=whrepairing; user=sa; password=sa")
conn2.Open()
Dim sqlstring2 = "update mst_jigtool set jigtool_type = '" & regType.SelectedValue & "',jigtool_address = '" & jigAdd.Text & "', jigtool_image = @pics, upd_by='" & Class1.user_id & "', upd_date = getdate() where jigtool_code='" & jigCode.Text & "' and jigtool_type='" & regType.SelectedValue & "' and jigtool_address = '" & jigAdd.Text & "'"
Dim cmd2 = New SqlCommand(sqlstring2, conn2)
cmd2.Parameters.AddWithValue("@pics", bytes)
fs = Nothing
br = Nothing
bytes = Nothing
cmd2.Dispose()
filecount += 1
dr = cmd.ExecuteReader
cmd2.Dispose()
conn2.Close()
Next
Dim msgRslt1 As MsgBoxResult = MsgBox("Jig tool succussfully updated. Do you want to continue register jigtool? .", MsgBoxStyle.YesNo)
If msgRslt1 = MsgBoxResult.Yes Then
response.Redirect("regJig.aspx")
ElseIf msgRslt1 = MsgBoxResult.No Then
response.Redirect("home.aspx")
End If
ElseIf msgRslt = MsgBoxResult.No Then
response.Redirect("regJig.aspx")
End If
End If
dr.Close()
cmd.Dispose()
End If
Catch ex As Exception
response.Write("<script>alert('Upload Failed!. Try again.')</script>")
End Try