Updating database

Can someone please tell me what I am missing... I am trying to update a record with information a user types into a textbox. I am not getting any errors even when in DEBUG mode. But yet the Data is not getting updated.

Any Help would be very much appreciated.

T

CODE:

Protected Sub bUpdateSlsNum_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles bUpdateSlsNum.Click

Dim myCommand As SqlCommand

Dim myConnection As SqlConnection

myConnection = New SqlConnection("Server=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|CustomerInfo.mdf;Integrated Security=True;User Instance=True")

Dim UpdateCmd As String = "UPDATE CustomerSalesNum SET WorkSheetID=@WorkSheetID, Price=@Price, Freight=@Freight, Setup=@Setup, " _

& "Injection=@Injection, Wheels=@Wheels, Security=@Security, SubTotal=@SubTotal, DocFee=@DocFee, TradeInAllow=@TradeInAllow, TaxAmount=@TaxAmount, SalesTax=@SalesTax, " _

& "TradeLienBal=@TradeLienBal, Other=@Other, PAQuote=@PAQuote, TitleFee=@TitleFee, DownPay=@DownPay, Total=@Total WHERE [WorkSheetID]= '" & "@" & lblRWorkSheetID.Text & "'"

myCommand = New SqlCommand(UpdateCmd, myConnection)

myCommand.Parameters.Add(New SqlParameter("@WorkSheetID", Data.SqlDbType.NVarChar))

myCommand.Parameters("@WorkSheetID").Value = lblRWorkSheetID.Text

myCommand.Parameters.Add(New SqlParameter("@Price", Data.SqlDbType.NVarChar))

myCommand.Parameters("@Price").Value = tbUPPRice.Text

myCommand.Parameters.Add(New SqlParameter("@Freight", Data.SqlDbType.NVarChar))

myCommand.Parameters("@Freight").Value = tbUPFreight.Text

myCommand.Parameters.Add(New SqlParameter("@Setup", Data.SqlDbType.NVarChar))

myCommand.Parameters("@Setup").Value = tbUPSetup.Text

myCommand.Parameters.Add(New SqlParameter("@Injection", Data.SqlDbType.NVarChar))

myCommand.Parameters("@Injection").Value = tbUPInjection.Text

myCommand.Parameters.Add(New SqlParameter("@Wheels", Data.SqlDbType.NVarChar))

myCommand.Parameters("@Wheels").Value = tbUPWheels.Text

myCommand.Parameters.Add(New SqlParameter("@Security", Data.SqlDbType.NVarChar))

myCommand.Parameters("@Security").Value = tbUPFactorySec.Text

myCommand.Parameters.Add(New SqlParameter("@SubTotal", Data.SqlDbType.NVarChar))

myCommand.Parameters("@SubTotal").Value = tbUPSUBT.Text

myCommand.Parameters.Add(New SqlParameter("@DocFee", Data.SqlDbType.NVarChar))

myCommand.Parameters("@DocFee").Value = tbUPDOCFee.Text

myCommand.Parameters.Add(New SqlParameter("@TradeInAllow", Data.SqlDbType.NVarChar))

myCommand.Parameters("@TradeInAllow").Value = tbUPTIA.Text

myCommand.Parameters.Add(New SqlParameter("@TaxAmount", Data.SqlDbType.NVarChar))

myCommand.Parameters("@TaxAmount").Value = tbUPTAX.Text

myCommand.Parameters.Add(New SqlParameter("@SalesTax", Data.SqlDbType.NVarChar))

myCommand.Parameters("@SalesTax").Value = tbUPSALETAX.Text

myCommand.Parameters.Add(New SqlParameter("@TradeLienBal", Data.SqlDbType.NVarChar))

myCommand.Parameters("@TradeLienBal").Value = tbUPTILB.Text

myCommand.Parameters.Add(New SqlParameter("@Other", Data.SqlDbType.NVarChar))

myCommand.Parameters("@Other").Value = tbUPOther.Text

myCommand.Parameters.Add(New SqlParameter("@PAQuote", Data.SqlDbType.NVarChar))

myCommand.Parameters("@PAQuote").Value = tbUPPAQuote.Text

myCommand.Parameters.Add(New SqlParameter("@TitleFee", Data.SqlDbType.NVarChar))

myCommand.Parameters("@TitleFee").Value = tbUPTitle.Text

myCommand.Parameters.Add(New SqlParameter("@DownPay", Data.SqlDbType.NVarChar))

myCommand.Parameters("@DownPay").Value = tbUPDownPay.Text

