Search

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

Matching Posts

  • Verify email adress exists on server...?

    Hello all. It's been awhile since I've ASP'd so bear with me, please. I would like to verify an email address exists in the background on a web form.(AJAX-like after they tab off, with a little spinning anim-gif and all..I made an animated gif already too) I'm getting better at AJAX too, so bear with me on that but one thing at a time. How to check an email's existance on a server? - Do I do something like create an email in the background with the FROM as THEIRS and send it to
    Posted to Web Forms (Forum) by Beau_Damore on 6/12/2009
    Filed under: email, ajax
  • nesting repeaters?...

    Hello All, I need to show some invoicing records. There are 4 per month, one for each week. I need to show 24 months with 4 records per month. Should I use nested repeaters? If so, how do I set the parent repeater to use a dataset of month/year combinations going back two years (12/2008,11/2008,...)? The reason being, the table I'm hitting has billMonth and billYear columns, no 'date based' column in it. I need to hit a stored procedure that takes month & year params. Thanks much
    Posted to Data Presentation Controls (Forum) by Beau_Damore on 12/2/2008
  • Re: 'Findcontrol' works on one page and not on another(JS issue?)

    I found the error: I needed a page.databind somewhere in my code behind to make the ASPX code fire... Thanks anyway.
    Posted to Client Side Web Development (Forum) by Beau_Damore on 12/1/2008
  • Nesting repeaters/datalists...

    Hello All, I have an interesting problem to surmount. I need to retrieve some records. There's a stored procedure that grabs 'weekly invoicing' per month from a table. There are four records per call to this SP. I want to dynamically get a full years's worth of records and display them by month. Here's the catch. The table has billYear, billMonth, billDay columns all seperated. How do I nest datalists and/or repeaters in such a way as to achieve my desired result by month? I am
    Posted to Data Presentation Controls (Forum) by Beau_Damore on 12/1/2008
  • Re: long load times- An AJAX way to inform end users?

    ok, I switched it up... I found a way to do this with a Timer. (I dislike timers outside of windows services since JS can be unreliable in various browsers) Thanks for all your help. I did learn some things,even if I did not follow your methodology. Thanks. Here's my code: < ContentTemplate > < asp : Timer ID ="TimerLast20Orders" runat ="server" Interval ="1" OnTick ="DelayedPageBindings" /> < asp : GridView ID ="GridViewLast20Orders"
  • Re: position the validator callout

    Thanks much. I will try this out probably next week. (happy TG!)
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Beau_Damore on 11/25/2008
  • Re: 'Findcontrol' works on one page and not on another(JS issue?)

    [quote user="ameenkpn"]You can simply take the values of Textbox like below var ToDate = document.getElementById( '<%= TextBoxToDate . ClientID %>' ).value; [/quote] No, I can't. Your code errors. There is a master page involved. Therefore, must use 'findcontrol'. NOTE: it works fine on one page, but not another. the only difference is that one page uses updatepanels and one doesn't.
    Posted to Client Side Web Development (Forum) by Beau_Damore on 11/25/2008
  • Re: Gridview not binding. special conditions..

    That was it. Thanks so much!
    Posted to Data Presentation Controls (Forum) by Beau_Damore on 11/25/2008
  • 'Findcontrol' works on one page and not on another(JS issue?)

    Hi All, I've got a piece of code that works on one page but not another:(on master page, in the <HEAD> there is as follows) var FromDate = document.getElementById( "<%# CType(ContentPlaceHolder1.FindControl(" TextBoxFromDate "), TextBox).ClientID %>" ); var ToDate = document.getElementById( "<%# CType(ContentPlaceHolder1.FindControl(" TextBoxToDate "), TextBox).ClientID %>" ); Both pages use textboxes with these names, both pages are using
    Posted to Client Side Web Development (Forum) by Beau_Damore on 11/24/2008
  • Re: long load times- An AJAX way to inform end users?

    Great, getting further...lol OK, it's firing teh click event, but it's still refreshing the page over and over...Trying to remove the onload event handler but... I tried adding the following to no avail: window.onload=pageLoadedAsync; function pageLoadedAsync(sender, args){ //alert('loading grids!'); var btn = $get( '<%= ButtonHidden.ClientID %>' ); if (btn){ btn.click(); } //window.onload=""; //I added this=== // sender.findName(sender).removeEventListener
Page 1 of 23 (226 items) 1 2 3 4 5 Next > ... Last »