Windows Scripting
  Home arrow Windows Scripting arrow Page 4 - Beginning SharePoint Web Part Development
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
WINDOWS SCRIPTING

Beginning SharePoint Web Part Development
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 20
    2008-08-20

    Table of Contents:
  • Beginning SharePoint Web Part Development
  • Developing your first WSS 3.0 web part using Visual Studio 2008 extensions
  • A better web part with event handling: code
  • A better web part with event handling: explanation
  • Debugging a WSS 3.0 web part using Visual Studio 2008

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Beginning SharePoint Web Part Development - A better web part with event handling: explanation


    (Page 4 of 5 )

    As Visual Studio 2008 doesn’t support a designer for developing Sharepoint web parts, we have to create all controls from scratch. We need to create a table having three rows with two columns (to hold six controls). Each of those controls must be added to each of those cells. Finally, the table must be added to page. The following explains how to do this in a step by step manner.

    The first step is to create a table to hold all the controls. The following code does the same:


    Dim tbl As New Table

    Dim tRow1 As New TableRow

    Dim tRow2 As New TableRow

    Dim tRow3 As New TableRow


    The above code creates a new table with three rows (rows are not added to table yet). Next, we need to create cells for each row.


    Dim tR1C1 As New TableCell

    Dim tR1C2 As New TableCell

    Dim tR2C1 As New TableCell

    Dim tR2C2 As New TableCell

    Dim tR3C1 As New TableCell

    Dim tR3C2 As New TableCell


    Now we add the cells to their respective rows:


    tRow1.Cells.Add(tR1C1)

    tRow1.Cells.Add(tR1C2)

    tRow2.Cells.Add(tR2C1)

    tRow2.Cells.Add(tR2C2)

    tRow3.Cells.Add(tR3C1)

    tRow3.Cells.Add(tR3C2)


    Then we add the rows to the table:


    tbl.Rows.Add(tRow1)

    tbl.Rows.Add(tRow2)

    tbl.Rows.Add(tRow3)


    Next, we create instances of the controls, provide values to properties and add event handlers (if any):


    Dim txtFirst As New TextBox

    txtFirst.ID = "txtFirst"

    Dim txtSecond As New TextBox

    txtSecond.ID = "txtSecond"

    Dim lblFirst As New Label

    lblFirst.Text = "Enter first:"

    Dim lblSecond As New Label

    lblSecond.Text = "Enter second:"

    Dim lblResult As New Label

    lblResult.ID = "lblResult"


    Dim btnSubmit As New Button

    btnSubmit.Text = "Submit"

    AddHandler btnSubmit.Click, AddressOf btnSubmit_click


     

    Now we add controls to their respective cells:


    tR1C1.Controls.Add(lblFirst)

    tR1C2.Controls.Add(txtFirst)

    tR2C1.Controls.Add(lblSecond)

    tR2C2.Controls.Add(txtSecond)

    tR3C1.Controls.Add(btnSubmit)

    tR3C2.Controls.Add(lblResult)


    Finally, we add the table to a page (say, web part):


    Me.Controls.Add(tbl)



    The output of the web part should look like the following image:



    More Windows Scripting Articles
    More By Jagadish Chaterjee


       · Hello guys,This is my first article in the series focusing on "sharepoint web...
       · Hello, I liked the article a lot, I followed it along and was able to create a web...
       · I have checked with different articles and thre were some comlexities in the...
       · Hi,with the help of your tutorial i have created and deploy the web part...
       · I know this article is a bit dated, but I've just discovered it and am trying to go...
       · I receive the same message stating: "This solution contains two assemblies with the...
       · Great post, but im not very familiar with VB and I was wondering if there ae samples...
       · Thak you for this article. But I have a request. Could you write a artcile about...
     

    WINDOWS SCRIPTING ARTICLES

    - More Windows Scripting Workarounds from Nilpo
    - Overloading Methods and More in VBScript
    - Improving MFC for Windows Vista
    - Regular Expressions in VBScript
    - Working with Dates in WMI
    - Completing Calendars with VBScript Date Func...
    - Building Calendars with VBScript Date Functi...
    - Working With Dates and Times in VBScript
    - Designing WCF DataContract Classes Using the...
    - Understanding Dates and Times in VBScript
    - Working With Arrays in VBScript
    - Compressed Folders in WSH
    - Using .NET Interops in VBScript
    - Nilpo`s Scripting Secrets, Vol I
    - Database operations using Silverlight 2.0 WC...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek