Search

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

Matching Posts

  • Re: Problem in Adding Webpart to the zone.

    Hello, The webpart that you are tyring to add might have personalized. so reset the personalization and try adding the webpart again. you can reset the personalization by two ways either by using WebpartManager.Personalization.ResetPersonalizationState() or open the PersonalizationPerUser table in ASPNETDB.mdf and remove all the records. Hope this will help you :) Cheers, Sivakumaar
  • How to create editor part as usercontrol ? (Webparts)

    Hello, I'm working on an application which uses custom webparts. I was able to create webparts as user control, but I couldnt create editor part as user control. I could create editor part as customcontrol, but layout designing is very difficult as we need to add html tags manually to the customcontrol. I preferred Usercontrol as the layout designing is easy as we can drag & drop the controls from tool box to the usercontrol I couldnt find any guide regarding creating editor part as usercontrol
  • Re: How to prevent browser and proxy caching of web pages

    Hi LudovicoVan , I had tried Response.Cache.SetCacheability(HttpCacheability.NoCache); it refreshes the page perfectly. but instead of refreshing the page, i want to display the "WebPage Expired" error page when the user clicks the back button. is it possible, if yes, please give the solution to achieve this? Thanks in advance Regards, Siva
  • Copy Personalization

    I need to copy the personalization of one user to another user. I have the following code for the Custom Personalization provider which will copy personalization data from one user to another user. public bool CopyPersonalization( WebPartManager webPartManager, string path, string fromUser, string toUser) { byte [] userBlob = new byte [255]; byte [] sharedBlob = new byte [255]; try { this .LoadPersonalizationBlobs(webPartManager, path, fromUser, ref sharedBlob, ref userBlob); this .SavePersonalizationBlob
  • Unable to Add Webparts dynamically for anonymous users

    Hi All, In my web application i have created custom webparts and i'm adding that webparts dynamically to the webpage using WebPartManager. The following code implements the above process if (WebPartManager1.WebParts.Count == 0) { currentSelectionWebPart = new BaseWebPartControl(); currentSelectionWebPart.ExportMode = WebPartExportMode.All; currentSelectionWebPart.Title = "Current Selection"; WebPartManager1.AddWebPart(currentSelectionWebPart, WebPartZone6, WebPartZone6.WebParts.Count); } The above
    Posted to Web Parts and Personalization (Forum) by Sivakumaar on 12/13/2005
Page 1 of 1 (5 items)