Search

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

Matching Posts

  • Re: How to set value of <input type=”hidden”> in asp .net page_load without using runat=”server”…

    Thanlk you, I was having problem accessing a hidden value in a master page from javascripts in the same master page, after trying the .ClientID but they don't work, then I found this post. Seems the only way to access it is having to spell out the entire id literally.
    Posted to Web Forms (Forum) by bc1016 on 11/30/2009
  • Report not updated after deploying

    I have run into a problem with deploying SQL Server reports, this happens occasionally, what happens is when deploying a new version of an existing report (rdl file) sometimes the report doesn't seem to get updated, if I run the report afterwards it still shows the old version, I will have to delete the existing report first then deploy again. This problem makes me uneasy about whether we have the latest report after deploying (we are live), and we have about 100 reports we can't delete everyone
    Posted to SQL Server Reporting Services (Forum) by bc1016 on 9/11/2009
    Filed under: SQL Server Reporting Services
  • Re: Report not updated after deploying

    Thanks for the reply, we have SQL Server 2008 Express and SSRS 2008, I'm not sure where the caching is set. But just to clarify, this is after deploying the reports (and it says successfully) to the report server, not after making changes in the report designer then preview. We have a web application from which our clients run the reports, this is where we noticed the issue of a report not being the latest version after deploying.
    Posted to SQL Server Reporting Services (Forum) by bc1016 on 9/11/2009
  • Re: MaskedEditExtender for Canadian Postcode

    You're welcome and I'm glad it worked. For those who wonder how to do that in CSS, it's text-transform: uppercase; However, please note that CSS only transforms the appearance of the text, it doesn't actually change the text to uppercase, you will need to manually convert the text otherwise the text would be saved as whatever case you type in. I usually add onblur="this.value=this.value.toUpperCase();" to the textbox.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by bc1016 on 6/17/2009
    Filed under: css
  • Re: Synchronous page method call... how to?

    There are synch web method call javascript libaries out there that you can download and use. Here is one I used: http://kpumuk.info/asp-net/synchronous-page-method-call-in-asp-net-ajax-library/ Hope this helps.
    Posted to ASP.NET AJAX Discussion and Suggestions (Forum) by bc1016 on 6/17/2009
    Filed under: web services, ajax webmethod javascript
  • Re: MaskedEditExtender for Canadian Postcode

    To keep the space, try adding ClearMaskOnLostFocus="false" to the MaskedEditExtender. For the uppercase you will need to use Javascript or Css (set the OnFocusCssClass), the extender itself does not have a property for that. Hope it helps.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by bc1016 on 6/15/2009
  • Re: Changing Mask of MaskedEditExtender

    I figured it out. In my version of Ajax (3.0.20820), you will need to explicitly call maskext._convertMask() or set the _MaskConv property after set_Mask(). Apprently set_Mask() only changes the _Mask property, but it's the _MaskConv property that needs to be changed. Go figure...
    Posted to ASP.NET AJAX Control Toolkit (Forum) by bc1016 on 6/2/2009
  • Re: Changing Mask of MaskedEditExtender

    I have the same issue. I have a textbox and a MaskedEditExtender with BehaviorID="zipMask" and the TargetControlID to the textbox, but when I tried to set it using javascript var maskext = $find('zipMask'); maskext.set_Mask('99999\_9999'); maskext.set_Mask('Number'); it doesn't change the mask of the textbox. the extender contorl has the property Mask="999-999" and MaskType="Number". I see that the second post was flagged as the answer but
    Posted to ASP.NET AJAX Control Toolkit (Forum) by bc1016 on 6/2/2009
    Filed under: MaskedEditExtender ASP.NET AJAX
  • Re: Changing Mask of MaskedEditExtender

    I have the same issue. I have a textbox and a MaskedEditExtender with BehaviorID="zipMask" and the TargetControlID to the textbox, but when I tried to set it using javascript var maskext = $find('zipMask'); maskext.set_Mask('99999\_9999'); zipMask.set_Mask('Number'); it doesn't change the mask of the textbox. the extender contorl has the property Mask="999-999" and MaskType="Number". I see that the second post was flagged as the answer but
    Posted to ASP.NET AJAX Control Toolkit (Forum) by bc1016 on 6/2/2009
    Filed under: MaskedEditExtender ASP.NET AJAX
Page 1 of 4 (38 items) 1 2 3 4 Next >