Search

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

Matching Posts

  • Re: Issue with update panel and rendering controls within it again at the top of my page

    Mindgmz, If the dropdown is already a child control of the UpdatePanel then you don't need to set it as a trigger unless the ChildrenAsTriggers property on the UpdatePanel is set to false (default is true). Can you post part of your code so that it is more apparent on what you are doing? The update panel is supposed to be re-rendered after the partial postback so I am not sure what your issue is. -Kashif
    Posted to ASP.NET AJAX UI (Forum) by kashif on 5/4/2009
  • Re: Paging mobile objectlist problems

    [quote user="lekshmiS"] Also, I have to show 2columns in the datagrid. The code i am using is given below < mobile : ObjectList runat ="server" ID ="gv" EnableViewState ="false" LabelField ="Name" ItemsPerPage ="5" AutoGenerateFields ="true" TableFields ="Name;Site" OnItemSelect ="Selected" Font-Size ="small" > < Field Title ="Name" DataField ="Name" Visible ="true"
    Posted to Mobile and Handheld Devices (Forum) by kashif on 7/31/2007
  • Re: Regarding Mobile Web Application

    Try something like the following < mobile : Panel ID ="Panel1" Runat ="server"> < mobile : DeviceSpecific Runat ="server" ID ="ds1"> < Choice > < contenttemplate > < asp : Button runat ="server" Text ="Button" enabled ="false" id ="v1"></ asp : Button > </ contenttemplate > </ Choice > </ mobile : DeviceSpecific > </ mobile : Panel > Hope that helps, Kashif
    Posted to Mobile and Handheld Devices (Forum) by kashif on 4/3/2007
  • Re: How can I make an aspx file in a web project visible on mobile phones?

    Is there any particular reason for not using mobile webforms? The mobile controls are geared towards rendering on a variety of devices and take into account form factor and other device related nuances. It also allows for rendering in multiple markups including wml. In terms of the regular ASP.Net pages not viewable on your device, have you looked at the rendering being sent down, saved as html and tried viewing that on your device? -Kashif
    Posted to Mobile and Handheld Devices (Forum) by kashif on 4/3/2007
  • ScreenReader Accessibility and Partial Updates in ASP.Net AJAX

    Accessibility is an important aspect of software applications. It is ever so important on the web especially to ensure that everyone visiting your site is enabled to access the content. It is also required by a number of government organizations. The current implementation of UpdatePanel doesn't allow for complete screenreader accessibility with the popular screenrreaders available in the market. Window Eyes works correctly and is able to read updated content in a partial postback in most cases but
  • Re: Nested MasterPages reference issue

    Yes, if the MasterType [via TypeName or VirtualPath] is defined then the cast will not be required as the Page will automatically pick up the type as the one defined in the MasterType directive.
  • Re: HUGE BUG ImageButton and Updatepanel - beta1 and beta2 - NEEDS FIX

    I had initially mistaken it to be a parse error on the client and thus wanted to look at the server response. Seems like the error is happening on the server itself. Can you handle errors to redirect to a custom error page and log the stack trace of the exception [use Server.GetLastError() in Application_onError from global.asax] to see where exactly this error happens in the code - whether it is your code or framework code running on the stack when this error is encountered. Alternatively, you can
    Posted to ASP.NET AJAX UI (Forum) by kashif on 11/9/2006
  • Re: HUGE BUG ImageButton and Updatepanel - beta1 and beta2 - NEEDS FIX

    Could you please use the fiddler tool , capture the trace when this error happens and post it to this thread? Thanks!
    Posted to ASP.NET AJAX UI (Forum) by kashif on 11/9/2006
  • Re: UpdatePanel problem with JavaScript

    In Beta2 the Asp.Net AJAX javascripts are downloaded using the script resource handler - please ensure that this is registered in web.config httpHandlers section as follows < httpHandlers > < add verb = " GET " path = " ScriptResource.axd " type = " Microsoft.Web.Handlers.ScriptResourceHandler " validate = " false " /> </ httpHandlers > this could very well be the culprit for the js error you are seeing. Hope that helps.
    Posted to ASP.NET AJAX UI (Forum) by kashif on 11/9/2006
  • Re: HUGE BUG ImageButton and Updatepanel - beta1 and beta2 - NEEDS FIX

    Can you wrap the databinding logic for the repeater in a !IsPostBack construct [add If (Not IsPostBack) Then ... End If around your code, it's not good coding practice to be binding on each post-back], by the way I couldn't reproduce the error using the code you provided above. It would be great if you could use the FiddlerTool and paste the actual output you received on the client when this error occured. Thanks, Kashif
    Posted to ASP.NET AJAX UI (Forum) by kashif on 11/9/2006
Page 1 of 55 (543 items) 1 2 3 4 5 Next > ... Last »