Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. SharePoint
  4. Web Part List Management!!!

Web Part List Management!!!

Scheduled Pinned Locked Moved SharePoint
help
6 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    tiny126
    wrote on last edited by
    #1

    I need to write a webpart to manage the list.But i just learn it so i hope someone can help me to do it.ThanK you very much! • Create a list • Delete a list • Request a list with a textarea for CAML Queries • Show items

    N 1 Reply Last reply
    0
    • T tiny126

      I need to write a webpart to manage the list.But i just learn it so i hope someone can help me to do it.ThanK you very much! • Create a list • Delete a list • Request a list with a textarea for CAML Queries • Show items

      N Offline
      N Offline
      Not Active
      wrote on last edited by
      #2

      All of this can already be done via the SharePoint interface. Can you explain a little more about these requirements, and which version of SharePoint you are using?


      I know the language. I've read a book. - _Madmatt

      T 1 Reply Last reply
      0
      • N Not Active

        All of this can already be done via the SharePoint interface. Can you explain a little more about these requirements, and which version of SharePoint you are using?


        I know the language. I've read a book. - _Madmatt

        T Offline
        T Offline
        tiny126
        wrote on last edited by
        #3

        I know it can be done by interface(it's very easy in the sharepoint home page).But it's the work require to do the webpart's experiment.But it's a little hard for me and I don't how to set about this.So i hope someone can direct me. By the way I use the sharepoint 2007 and visual studio 2008 to develop the webpart!

        N 1 Reply Last reply
        0
        • T tiny126

          I know it can be done by interface(it's very easy in the sharepoint home page).But it's the work require to do the webpart's experiment.But it's a little hard for me and I don't how to set about this.So i hope someone can direct me. By the way I use the sharepoint 2007 and visual studio 2008 to develop the webpart!

          N Offline
          N Offline
          Not Active
          wrote on last edited by
          #4

          You need to research the SharePoint object model for some of these

          SPWeb web = SPContext.Current.Web;
          web.Lists.Add(...)

          web.Lists.Remove(...)

          SPQuery q = new SPQuery();
          q.Query = "..."

          SPSiteDataQuery q = new SPSiteDataQuery();
          q.Query = "..."

          Show items is rather vague. How to show? In a list, a grid, a tree ???? You can look at SPGridView for a start


          I know the language. I've read a book. - _Madmatt

          T 1 Reply Last reply
          0
          • N Not Active

            You need to research the SharePoint object model for some of these

            SPWeb web = SPContext.Current.Web;
            web.Lists.Add(...)

            web.Lists.Remove(...)

            SPQuery q = new SPQuery();
            q.Query = "..."

            SPSiteDataQuery q = new SPSiteDataQuery();
            q.Query = "..."

            Show items is rather vague. How to show? In a list, a grid, a tree ???? You can look at SPGridView for a start


            I know the language. I've read a book. - _Madmatt

            T Offline
            T Offline
            tiny126
            wrote on last edited by
            #5

            thank you very much,Now I have only confuse how to build the interface to interactive with the user to input the parameter. Show item maybe just use a dropdown list to show all of the list then select one list then reflect to the textarea. it doesn't need a grid view.

            X 1 Reply Last reply
            0
            • T tiny126

              thank you very much,Now I have only confuse how to build the interface to interactive with the user to input the parameter. Show item maybe just use a dropdown list to show all of the list then select one list then reflect to the textarea. it doesn't need a grid view.

              X Offline
              X Offline
              xspy
              wrote on last edited by
              #6

              Hi, I have to implement the same web part, do you have any solution ? thanks

              1 Reply Last reply
              0
              Reply
              • Reply as topic
              Log in to reply
              • Oldest to Newest
              • Newest to Oldest
              • Most Votes


              • Login

              • Don't have an account? Register

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • World
              • Users
              • Groups