myCommand.Parameters.Add(New SqlParameter("@Total", Data.SqlDbType.NVarChar))

myCommand.Parameters("@Total").Value = LBLUTOTAL.Text

myCommand.Connection.Open()

Try

myCommand.ExecuteNonQuery()

ShowMessageBox(Me, "ATTENTION: Customer Data has been Updated.")

bUpdateSlsNum.Enabled = False

Catch ex As SqlException

If ex.Number = 2627 Then

ShowMessageBox(Me, "ERROR: A record already exists with " _

& "the same primary key")

Else

ShowMessageBox(Me, "ERROR: Could not add record")

End If

End Try

myCommand.Connection.Close()

MVMain.ActiveViewIndex = -1

End Sub



Answer this question

Updating database

  • R.K.S.

    Thanks so much!

  • Joel-MMCC

    TJ9139 wrote:

    myConnection = New SqlConnection("Server=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|CustomerInfo.mdf;Integrated Security=True;User Instance=True")

    Hi there, i had this issue too, i missed out the catalog part of the connection string,

    take a look below where it says database name swap that for ur db name, it should be CustomerInfo

    myConnection = New SqlConnection("Server=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|CustomerInfo.mdf;Initial Catalog=DatabaseName;Integrated Security=True;User Instance=True")

    Give that ago mate.


  • Nicoleta Cristache MSFT

    I ran through the DEBUG mode again hoping to find something.... Not sure what I am missing but here is the results after the "ExecuteNonQuery(). I still can not update. But I am not returing any errors

    If anyone has any suggestions please let me know... I have been beating my head on this one for days now.

    Thanks

    T

    - Me {ASP.memberpages_querycustomer_aspx} Memberpages_QueryCustomer
    + ASP.memberpages_querycustomer_aspx {ASP.memberpages_querycustomer_aspx} ASP.memberpages_querycustomer_aspx
    _adapter Nothing System.Web.UI.Adapters.ControlAdapter
    + _application {System.Web.HttpApplicationState} System.Web.HttpApplicationState
    _aspCompatMode False Boolean
    _aspCompatStep Nothing System.Web.Util.AspCompatApplicationStep
    _asyncInfo Nothing System.Web.UI.Page.PageAsyncInfo
    _asyncMode False Boolean
    _asyncTaskManager Nothing System.Web.UI.PageAsyncTaskManager
    + _asyncTimeout {System.TimeSpan} System.TimeSpan
    _asyncTimeoutSet False Boolean
    _autoPostBackControl Nothing System.Web.UI.Control
    + _cache {System.Web.Caching.Cache} System.Web.Caching.Cache
    _cachedRequestViewState True Boolean
    _cachedUniqueID Nothing String
    _callbackControl Nothing System.Web.UI.ICallbackEventHandler
    + _changedPostDataConsumers Count = 11 System.Collections.ArrayList
    _clientQueryString Nothing String
    + _clientScriptManager {System.Web.UI.ClientScriptManager} System.Web.UI.ClientScriptManager
    _clientState Nothing String
    _clientSupportsJavaScript False Boolean
    _clientSupportsJavaScriptChecked False Boolean
    _clientTarget Nothing String
    _containsCrossPagePost False Boolean
    _containsEncryptedViewState True Boolean
    _contentTemplateCollection Nothing System.Collections.IDictionary
    + _context {System.Web.HttpContext} System.Web.HttpContext
    _controlsRequiringPostBack Nothing System.Collections.ArrayList
    _controlState Loaded {5} System.Web.UI.ControlState
    _controlStateLoadedControlIds Nothing System.Web.Util.StringSet
    _dataBindingContext Nothing System.Collections.Stack
    _designMode False Boolean
    _designModeChecked True Boolean
    _dynamicCulture Nothing System.Globalization.CultureInfo
    _dynamicUICulture Nothing System.Globalization.CultureInfo
    _emptyEventSingleton {Object} Object
    _enabledControls Nothing System.Collections.ArrayList
    _enableEventValidation True Boolean
    _enableViewStateMac True Boolean
    _encryptionMode Auto {0} System.Web.UI.ViewStateEncryptionMode
    _errorPage Nothing String
    + _eventListCache Count = 0 System.Collections.Hashtable
    + _eventObjects {System.Collections.Hashtable} System.Collections.IDictionary
    _focusedControl Nothing System.Web.UI.Control
    _focusedControlID Nothing String
    _fOnFormRenderCalled False Boolean
    + _form {System.Web.UI.HtmlControls.HtmlForm} System.Web.UI.HtmlControls.HtmlForm
    _fPageLayoutChanged False Boolean
    _fPostBackScriptRendered False Boolean
    _fRequirePostBackScript False Boolean
    _fRequireWebFormsScript False Boolean
    _fWebFormsScriptRendered False Boolean
    _haveIdSeparator True Boolean
    - _header {InnerText = Exception of type: '{System.Web.HttpException}' occurred.} System.Web.UI.HtmlControls.HtmlHead
    AppRelativeTemplateSourceDirectory "~/Memberpages/" String
    + Attributes {System.Web.UI.AttributeCollection} System.Web.UI.AttributeCollection
    + BindingContainer {ASP.memberpages_querycustomer_aspx} System.Web.UI.Control
    ClientID "ctl00" String
    + Controls {System.Web.UI.ControlCollection} System.Web.UI.ControlCollection
    Disabled False Boolean
    EnableTheming True Boolean
    EnableViewState True Boolean
    ID "ctl00" String
    + InnerHtml {"Cannot get inner content of ctl00 because the contents are not literal."} String
    - InnerText {"Cannot get inner content of ctl00 because the contents are not literal."} String
    + Data {System.Collections.ListDictionaryInternal} System.Collections.IDictionary
    ErrorCode -2147467259 Integer
    HelpLink Nothing String
    InnerException Nothing System.Exception
    Message "Cannot get inner content of ctl00 because the contents are not literal." String
    Source "System.Web" String
    StackTrace " at System.Web.UI.HtmlControls.HtmlContainerControl.get_InnerHtml()
    at System.Web.UI.HtmlControls.HtmlContainerControl.get_InnerText()" String
    + TargetSite {System.Reflection.RuntimeMethodInfo} System.Reflection.MethodBase
    + NamingContainer {ASP.memberpages_querycustomer_aspx} System.Web.UI.Control
    + Page {ASP.memberpages_querycustomer_aspx} System.Web.UI.Page
    + Parent {ASP.memberpages_querycustomer_aspx} System.Web.UI.Control
    Site Nothing System.ComponentModel.ISite
    SkinID "" String
    + Style {System.Web.UI.CssStyleCollection} System.Web.UI.CssStyleCollection
    + StyleSheet {System.Web.UI.HtmlControls.HtmlHead.StyleSheetInternal} System.Web.UI.IStyleSheet
    TagName "head" String
    + TemplateControl {ASP.memberpages_querycustomer_aspx} System.Web.UI.TemplateControl
    TemplateSourceDirectory "/Membership/Memberpages" String
    Title "Query Customer" String
    UniqueID "ctl00" String
    Visible True Boolean
    _id "__Page" String
    _idSeparator "$"c Char
    _inOnFormRender False Boolean
    _isCallback False Boolean
    _isCrossPagePostBack False Boolean
    _items Nothing System.Collections.IDictionary
    _leftoverPostData Nothing System.Collections.Specialized.NameValueCollection
    _lockObject {Object} Object
    _maintainScrollPosition False Boolean
    _master Nothing System.Web.UI.MasterPage
    _masterPageFile Nothing System.Web.VirtualPath
    _maxPageStateFieldLength -1 Integer
    _maxResourceOffset 8922 Integer
    _namingContainer Nothing System.Web.UI.Control
    _needToPersistViewState True Boolean
    _noCompileBuildResult Nothing System.Web.Compilation.BuildResultNoCompileTemplateControl
    + _occasionalFields {System.Web.UI.Control.OccasionalFields} System.Web.UI.Control.OccasionalFields
    _onTransactionAbortEventName "OnTransactionAbort" String
    _onTransactionCommitEventName "OnTransactionCommit" String
    + _page {ASP.memberpages_querycustomer_aspx} System.Web.UI.Page
    _pageAbortTransactionEventName "Page_AbortTransaction" String
    _pageAdapter Nothing System.Web.UI.Adapters.PageAdapter
    _pageCommitTransactionEventName "Page_CommitTransaction" String
    _pageDataBindEventName "Page_DataBind" String
    _pageErrorEventName "Page_Error" String
    + _pageFlags {System.Web.Util.SimpleBitVector32} System.Web.Util.SimpleBitVector32
    _pageInitCompleteEventName "Page_InitComplete" String
    _pageInitEventName "Page_Init" String
    _pageLoadCompleteEventName "Page_LoadComplete" String
    _pageLoadEventName "Page_Load" String
    _pagePreInitEventName "Page_PreInit" String
    _pagePreLoadEventName "Page_PreLoad" String
    _pagePreRenderCompleteEventName "Page_PreRenderComplete" String
    _pagePreRenderEventName "Page_PreRender" String
    _pageSaveStateCompleteEventName "Page_SaveStateComplete" String
    _pageUnloadEventName "Page_Unload" String
    _parent Nothing System.Web.UI.Control
    _partialCachingControlStack Nothing System.Collections.Stack
    + _persister {System.Web.UI.HiddenFieldPageStatePersister} System.Web.UI.PageStatePersister
    _preInitWorkComplete True Boolean
    _previousPage Nothing System.Web.UI.Page
    _previousPagePath Nothing System.Web.VirtualPath
    _profileTreeBuilt False Boolean
    _registeredControlsRequiringClearChildControlState Nothing System.Collections.Specialized.HybridDictionary
    + _registeredControlsRequiringControlState {System.Web.Util.ControlSet} System.Web.Util.ControlSet
    _registeredControlsThatRequirePostBack Nothing System.Collections.ArrayList
    + _registeredControlThatRequireRaiseEvent {System.Web.UI.WebControls.Button} System.Web.UI.IPostBackEventHandler
    _relativeFilePath Nothing String
    + _request {System.Web.HttpRequest} System.Web.HttpRequest
    + _requestValueCollection {System.Web.HttpValueCollection} System.Collections.Specialized.NameValueCollection
    _requestViewState "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" String
    _requireFocusScript False Boolean
    _requireScrollScript False Boolean
    _resourceProvider Nothing System.Web.Compilation.IResourceProvider
    + _response {System.Web.HttpResponse} System.Web.HttpResponse
    _scrollPositionX 0 Integer
    _scrollPositionXID "__SCROLLPOSITIONX" String
    _scrollPositionY 0 Integer
    _scrollPositionYID "__SCROLLPOSITIONY" String
    _session Nothing System.Web.SessionState.HttpSessionState
    _sessionRetrieved False Boolean
    _smartNavSupport NotDesiredOrSupported {0} System.Web.UI.SmartNavigationSupport
    _stringResourcePointer 57983064 System.IntPtr
    _styleSheet Nothing System.Web.UI.PageTheme
    _styleSheetName Nothing String
    _supportsStyleSheets -1 Integer
    _templateControl Nothing System.Web.UI.TemplateControl
    + _templateSourceVirtualDirectory {System.Web.VirtualPath} System.Web.VirtualPath
    _theme Nothing System.Web.UI.PageTheme
    _themeName Nothing String
    _titleToBeSet Nothing String
    _transactionMode 0 Integer
    _uniqueFilePathSuffix Nothing String
    _validated True Boolean
    _validatorInvalidControl Nothing String
    _validators Nothing System.Web.UI.ValidatorCollection
    _viewState Nothing System.Web.UI.StateBag
    _viewStateEncryptionRequested True Boolean
    _viewStateUserKey Nothing String
    + _virtualPath {System.Web.VirtualPath} System.Web.VirtualPath
    _xhtmlConformanceMode Transitional {0} System.Web.Configuration.XhtmlConformanceMode
    _xhtmlConformanceModeSet True Boolean
    Adapter Nothing System.Web.UI.Adapters.ControlAdapter
    + AddAdditionalNotes {System.Web.UI.WebControls.View} System.Web.UI.WebControls.View
    + ApplicantSQLDS {System.Web.UI.WebControls.SqlDataSource} System.Web.UI.WebControls.SqlDataSource
    + Application {System.Web.HttpApplicationState} System.Web.HttpApplicationState
    + ApplicationInstance {System.Web.HttpApplication} System.Web.HttpApplication
    AppRelativeTemplateSourceDirectory "~/Memberpages/" String
    AppRelativeVirtualPath "~/Memberpages/QueryCustomer.aspx" String
    AspCompatMode False Boolean
    AsyncMode False Boolean
    + AsyncTimeout {System.TimeSpan} System.TimeSpan
    AutoHandlers 0 Integer
    automaticIDCount 128 Integer
    automaticIDPrefix "ctl" String
    + automaticIDs {Length=128} String()
    automaticLegacyIDPrefix "_ctl" String
    AutoPostBackControl Nothing System.Web.UI.Control
    + bAddNotes {Text = "Add Note"} System.Web.UI.WebControls.Button
    + bCalculate {Text = "Calculate Total"} System.Web.UI.WebControls.Button
    + bClear {Text = "Clear"} System.Web.UI.WebControls.Button
    + bClearNote {Text = "Clear"} System.Web.UI.WebControls.Button
    + bcModel {Text = "Model" Checked = False} System.Web.UI.WebControls.CheckBox
    + bDeleteRecord {Text = "Delete Record"} System.Web.UI.WebControls.Button
    + bFinish {Text = "Finish"} System.Web.UI.WebControls.Button
    + BikePurchaseSQLDS {System.Web.UI.WebControls.SqlDataSource} System.Web.UI.WebControls.SqlDataSource
    BindingContainer Nothing System.Web.UI.Control
    + bMain {Text = "<- Main"} System.Web.UI.WebControls.Button
    + bQueryWrksht {Text = "Query * WrkSht"} System.Web.UI.WebControls.Button
    + bShowUpdateView {Text = "Edit"} System.Web.UI.WebControls.Button
    + bSubmit {Text = "Submit Query"} System.Web.UI.WebControls.Button
    Buffer True Boolean
    BufferDefault True Boolean
    + bUpdateNote {Text = "Update"} System.Web.UI.WebControls.Button
    + bUpdateSlsNum {Text = "Update Database"} System.Web.UI.WebControls.Button
    + bWorkSheet {Text = "Load WorkSheet# -->"} System.Web.UI.WebControls.Button
    + Cache {System.Web.Caching.Cache} System.Web.Caching.Cache
    callbackID "__CALLBACKID" String
    callbackIndexID "__CALLBACKINDEX" String
    callbackLoadScriptID "__CALLBACKLOADSCRIPT" String
    callbackParameterID "__CALLBACKPARAM" String
    + CalQueryCal {System.Web.UI.WebControls.Calendar} System.Web.UI.WebControls.Calendar
    + cbQueryDate {Text = "Query By Date" Checked = False} System.Web.UI.WebControls.CheckBox
    + cbQueryName {Text = "Query By Customer Name" Checked = False} System.Web.UI.WebControls.CheckBox
    + cbQuerySalesRep {Text = "Query By Sales Rep." Checked = False} System.Web.UI.WebControls.CheckBox
    ChildControlsCreated True Boolean
    ClientID "__Page" String
    ClientIDSeparator "_"c Char
    ClientOnSubmitEvent "" String
    ClientQueryString "" String
    + ClientScript {System.Web.UI.ClientScriptManager} System.Web.UI.ClientScriptManager
    ClientState Nothing String
    ClientSupportsFocus True Boolean
    ClientSupportsJavaScript True Boolean
    ClientTarget "" String
    + CoApplicantSQLDS {System.Web.UI.WebControls.SqlDataSource} System.Web.UI.WebControls.SqlDataSource
    CodePage 65001 Integer
    ContainsCrossPagePost False Boolean
    ContainsEncryptedViewState True Boolean
    ContainsTheme False Boolean
    ContentType "text/html" String
    + Context {System.Web.HttpContext} System.Web.HttpContext
    controlAdapterResolved 32768 Integer
    + Controls {System.Web.UI.ControlCollection} System.Web.UI.ControlCollection
    controlsCreated 8 Integer
    ControlState Loaded {5} System.Web.UI.ControlState
    controlStateApplied 1048576 Integer
    + ControlStateLoadedControlIds {System.Web.Util.StringSet} System.Web.Util.StringSet
    creatingControls 256 Integer
    Culture "English (United States)" String
    + CustomerTradeSQLDS {System.Web.UI.WebControls.SqlDataSource} System.Web.UI.WebControls.SqlDataSource
    + ddlDealerShip {System.Web.UI.WebControls.DropDownList} System.Web.UI.WebControls.DropDownList
    DefaultAsyncTimeoutSeconds 45 Integer
    DefaultMaxPageStateFieldLength -1 Integer
    designMode 65536 Integer
    DesignMode False Boolean
    designModeChecked 131072 Integer
    disableChildControlState 262144 Integer
    disableTheming 4096 Integer
    disableViewState 4 Integer
    + DVCOApplicant {System.Web.UI.WebControls.DetailsView} System.Web.UI.WebControls.DetailsView
    + DVCustomerInfo {System.Web.UI.WebControls.DetailsView} System.Web.UI.WebControls.DetailsView
    + DVCustomerTrade {System.Web.UI.WebControls.DetailsView} System.Web.UI.WebControls.DetailsView
    + DVInventoryPur {System.Web.UI.WebControls.DetailsView} System.Web.UI.WebControls.DetailsView
    + DVSALESNOTES {System.Web.UI.WebControls.DetailsView} System.Web.UI.WebControls.DetailsView
    + DVSALESNUMBERS {System.Web.UI.WebControls.DetailsView} System.Web.UI.WebControls.DetailsView
    DynamicCulture Nothing System.Globalization.CultureInfo
    DynamicUICulture Nothing System.Globalization.CultureInfo
    EnabledControlArray "__enabledControlArray" String
    + EnabledControls Count = 0 System.Collections.ArrayList
    EnableEventValidation True Boolean
    EnableEventValidationDefault True Boolean
    EnableLegacyRendering False Boolean
    EnableTheming True Boolean
    enableThemingSet 8192 Integer
    EnableViewState True Boolean
    EnableViewStateDefault True Boolean
    EnableViewStateMac True Boolean
    EnableViewStateMacDefault True Boolean
    EncryptionModeDefault Auto {0} System.Web.UI.ViewStateEncryptionMode
    ErrorPage Nothing String
    EventAbortTransaction {Object} Object
    EventCommitTransaction {Object} Object
    EventDataBinding {Object} Object
    EventDisposed {Object} Object
    EventError {Object} Object
    EventInit {Object} Object
    EventInitComplete {Object} Object
    EventLoad {Object} Object
    EventLoadComplete {Object} Object
    EventPreInit {Object} Object
    EventPreLoad {Object} Object
    EventPreRender {Object} Object
    EventPreRenderComplete {Object} Object
    + Events {System.ComponentModel.EventHandlerList} System.ComponentModel.EventHandlerList
    EventSaveStateComplete {Object} Object
    EventUnload {Object} Object
    EventValidationPrefixID "__EVENTVALIDATION" String
    + flags {System.Web.Util.SimpleBitVector32} System.Web.Util.SimpleBitVector32
    FocusedControl Nothing System.Web.UI.Control
    FocusedControlID "" String
    + FocusMinimumEcmaVersion {System.Version} System.Version
    + FocusMinimumJScriptVersion {System.Version} System.Version
    + Form {System.Web.UI.HtmlControls.HtmlForm} System.Web.UI.HtmlControls.HtmlForm
    + form1 {System.Web.UI.HtmlControls.HtmlForm} System.Web.UI.HtmlControls.HtmlForm
    + GridView1 {System.Web.UI.WebControls.GridView} System.Web.UI.WebControls.GridView
    HasChildViewState False Boolean
    + Header {InnerText = Exception of type: '{System.Web.HttpException}' occurred.} System.Web.UI.HtmlControls.HtmlHead
    + IBEndDate {System.Web.UI.WebControls.ImageButton} System.Web.UI.WebControls.ImageButton
    + IBStartDate {System.Web.UI.WebControls.ImageButton} System.Web.UI.WebControls.ImageButton
    ID "__Page" String
    ID_RENDER_SEPARATOR "_"c Char
    ID_SEPARATOR "$"c Char
    idNotCalculated 1 Integer
    idNotRequired 64 Integer
    IdSeparator "$"c Char
    IdSeparatorFromConfig "$"c Char
    invisible 16 Integer
    IsAsync False Boolean
    IsBindingContainer True Boolean
    IsCallback False Boolean
    IsChildControlStateCleared False Boolean
    IsCrossPagePostBack False Boolean
    isCrossPagePostRequest 8 Integer
    isExportingWebPart 2 Integer
    IsExportingWebPart False Boolean
    isExportingWebPartShared 4 Integer
    IsExportingWebPartShared False Boolean
    IsInAspCompatMode False Boolean
    IsInOnFormRender False Boolean
    isNamingContainer 128 Integer
    IsPostBack True Boolean
    IsPostBackEventControlRegistered True Boolean
    IsReloadable False Boolean
    IsReusable False Boolean
    IsTrackingViewState True Boolean
    IsTransacted False Boolean
    IsValid True Boolean
    IsViewStateEnabled True Boolean
    isWebControlDisabled 524288 Integer
    + Items {System.Collections.Specialized.HybridDictionary} System.Collections.IDictionary
    + JavascriptMinimumVersion {System.Version} System.Version
    LastFocusedControl "" String
    lastFocusID "__LASTFOCUS" String
    + lblAddNote {Text = "Add Additional Notes:"} System.Web.UI.WebControls.Label
    + lblDate {Text = "Start Date"} System.Web.UI.WebControls.Label
    + lblDealerShip {Text = "DealerShip Name"} System.Web.UI.WebControls.Label
    + lblEndDate {Text = "End Date"} System.Web.UI.WebControls.Label
    + lblLastName {Text = "Last Name"} System.Web.UI.WebControls.Label
    + lblmodelname {Text = "Model Name:"} System.Web.UI.WebControls.Label
    + lblQueryCustomer {Text = "Query Infomaation"} System.Web.UI.WebControls.Label
    + lblResults {Text = "Query Results"} System.Web.UI.WebControls.Label
    + lblRWorkSheetID {Text = "KC2006513115445"} System.Web.UI.WebControls.Label
    + lblSaleRep {Text = "Sales Rep Login ID"} System.Web.UI.WebControls.Label
    + lblSalesNumbers {Text = "Update Customer Sales Numbers"} System.Web.UI.WebControls.Label
    + LBLUTOTAL {Text = "$24,603.68"} System.Web.UI.WebControls.Label
    + lblUTR {Text = "7"} System.Web.UI.WebControls.Label
    + lblWorkSheetID {Text = "WorkSheet Number"} System.Web.UI.WebControls.Label
    LCID 1033 Integer
    LEGACY_ID_SEPARATOR ":"c Char
    + ListBox1 {System.Web.UI.WebControls.ListBox} System.Web.UI.WebControls.ListBox
    LoadViewStateByID False Boolean
    MaintainScrollPositionOnPostBack False Boolean
    MaintainScrollPositionOnPostBackDefault False Boolean
    marked 2 Integer
    Master Nothing System.Web.UI.MasterPage
    MasterPageFile Nothing String
    MaxPageStateFieldLength -1 Integer
    MaxResourceOffset 8922 Integer
    + MSDomScrollMinimumVersion {System.Version} System.Version
    mustRenderID 2048 Integer
    + MVMain {System.Web.UI.WebControls.MultiView} System.Web.UI.WebControls.MultiView
    NamingContainer Nothing System.Web.UI.Control
    NoCompile False Boolean
    notVisibleOnPage 512 Integer
    OwnerControl Nothing System.Web.UI.Control
    + Page {ASP.memberpages_querycustomer_aspx} System.Web.UI.Page
    PageAdapter Nothing System.Web.UI.Adapters.PageAdapter
    PageID "__Page" String
    PageReEnableControlsScriptKey "PageReEnableControlsScript" String
    PageRegisteredControlsThatRequirePostBackKey "__ControlsRequirePostBackKey__" String
    PageScrollPositionScriptKey "PageScrollPositionScript" String
    + PageStatePersister {System.Web.UI.HiddenFieldPageStatePersister} System.Web.UI.PageStatePersister
    PageSubmitScriptKey "PageSubmitScript" String
    Parent Nothing System.Web.UI.Control
    PartialCachingControlStack Nothing System.Collections.Stack
    PostBackDataHandler Nothing System.Web.UI.IPostBackDataHandler
    PostBackEventHandler Nothing System.Web.UI.IPostBackEventHandler
    postEventArgumentID "__EVENTARGUMENT" String
    postEventSourceID "__EVENTTARGET" String
    PreviousPage Nothing System.Web.UI.Page
    previousPageID "__PREVIOUSPAGE" String
    + Profile {System.Web.Profile.DefaultProfile} System.Web.Profile.DefaultProfile
    RareFields Nothing System.Web.UI.Control.ControlRareFields
    + RareFieldsEnsured {System.Web.UI.Control.ControlRareFields} System.Web.UI.Control.ControlRareFields
    RelativeFilePath "QueryCustomer.aspx" String
    RenderFocusScript False Boolean
    + Request {System.Web.HttpRequest} System.Web.HttpRequest
    + RequestInternal {System.Web.HttpRequest} System.Web.HttpRequest
    + RequestValueCollection {System.Web.HttpValueCollection} System.Collections.Specialized.NameValueCollection
    RequestViewStateString "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" String
    RequiresViewStateEncryptionInternal True Boolean
    + Response {System.Web.HttpResponse} System.Web.HttpResponse
    ResponseEncoding "Unicode (UTF-8)" String
    + s_systemPostFields {System.Web.Util.StringSet} System.Web.Util.StringSet
    + s_varySeparator {Length=1} Char()
    + SalesNotesSQLDS {System.Web.UI.WebControls.SqlDataSource} System.Web.UI.WebControls.SqlDataSource
    + SalesNumbersSQLDS {System.Web.UI.WebControls.SqlDataSource} System.Web.UI.WebControls.SqlDataSource
    + Server {System.Web.HttpServerUtility} System.Web.HttpServerUtility
    + Session {System.Web.SessionState.HttpSessionState} System.Web.SessionState.HttpSessionState
    Site Nothing System.ComponentModel.ISite
    SkinID "" String
    SmartNavigation False Boolean
    SmartNavigationDefault False Boolean
    SpacerImageUrl "/Membership/WebResource.axd d=bHUYrCYckG3ho2vyaMi8lQ2&t=632784814580937500" String
    StringResourcePointer 57983064 System.IntPtr
    styleSheetApplied 16384 Integer
    styleSheetInitialized 1 Integer
    StyleSheetTheme Nothing String
    SupportAutoEvents False Boolean
    SupportsEventValidation False Boolean
    SupportsStyleSheets True Boolean
    System.Web.UI.IControlBuilderAccessor.ControlBuilder Nothing System.Web.UI.ControlBuilder
    + System.Web.UI.IControlDesignerAccessor.UserData {System.Collections.Specialized.HybridDictionary} System.Collections.IDictionary
    + System.Web.UI.IDataBindingsAccessor.DataBindings {System.Web.UI.DataBindingCollection} System.Web.UI.DataBindingCollection
    System.Web.UI.IDataBindingsAccessor.HasDataBindings False Boolean
    + System.Web.UI.IExpressionsAccessor.Expressions {System.Web.UI.ExpressionBindingCollection} System.Web.UI.ExpressionBindingCollection
    System.Web.UI.IExpressionsAccessor.HasExpressions False Boolean
    systemPostFieldPrefix "__" String
    + tbDelete {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbEndDate {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbLastName {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbSalesrep {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbStartDate {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPDOCFee {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPDownPay {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPFactorySec {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPFreight {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPInjection {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPOther {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPPAQuote {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPPRice {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPSALETAX {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPSetup {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPSUBT {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPTAX {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPTIA {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPTILB {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPTitle {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + tbUPWheels {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + TemplateControl {ASP.memberpages_querycustomer_aspx} System.Web.UI.TemplateControl
    + TemplateControlVirtualDirectory {System.Web.VirtualPath} System.Web.VirtualPath
    + TemplateControlVirtualPath {System.Web.VirtualPath} System.Web.VirtualPath
    TemplateSourceDirectory "/Membership/Memberpages" String
    + TextBox1 {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + TextBox2 {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    + TextBox3 {System.Web.UI.WebControls.TextBox} System.Web.UI.WebControls.TextBox
    Theme Nothing String
    themeApplied 1024 Integer
    Title "Query Customer" String
    + Trace {System.Web.TraceContext} System.Web.TraceContext
    TraceEnabled False Boolean
    TraceModeValue SortByTime {0} System.Web.TraceMode
    TransactionMode 0 Integer
    UICulture "English (United States)" String
    UniqueFilePathSuffix "__ufps=785349" String
    UniqueFilePathSuffixID "__ufps" String
    UniqueID "__Page" String
    + UpdateSalesNumbers {System.Web.UI.WebControls.View} System.Web.UI.WebControls.View
    useGeneratedID 2097152 Integer
    + User {System.Security.Principal.GenericPrincipal} System.Security.Principal.IPrincipal
    ValidatorInvalidControl "" String
    + Validators {System.Web.UI.ValidatorCollection} System.Web.UI.ValidatorCollection
    + ViewState {System.Web.UI.StateBag} System.Web.UI.StateBag
    ViewStateEncryptionID "__VIEWSTATEENCRYPTED" String
    ViewStateEncryptionMode Auto {0} System.Web.UI.ViewStateEncryptionMode
    ViewStateFieldCountID "__VIEWSTATEFIELDCOUNT" String
    ViewStateFieldPrefixID "__VIEWSTATE" String
    ViewStateIgnoresCase False Boolean
    ViewStateUserKey Nothing String
    + VirtualPath {System.Web.VirtualPath} System.Web.VirtualPath
    Visible True Boolean
    visibleDirty 32 Integer
    WebPartExportID "__WEBPARTEXPORT" String
    XhtmlConformanceMode Transitional {0} System.Web.Configuration.XhtmlConformanceMode
    + bUpdateSlsNum {Text = "Update Database"} System.Web.UI.WebControls.Button
    bUpdateSlsNum.Enabled True Boolean
    + myCommand {System.Data.SqlClient.SqlCommand} System.Data.SqlClient.SqlCommand
    + myCommand.Connection {System.Data.SqlClient.SqlConnection} System.Data.SqlClient.SqlConnection


  • C&amp;#35;Chris

    Hi there,

    As an initial fact finding thingy (sorry about the terminology) would you be able to capture the value returned from your call to ExecuteNonQuery() and show us what it is


  • oriticol

    i typed in text box then search the character and display to listbox

    for

    ex. in list box 3000 items i feath start with "chen" character

    how to impliment in vb.net2005 web appliction



  • Updating database