Search

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

Matching Posts

  • Re: ClientValidationFunction is not Firing off ValidationSummary when args fails

    I was missing a function actually that I had accidentally taken out at the top of my .aspx page. If you miss any javascript methods that the ClientValidationFunction is pointed to, the validation summary never launches the invalid messages via client-side alert if you are missing a function that is supposed to be called but it's not there. It's weird that firebug did not throw an error saying it could not find that method...weird.
    Posted to Web Forms (Forum) by dba123 on 11/10/2009
  • Radiobutton Value

    There is no radiobutton property called value? <asp:RadioButton runat="server" Enabled="false" ID="someID" GroupName="sometList" /> I don't want to use a RadioButtonList...it's got problems/bugs as everyone knows.
    Posted to Web Forms (Forum) by dba123 on 11/9/2009
  • Radiobutton is not being cleared

    I've got the following method being called in my Page_Load. After the user submits a button and posts back, this code is called and it DOES enter my if statement for < 200 yet after the page comes back and loads, the radiobuttons are greyed out but I see see them selected...I want them cleared totally and for some reason setting checked = false is not doing this on postbacks private void SetPoinsOptions() { int totalPoints = GetTotalPoints(); rbn100Points.Text = "200 pts"; rbn290Points
    Posted to Web Forms (Forum) by dba123 on 11/9/2009
  • Re: Radiobutton Value

    yes, but then most of the time the text doesn't match the real value. For instance I can have the text be "200 pts" then I'd have to parse out the 200..that sucks. It's a horrible hack and what if my text didn't even have the value in it at all, it's a common possibility!
    Posted to Web Forms (Forum) by dba123 on 11/9/2009
  • Re: Radiobutton is not being cleared

    Forgive me but that code runs every time if it's in Page Load. If the user submits it will run this again which is what I want. I want it to check the total Points. And set the radiobutton list again based on the new totalPoints value. Also, there's no "selected". It's "checked" for a radiobutton.
    Posted to Web Forms (Forum) by dba123 on 11/9/2009
  • Re-Submit problem

    I have a form. On submit of a button, it inserts a record into the db. If I go back in my browser and refresh the page it's resubmitting it causing all sorts of issues as you can imagine. How do I ensure that the user can't refresh the previous page and the state of that page does another automatic submit on refresh like this?
    Posted to Web Forms (Forum) by dba123 on 11/9/2009
  • ClientValidationFunction is not Firing off ValidationSummary when args fails

    I've got several custom validators on my page calling JavaScript validation functions and a ValidationSummary at the top of my page. This WAS working but all of a sudden (I must have messed something up), when I submit my form, I am only getting the server-side methods called and my Validation Summary is not showing the JavaScript box. I know that my javascript methods are being hit too, so what gives? I see no javascript errors when I debug.
    Posted to Web Forms (Forum) by dba123 on 11/9/2009
  • Tableless Repeater

    Trying to get the widths on the <p> tags but it's not working. <asp:Repeater ID="rptRedeemedItems" runat="server"> <HeaderTemplate> <div id="rew-RedeHeader"> <p style="width: 200px;">Reward</p> <p style="width: 200px;">Amount</p> <p style="width: 200px;">GiftCard Code</p> </div> </HeaderTemplate> <ItemTemplate> <div> <p style="width: 200px;"><
    Posted to Data Presentation Controls (Forum) by dba123 on 11/5/2009
  • Making div visible does not work

    In my PageLoad I've got the following: divSomeSection.Visible = userIsLoggedIn ? true : false; userIsLoggedIn shows true in the watch window. But the div is not visible at runtime nor is divSomeSection.Visible set to true after I step over it in debug when I watch it in the watch window. No clue why if userIsLoggedIn is definitely true.
    Posted to Web Forms (Forum) by dba123 on 11/4/2009
Page 1 of 131 (1308 items) 1 2 3 4 5 Next > ... Last »