Search

You searched for the word(s): userid:712429

Matching Posts

  • Re: Retrieving Post Request paramters

    I figured it out. We use this String receivedTime = Request[ "AcceptedTime" ];
    Posted to HttpHandlers and HttpModules (Forum) by carrics3 on 5/23/2007
  • Retrieving Post Request paramters

    Hi all, Im looking to retrieve post paramter data from a "Post" request to our web site. I know how to retrive the paramter data when its a "GET" request to the site. This is the code im using at the moment String Nickname = Request.QueryString[ "CustomerNickname" ]; String Data = Request.QueryString[ "Data" ]; inMobileNum = Request.QueryString[ "OriginatorAddress" ]; String receivedTime = Request.QueryString[ "AcceptedTime" ]; How would
    Posted to HttpHandlers and HttpModules (Forum) by carrics3 on 5/23/2007
  • Next Button in CreateUSer_Wizard

    Hi, I have added the on-click event to the Next button in the Create User Wizard because i need to run a database query before the user can access the next wizard page. If the query returns false i want to prevent the user from accessing the next wizard page and display the error message I have found the following code on a thread protected void Wizard1_NextButtonClick( object sender, WizardNavigationEventArgs e) { if (!Page.IsValid) { e.Cancel = true ; return ; } } But im getting the following error
    Posted to Security (Forum) by carrics3 on 4/25/2007
  • Re: Accessing the next button on the CreateUserWizard

    Hi, Thanks for the response. Ive have been able to access the Next Button like that thread you provided stated. I can display an error message that i want to but id like to prevent the page from moving on. ie something similar to what a control validator does with the text boxes. Is it possible to prevent the page from changing from within the code. ie. Moving to the next register page?
    Posted to Security (Forum) by carrics3 on 4/23/2007
  • Re: Making a Single Column Editable in Grid View

    Hi, Im not sure what you mean. Do you want me to create a variable for the username and access this variable in update,Select and Update?
    Posted to Data Presentation Controls (Forum) by carrics3 on 4/23/2007
  • Re: Making a Single Column Editable in Grid View

    Hi Rex Lin I put that code into my C# page and i put a break point on it. But the code never gets accessed at any point?
    Posted to Data Presentation Controls (Forum) by carrics3 on 4/19/2007
  • Accessing the next button on the CreateUserWizard

    Hi guys, Im just wondering how i can access the next button on the CreateUserWizard. I want to run a query on the database to check to see the CutomerNumber field value already exists in the database? If it is i want to allow the user to proceed with the rest of the registration. Else Tell them that the Customer Number doesnt exist in the database. I wanted to put this in a button_click event for the Next button that can be found on the CreateUserWizard. Is it possible to put C# code behind this
    Posted to Security (Forum) by carrics3 on 4/18/2007
  • Re: Public variables Holding there Values

    Hi, That works!! Thanks for all your help.
    Posted to Getting Started (Forum) by carrics3 on 4/18/2007
  • Re: Making a Single Column Editable in Grid View

    Do you mean set the placeName parameter from the code behind? Im not really sure how retrieve the value from the textbox in the gridview is it something like String name = gridview1.PlaceName.Text?
    Posted to Data Presentation Controls (Forum) by carrics3 on 4/18/2007
  • Re: Public variables Holding there Values

    Hi. When i put this inside the first button click event i get errors where i use set? 1 double 2 3 StartLat 4 { 5 6 7 get 8 { 9 10 11 if (ViewState[ "StartLat" ]== null ) 12 13 return ( double )0; 14 15 else 16 17 return ( double )ViewState[ "StartLat" ]; 18 } 19 20 21 set 22 { 23 24 ViewState[ "StartLat" ]= 25 26 value ; 27 } 28 29 } 30 31 32 33 double 34 35 EndLat 36 { 37 38 39 get 40 { 41 42 43 if (ViewState[ "EndLat" ]== null ) 44 45 return ( double )0; 46 47 else 48 49 return ( double )ViewState
    Posted to Getting Started (Forum) by carrics3 on 4/18/2007
Page 1 of 6 (53 items) 1 2 3 4 5 Next > ... Last ยป