Search

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

Matching Posts

  • Re: ObjectDataSource - Update multiple tables

    I have never built a stored procedure (i know, sad). Do you have an example or tutorial of how to do what I am looking for? Thanks!
  • ObjectDataSource - Update multiple tables

    I am calling my "MemberInfo" table using a dataset tableadapter and displaying the data in a DetailsView. The detailsview includes a Edit button that allows the user to edit there account info. Their account also includes a table of Request data in a table called "RebateRequests". Each table uses the users "userid" to identify them and share similar data like, email address and company info. When the user clicks the EDIT button to update their "MemberInfo"
  • Custom Login Page For URL

    Is it possobly to specify a specific login page for each page in my config file? I have set up my config file to redirect to Login.aspx when the user's session logs out, but for some pages I want them to be redirected to LoginBlnk.aspx. Do I set the login URL in the Role Management section of my web.config? My Code (set it here?) <location path="Home.aspx"> <system.web> <authorization> <allow roles="guest, member, admin"/> <deny users="*"
    Posted to Security (Forum) by dude9er on 11/12/2009
  • Not exaxtly bindong data to a control

    My user logs into their account and I grab the userid using the following code: Dim myObject As MembershipUser = Membership.GetUser() Dim UserID As String = myObject.ProviderUserKey.ToString() Now that I have grabbed this value, I want to access other tables in my database filtered by this value to: 1) Autofill a form with the values AND/OR 2) add the user's existing data to a button click event and submit it to a new table All this must be done in the code behind so the user does not have to
    Posted to Getting Started (Forum) by dude9er on 10/29/2009
  • Bot Blocker

    My form on my website was submitted 5 times in 6 seconds last night and I'm thinking it was a bot. Here is the info from one of the submissions : Hotel Name: 71217175198 Planner's Name: Obmuigtd Planner's Email: izpwwvoj@zedcflrn.com Planner's Phone: System.Web.UI.WebControls.TextBox Client's Name: Obmuigtd Check-in Date: 10121985 Check-out Date: 10121985 Number of Rooms: New York Promo Code: Is this a bot and if so, how do I block it? I wondering if this is a SQL injection attempt
    Posted to Security (Forum) by dude9er on 10/28/2009
  • Delay Form Submit by 30 Seconds

    I have a form that sends a confirmtaion email to the user filling it out. I would like to delay the sending of the form by 30 seconds while the suer watches a brief video. Is this possible? Thanks!!!
    Posted to Web Forms (Forum) by dude9er on 10/2/2009
  • Attach File to Email Form - File Size

    I have a form that allows the user to attach a file. I hav elimited te file size to 3MB. I am trying to validate the size of the file and show an error message that tells teh user the file is too large. My code below seems to work, but if the file size is 4mb or so or higher I get a default asp.net error message that says: Server Error in '/rezpage-affiliate.com' Application. Maximum request length exceeded. Description: An unhandled exception occurred during the execution of the current
    Posted to Web Forms (Forum) by dude9er on 8/31/2009
  • Re: Attach File to Email Form - File Size

    Hi shahed.kazi, thanks for the feedback. Please read my *EDIT* above. I am trying to stop the uplaod before the default 4mb is exceeded. Since this is being emailed I need to limit the size to accommodate storage size.
    Posted to Web Forms (Forum) by dude9er on 8/31/2009
  • Show Panel When Form Button Clicked

    I Have a form, when the Submit button is clicked I want to reveal a Panel to show a message that says "Sending Form...". I am unable to get the panel to show when the form button is clicked. Here is my code. CODE BEHIND: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 'Hide progress Panel on pageLoad progressPanel.Visible = False End Sub Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
    Posted to Web Forms (Forum) by dude9er on 8/27/2009
  • Re: Show Panel When Form Button Clicked

    Hi mendhak, this works good but it is having issues with my RequiredFieldValidators. The panel shows when the button is clicked even if the form is not filled out. Any ideas?
    Posted to Web Forms (Forum) by dude9er on 8/27/2009
Page 1 of 13 (122 items) 1 2 3 4 5 Next > ... Last »