Link to home
Start Free TrialLog in
Avatar of CooperTupelo
CooperTupelo

asked on

confirmation box with return answer driving vb code

I have an application where I have added many rows of data in code behind to a web application.  I want to be able when one of the textbox is changed to make sure the value does not exceed 15 without the users approval.  I want to popup a confirmation box that says are you sure you want the value to exceed 15 and then if the answer is yes proceed, if they anser no exit the sub.  I have hidden values to correspond with each value to reset the textbox if the user clicks Cancel.

This is the on change event;

Private Sub CompressedSectionWidth_TextChanged(ByVal sender As Object, ByVal e As EventArgs)
        Dim strSQL As String
        Dim txtSKU As TextBox = New TextBox
        Dim txtCenterStackQuantity As TextBox = New TextBox
        Dim txtMaxPalletStack As TextBox = New TextBox
        Dim txtPalletType As TextBox = New TextBox
        Dim txtStacksPerPallet As TextBox = New TextBox
        Dim txtMaxGantryStack As TextBox = New TextBox
        Dim txtPalletQuantity As TextBox = New TextBox
        Dim txtUninflatedOuterDiameter As TextBox = New TextBox
        Dim txtUninflatedSectionWidth As TextBox = New TextBox
        Dim txtCompressedSectionWidth As TextBox = New TextBox
        Dim txtTS_Compressed_Section_Width As TextBox = New TextBox
        Dim txt As TextBox = New TextBox
        Dim txtBoxID As Integer = Nothing
        Dim txtConfirm As String

        'Equate the textbox to the sender object which is our TextBox
        txt = sender

        'This gets the number i.e I
        Try
            txtBoxID = Microsoft.VisualBasic.Strings.Mid(txt.ID.ToString, txt.ID.Length - 5, txt.ID.Length)
        Catch ex As Exception
            Try
                txtBoxID = Microsoft.VisualBasic.Strings.Mid(txt.ID.ToString, txt.ID.Length - 4, txt.ID.Length)
            Catch
                Try
                    txtBoxID = Microsoft.VisualBasic.Strings.Mid(txt.ID.ToString, txt.ID.Length - 3, txt.ID.Length)
                Catch
                    Try
                        txtBoxID = Microsoft.VisualBasic.Strings.Mid(txt.ID.ToString, txt.ID.Length - 2, txt.ID.Length)
                    Catch
                        Try
                            txtBoxID = Microsoft.VisualBasic.Strings.Mid(txt.ID.ToString, txt.ID.Length - 1, txt.ID.Length)
                        Catch
                            txtBoxID = Microsoft.VisualBasic.Strings.Mid(txt.ID.ToString, txt.ID.Length, txt.ID.Length)
                        End Try
                    End Try
                End Try
            End Try
        End Try

        'Find our textboxes
        txtSKU = Me.FindControl("txtSKU" & txtBoxID)
        txtCenterStackQuantity = Me.FindControl("txtCenterStackQuantity" & txtBoxID)
        txtMaxPalletStack = Me.FindControl("txtMaxPalletStack" & txtBoxID)
        txtPalletType = Me.FindControl("txtPalletType" & txtBoxID)
        txtStacksPerPallet = Me.FindControl("txtStacksPerPallet" & txtBoxID)
        txtMaxGantryStack = Me.FindControl("txtMaxGantryStack" & txtBoxID)
        txtPalletQuantity = Me.FindControl("txtPalletQuantity" & txtBoxID)
        txtUninflatedOuterDiameter = Me.FindControl("txtUninflatedOuterDiameter" & txtBoxID)
        txtUninflatedSectionWidth = Me.FindControl("txtUninflatedSectionWidth" & txtBoxID)
        txtCompressedSectionWidth = Me.FindControl("txtCompressedSectionWidth" & txtBoxID)
        txtTS_Compressed_Section_Width = Me.FindControl("txtTS_Compressed_Section_Width" & txtBoxID)

_______________________________
''Following code executed if user clicks YES
________________________________

        strSQL = "APP_COMPRESSED_SEC_WIDTH_UPD.UPD_COMPRESSED_SECTION_WIDTH"

            m_objCompressed_Section_Width = New Compressed_Section_Width_DALC
            m_objCompressed_Section_Width.APP_COMPRESSED_SEC_WIDTH_UPD(txtSKU.Text,  _      
                                                                          txtCompressedSectionWidth.Text, strSQL, "prmCSW")
_______________________________________
''Skip to here is user clicks no or cancel
_______________________________________

            txtCompressedSectionWidth.Text = txtHiddenCompressedSectionWidth.Text
            Session("Changed") = True
            Session("SKU") = txtSKU.Text
            Server.Transfer("DataForm.aspx")
    End Sub
Avatar of Daniel Reynolds
Daniel Reynolds
Flag of United States of America image

you will want to create a javascript function that will handle your scenario.

use the clientside onClick event of the button to call the javascript and get the prompt.

Have the javascript return a boolean value. If it is true, it will continue submitting the page, if false, it will not submit the page.

ASKER CERTIFIED SOLUTION
Avatar of Daniel Reynolds
Daniel Reynolds
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of CooperTupelo
CooperTupelo

ASKER

I know if I put something like below(something somewhere off experts exchange searching and searching) in the Load Routine.
A confirmation box will pop up when I change the compressed section width text box.
But no matter if the user checks OK or Cancel nothing happens, which is useless.
If I leave the
AddHandler ctlCompressedSectionWidth.TextChanged, AddressOf CompressedSectionWidth_TextChanged
in the Load routine then no matter if the user checks OK or Cancel the record is changed anyway, which is also useless.
I have no idea how to get the value of the confirmation box back to the routine to control what happens nnext.
If I use a label (which I'm happy to use anything I can capture the users response from) how can I let the user decide wether to accept a value over 15 or return it to the original value?
____________________________________________________________________________________

If Not Page.IsClientScriptBlockRegistered("doConfirm") Then
            Dim buffScriptString As String
            buffScriptString = "<script language='javascript'>" + vbCrLf + _
               "<!-- " + vbCrLf + _
               "function __doConfirm(ctlCompressedSectionWidth) { " + vbCrLf + _
               "if (confirm('Click to confirm message')) { " + vbCrLf + _
               " return true; " + vbCrLf + _
               "} return false; } " + vbCrLf + _
               "--> " + vbCrLf + _
               "</script>"

            Page.RegisterClientScriptBlock("doConfirm", buffScriptString)
        End If

ctlCompressedSectionWidth.Attributes.Add("onchange", "return __doConfirm(this);")
I have converted a copy of this project over to ASP.NET 2005, in case there is someway to accomplish what I need using it that was not available iin ASP.NET 2003.
I will go ahead and accept this answer though it does not allow me to put a confirmation box on the screen as I would like.  No one else has answered follow up comments.  I created instead a panel with a yes and no button on it that appears and disappears based on the value of some session variables and a lot of if statements.  ASP.NET just isn't very programmer friendly in my opinion.
I created a panel with a yes and no button on it that appears and disappears based on the value of some session variables and a lot of if statements.  Something others may want to consider.