Search

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

Matching Posts

  • Re: WebPartManager Displaymodes and TitleBarVerbButton

    Hi, this is most likely due missing authentication. If user has not been identified, we can not use personalization features, which are required in other display modes. - Vsku
  • Re: Custom Webpart does not show webbrowsable properties defined in the child control.

    Hi, You can achieve the required feature by overriding the WebPart.WebBrowsableObject property and by providing the actual control, which should be used in the PropertyGridEditorPart. In your case this would look something like this: public override object WebBrowsableObject { get { return m_UserControlInstance; } } So what does it actually mean: The WebBrowsableObject is property, which is declared in the IWebEditable interface. When the PropertyGridEditorPart is rendered, it's requesting the
  • Re: Problem with connections timing in event sequence after post back

    Yes of course... how stuped of me... Thanks for the clarification. - Vsku
  • Re: Web Parts and IE

    Hi, as declared in the previous post. Drag and drop is only possible using IE. If you are using Firefox the webpartzone of particular webpart can be changed using LayoutEditorPart. You can check the functionality from the www.asp.net tutorials: http://www.asp.net/QuickStart/aspnet/doc/ctrlref/webparts/layouteditorpart.aspx " it's possible that the drag & drop feature will be introduced also for the Firefox side " - in future releases of asp.net. - Vsku
  • Re: Problem with connections timing in event sequence after post back

    Hi, let's refrase the question. Following code is modification of the PDC05 demos (external web parts, employeeconsumerWebPart). [ ConnectionConsumer ( "Employee" )] public void SetEmployee( IWebPartRow employeeProvider) { _employeeProvider = employeeProvider; } protected override void CreateChildControls() { Button btn = new Button (); btn.Text = "Action: " ; btn.Click += delegate {BtnClick(btn);}; Controls.Add(btn); base .CreateChildControls(); } private void BtnClick( object doc) { //Do something
  • Re: SQL 2000 and Personalization

    Hi, the problem is that the connection string is set in such way that the connection is created using integrated security. This basically means that the authentication information of the user is used to connect to database. In some cases this is relevant, but if the user has not been set as the sql server user in database, the connection fails, since the user (in this case MyCompName\ASPNET) does not have rights to connect. Most simplest way to fix the problem is to use different connection string
  • Re: Web Parts and IE

    Hi, the web parts functionalities are rendered little bit differently when using FireFox, but the functionalities can how ever be used. The web part verb menu for example is not drop down menu, it's instead a list of verb actions in the web part title. Also the drag & drop features are not available for the Firefox. Same functionality can be however done "manually" using LayoutEditorPart. According to few blog entries, it's possible that the drag & drop feature will be introduced also for
  • Problem with connections timing in event sequence after post back

    Hi, I have problem concerning the connecting provider and consumer after page events are raised. Let's start with little bit background information and head step-by-step to actual problem. I'm developing enterprise level solution using the web part architecture. Portal framework provides us highly flexible platform to customize the layouts (master pages, web parts etc.) and functionalities based on roles, licenses etc. Dynamic loading of the WebParts is adaptation of the Mike Harder's PDC05 samples
  • Re: Help me (About web part personalization)

    Hi, MSDN is create place to start exploring the Web Part possibilities. MSDN - Getting Started Customizing Web Pages with Web Parts In short Configure Web Part Personalization Provider - note. Database needed Set webpart configuration elements to web.config file Authenticate your user - This is important Users which are not authenticated, can not store personalization data (how to seperated them from each other... quite logical) - Vsku
  • Re: Can I know what saved in pagesettings on ASPNET_PERSONALIZATIONPERUSER table

    Hi vmalvarez , The as you already wrote, the blob is in binary array format and cannot be directly converted to any understandable format. The saved information depends on the controls created on the page. Basically the saved byte array is serialized BlobPersonalizationState object, which insted is basically collection of PersonalizationInfo entries. Unfortunately the both objects used in this serialialization / deserializations are private or shared objects and there for can not be used out side
Page 1 of 6 (58 items) 1 2 3 4 5 Next > ... Last »