Search

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

Matching Posts

  • Keep Changed Values in TXTbox on Postback originally populated from dataset

    Currently I have a dropdown list, on selection it populates a formView with current commision multipliers. From that formview I pull values into a textbox (because I need to be able to adjust them if the original numbers are not where I need them to be). What I am not sure about is how to retain the changed values in the textbox. I can't just say keep the value in the textbox- if page.ispostback - because if I select something else from the drop down list it is also a postback and I need the
    Posted to Data Presentation Controls (Forum) by kristine1991 on 2/20/2009
  • Re: VB Redirect to Different Page After Login - Based on Role

    The only thing I can think of is that you don't actually have a Role named client. Let me know if you do for sure, and I'll pull out the project and take a closer look. Thanks, Kristine
    Posted to Security (Forum) by kristine1991 on 7/4/2008
  • Re: Find Label In FormView - Inside Wizard

    I wanted to add, it had nothing to do with being inside a Wizard... I thought all the things I had going on the page might have been interfering - so I took the basics to a new page all by themselves. The only factor is that the Page_Load events were happening before the FormView was populated.
    Posted to Data Presentation Controls (Forum) by kristine1991 on 12/4/2007
  • Re: Find Label In FormView - Inside Wizard

    SOLUTION!!!!!!!!!!!!!! I can't beleive I found the solution, i started working on it once i was able to run the page by using "If Page.IsPageLoad = True" - It ran without errors, however the display text was showing what was there before the page load. So it was firing before the field was created/populated. I changed Protected Sub Page_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Load to Protected Sub Page_Load( ByVal sender As Object , ByVal e As System
    Posted to Data Presentation Controls (Forum) by kristine1991 on 12/4/2007
  • Re: Find Label In FormView - Inside Wizard

    I am only using the FormView in Read Only - It's being used to display and (when the wizard is compete) i need to call on these labels to insert the values into a new table. My Label1 is just a test to make sure I can find the data for later use. I do however have a checkbox(bit field) that I must find and use to display "%" or "in." at the end the height depending on if check/unchecked. However I did change the code, per the examples If FormView1.CurrentMode = FormViewMode
    Posted to Data Presentation Controls (Forum) by kristine1991 on 12/4/2007
  • Find Label In FormView - Inside Wizard

    I am have issues, and I am not sure why. I have tried every variation from the two peices of VB below to actually find the control. At first I thought I must find the FormView inside of the Wizard step first. - So I tried this & other variations (i tried with .Row.Findcontrol and without the .Row Dim FormView As FormView = CType (Wizard1.FindControl( "FormView1" ), FormView) Dim AdHeight As Label = CType (FormView.FindControl( "AdHeightLabel" ), Label) Label1.Text = AdHeight
    Posted to Data Presentation Controls (Forum) by kristine1991 on 12/3/2007
  • Re: Accessing a Field Value from DropDown List

    I am needing to do the same thing as listed above - I have tried to look up the ExecuteScalar, but not found a suitable explanation/example so I can use it. I have a names in a dropdownlist, based on what is slelected there I need to pull several fields to put in a database (DDL display is Name, DDL value is ID) however I am also needing to get the Length & Width from this same table. Any assistance will be greatly appreciated. Thanks, Kristine
    Posted to Web Forms (Forum) by kristine1991 on 11/30/2007
  • Re: DropDownList - Use UserName to Get Profile Info

    This is more of what I am looking for, but it didn't work for me. If I can populate the UserName in the CodeBehind(VB), I can call upon the Profile Info with no problem. So my first step was to get the UserNames in the list via the CodeBehind page. SalesPersonDDL.DataSource = ObjectDataSource3 SalesPersonDDL.DataTextField = ObjectDataSource3.Tables( "tablename" ).columns( "UserName" ) SalesPersonDDL.DataValueField = ObjectDataSource3.Tables( "tablename" ).columns
    Posted to Web Forms (Forum) by kristine1991 on 11/17/2007
  • Re: DropDownList - Use UserName to Get Profile Info

    Thanks for the info Peter, I took a look at the page. I maybe missing something, but it doesn't appear to be what I am looking for. The list of UserNames in the dropdown list have to go through several queries from different tables. So I am not sure how the list of all users could work for me. Even if I get a BL for the profiles, I am not sure how I would call upon it. Let me know, Thanks, Kristine
    Posted to Web Forms (Forum) by kristine1991 on 11/16/2007
Page 1 of 6 (60 items) 1 2 3 4 5 Next > ... Last »