Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 397237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T16:37:50+00:00 2026-05-12T16:37:50+00:00

In the codebehind of a page. How do i get hold of a webpart

  • 0

In the codebehind of a page.

How do i get hold of a webpart that exist on the page,
then add properties to that webpart using c#.

The webpart exists withing a webpartzone.

Do i need to do anything with SPWebPartManager?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T16:37:50+00:00Added an answer on May 12, 2026 at 4:37 pm

    Use SPWeb.GetLimitedWebPartManager. The following example demonstrates updating a property in a list view web part:

    using (SPLimitedWebPartManager webPartManager =
        SPContext.Current.Web.GetLimitedWebPartManager("default.aspx",
            PersonalizationScope.Shared))
    {
        try
        {
            foreach (WebPart webPart in webPartManager.WebParts)
            {
                if (webPart.Title == "Web Part To Update")
                {
                    ListViewWebPart listViewWebPart = (ListViewWebPart)webPart;
                    // TODO: Set property on web part
                    webPartManager.SaveChanges(listViewWebPart);
                    break;
                }
            }
        }
        finally
        {
            webPartManager.Web.Dispose();
        }
    }
    

    Instead of default.aspx you need to use the name of the current page relative to the SPWeb.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Get URL of ASP.Net Page in code-behind I'm trying to hold current
In a regular .aspx page, you can access public properties from the codebehind. Is
I'm using JQuery Picasa Webalbum Integrator that gets filled from codebehind. But it's not
I'm attempting to create a custom control that inherits from System.Web.UI.WebControls.ListView . Codebehind: using
I am using a codebehind page in ASP.NET to perform a SQL query. The
Here's the code. I now also get errors in codebehind that a variable already
Can I implement a constructor in an ASPX page without a Codebehind file? I
I am trying to write a standalone ASPX page (no codebehind) for reasons I
I want to get a codebehind value in my javascript function. My scenario is,
I have an ASPX page (with VB Codebehind). I would like to extend the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.