Article: How to filter data using DomainDataSource of Silverlight 4

 

The article got published here:

Silverlight 4.0: Filtering Data Using DomainDataSource

thanks
Jag

Posted in Silverlight/WPF | Tagged , | Leave a comment

Article: Sorting and Grouping data with DomainDataSource in Silverlight 4.0

 

My article focusing on all the features of sorting and grouping using DomainDataSource got published here:

Silverlight 4.0: Sorting and Grouping Data with DomainDataSource

thanks
Jag

Posted in Silverlight/WPF | Tagged , | Leave a comment

Article: Working with Query Parameters of DomainDataSource using Silverlight 4

 

My next article focusing on working with Query Parameters of DoaminDataSource got published here:

Silverlight 4.0: Query Parameters of DomainDataSource – A Second Glance

thanks
Jag

Posted in Silverlight/WPF | Tagged , | Leave a comment

Article: Understanding DomainDataSource in Silverlight 4.0

Hi,

My article explaining about DomainDataSource in Silverlight 4.0 got published here:

Silverlight 4.0: DomainDataSource

thanks
Jag

Posted in Silverlight/WPF | Tagged , | Leave a comment

Quick learn SharePoint 2010 – Part 6: How to delete a site from Site Collection

This series is mainly targeted for developers.

  • Open site collection in browser.  In may case, it shows two sites as shown below

image

  • Go to “Site Actions –> Site Settings” as shown below

image

  • Select “Sites and workspaces” under “Site Administration” as shown below

image

  • You can click “Delete” icon for the respective site as shown below:

image

You can also directly delete a site by going to that site first and then open site settings.  Once the site settings is open, you should be able to see “Delete this site” option as shown below:

image

The above approach is same for deleting sub-sites as well.

 

thanks
Jag

Posted in Sharepoint / WSS | Tagged | Leave a comment

Quick learn SharePoint 2010 – Part 5: How to create sites/subsites in a Site Collection

This series is mainly targeted for developers.

  • Open site collection in browser.  If you are following from previous articles, it would look like the following

image

  • Go to Site Actions –> New Site as shown below

image

 

  • Select a template (in this case, “Team Site”), provide name and URL and finally click on “Create” (you can customize more using “More Options” button)

image

  • The site gets created and it looks something like the following

image

  • If you go back to Site Collection, you should also site as shown below:

image

You can follow the same above method for creating sub-sites, except that you would start with site instead of site-collection.  Most of the options available for “Site Collection” would also be available for “Site”.

Second Approach:

We can also achieve similar to above using a different approach

  • go to Site Actions –> Site Settings as shown below

image

  • Under “Site Administration”, select “Sites and Workspaces”

image

  • You can click on “Create” at the top

image

  • Provide site details as necessary

image

  • Customize as necessary and click on “Create”

image

  • Once created, you should see new “HR” site as shown below

image

  • You can use “up” button to go through different site hierarchies

image

  • Once you move back to “Site collection” home, you should see both sites available from home page of site collection as shown below

image

  • You can also check the above sites in database as shown below

SELECT
    SiteId AS SiteGuid,
    Id AS WebGuid,
    FullUrl AS Url,
    Title,
    TimeCreated
FROM dbo.Webs

image

Another approach is to go to “Site Actions –> View All Site Content” and filter “View” with “Sites and Workspaces” and click on “Create” at the top as shown below:

image

 

thanks
Jag

Posted in Sharepoint / WSS | Tagged | Leave a comment

Quick learn SharePoint 2010 – Part 4: How to delete a Site Collection in SharePoint 2010

This series is mainly targeted for developers.

  • Open “SharePoint 2010 Central Administration”
  • Select “Application Management” from the left menu panel and click on “Delete a site collection” as shown below

image

  • You need to select site collection to perform delete.  select “Change Site Collection” from the drop menu as shown below

image

  • I hosted my site collection at the root of SharePoint web application (and not in "/Sites/”).  Click on “/” (root) to show site collection details.  Click “Ok” to select.

image

  • Once the selection is made, click on “Delete” to delete site collection from web application.

image

 

thanks
Jag

Posted in Sharepoint / WSS | Tagged | Leave a comment

Quick learn SharePoint 2010 – Part 3: How to create a Site Collection in SharePoint 2010

This series is mainly targeted for developers.

  • Open “SharePoint 2010 Central Administration”
  • Select “Create Site Collections” as shown below

image

  • Customize as necessary

image

  • In the following screen, select “/” if you want site collection to be hosted at root of web application (usually, this is selected when we want only one site collection to be created).  Select “/sites/”, if you want site collection to be hosted at “SharePointWebAppRoot/sites/” (you would need this if you want multiple site collections to be created as part of the same web application).  I select “/” to host site collection at root of web application.

image

  • type user name and click on “check names” button to ensure that the user name is valid

image

  • Provide security and click on “Ok”

image

  • The site collection gets created

image

  • As I created site collection at root of web application (listening at port 10101), you can directly access it using “http://SharePointServerName:10101” and you should see the screen as follows:

image

  • You can also check the site collection details in database as shown below:

SELECT
    SiteId AS SiteGuid,
    Id AS WebGuid,
    FullUrl AS Url,
    Title,
    TimeCreated
FROM dbo.Webs
WHERE (ParentWebId IS NULL)

image

 

thanks
Jag

Posted in Sharepoint / WSS | Tagged | Leave a comment

Quick learn SharePoint 2010 – Part 2: How to delete an existing Web Application using SharePoint 2010

This series is mainly targeted for developers.

  • Open Start menu and select “SharePoint 2010 Central Administration” and provide necessary credentials to log-in
  • Under “Application Management” section, click on “Manage Web Applications” and do as shown below:

image

thanks
Jag

Posted in Sharepoint / WSS | Tagged | Leave a comment

Quick learn SharePoint 2010 – Part 1: How to create a new Web Application using SharePoint 2010

This series is mainly targeted for developers.

I use a virtual machine installed with following software (in the same order) for this series:

  • Microsoft Windows Server 2008 R2
  • Microsoft SQL Server 2008 R2
  • Microsoft SharePoint Server 2010
  • Microsoft Visual Studio 2010 Ultimate
  • Microsoft Office 2010 Professional Plus (and Power Pivot for Excel)

The beginning – How to create a new Web Application using SharePoint 2010

  • Open Start menu and select “SharePoint 2010 Central Administration” and provide necessary credentials to log-in
  • Under “Application Management” section, click on “Manage Web Applications”

image

  • click “New” on the ribbon.

image

  • Provide authentication mode, name, port number and physical web path

image

  • customize if necessary.

image

  • For now, I selected “Network Service” to be the security for the new application pool.  I wanted to have my SharePoint web application to sit in its own Application Pool.

image

  • Customize if necessary.

image

  • Customize if necessary and finally click on “Ok”.

image

  • Your web application should be created momentarily.  You can start creating SharePoint Site Collections once the web application is created.

image

  • Once the web application is created, it should reflect in IIS as shown below:

image

  • You should also be able to see a new database created for the above web application as shown below:

image

 

thanks
Jag

Posted in Sharepoint / WSS | Tagged | Leave a comment