Thursday, December 22, 2011

Business Information Collection Web Aspect in SharePoint 2010

Enterprise Information Collection Web Aspect in SharePoint 2010 is used to present the Range of Enterprise data within a metered perspective structure. The Enterprise Information Collection web part is the most widely used web part for showing LOB data.

How to do punctuation have a look at in visual business 2010

These days, I want to provide a little information about Punctuation have a look at usually we have seen in Enthusiasm Concept Papers. You can also see when you form to deliver concept to someone via Google, Google mail, then in the box where you are writing if any spelling problem is there, instantly it display an underline in red coloring and right press on that will display a collection of change spelling, via an intelligent tag. So, customer can select the appropriate word to prevent spelling problem. This is the situation not to control in other program but also in Graphic Business 2010 also. Think I have form some sequence name , yes you are right , we can set our sequence value whatever we wish, but cause verifying is more highly effective choice to have a look at that you are not writing any incorrect element. If you sure that you have determine a right value in sequence, then you have also two choice offered by Punctuation Check device. One is Neglect, so the red underline level will go away to caution problem in spelling, and other is add to book, and your writing value will be included in book. So when when you form same word for different sequence value, no caution will be come.

Convert off Customer Notifies in SharePoint 2010

It would be simple to set up a customer notify in SharePoint 2010 collection however when someone comes again to you and say "Hey its annoying me with the notify emails as am getting 15, 20 emails everyday" you would say "No problems I can fix it" and then you would go again to the collection looking how you can do this and then you realize "What?? I can't do it" and by then you would have included 100 customers to the collection: S

Monday, December 19, 2011

Rotate an ASP.NET Photograph Management using HTML 5 Canvas


The HTML5 textile is one of the most ancient HTML 5 components. Presented by The apple company Inc. at first in 2004, the Canvas factor created its way into the first HTML 5 set up requirements. The Canvas factor is an HTML tag that you can add within HTML papers, for the objective of sketching design, via a JavaScript API.

Wednesday, December 14, 2011

Script to set up SharePoint 2010 in Microsoft windows 7


You are prepared to set up SharePoint 2010 in Windows 7? Then you are at the right location. For the set up you have to acquire all necessary and adhere to the finish MSDN document and then do comprehensive. If there is something which do all the actions for you then how it is? Excellent right?

Sunday, December 11, 2011

401 sign in problem with webparts on Customized made Masterpage SharePoint 2010


Over the last few times I have been very fast paced with a big issue. I designed a new Web page for myself. And off course began with the beginning expert web page of snreddy20 After developing the whole masterpage and managing (anonymous) it labored. Except for the websites where I used (custom) webparts.

Microsoft’s SharePoint 2010 Beginning Expert Page

, Microsoft’s Dallas Tester (http://twitter.com/dgtester) posted a new starter master page for SharePoint 2010:


http://code.msdn.microsoft.com/odcSP14StarterMaster


For those that never already know, “Starter” is the new phrase for little expert websites that were available for SharePoint 2007. Here are some screenshots of the beginning expert web page in measures, you will see that it is quite minimal:




This is a great resource for learning about SharePoint 2010 master pages. If you are interested in another type of starter master page experience, you can always check out starter master pages athttp://startermasterpages.codeplex.com. They are less minimal, but still are a good starting point for SharePoint 2010 branding projects.

How To Make SharePoint 2010 customized made graphic webpart properties


If you have designed SharePoint 2010 vintage web parts before, you know that you can easily determine customized made web element qualities which your web element code-behind can eat.


With the reputation of SharePoint 2010 Graphic Webpart, you are probably interested in having customized made qualities identified there too.
There are few items different about revealing your customized made qualities in a Graphic Web par

Let’s see the steps involved:

Add new or use existing Visual Web Part to your project, in our case called Webpart1
Open the Webpart1.cs file which will look something like this:

    01[ToolboxItemAttribute(false)]
    02    public class Webpart1: WebPart
    03    {
    04        private const string _ascxPath = @"~/_CONTROLTEMPLATES/[your ASCX].ascx";
    05        protected override void CreateChildControls()
    06        {
    07            Control control = Page.LoadControl(_ascxPath);
    08            Controls.Add(control);
    09        }
    10    }
    and add your custom property definition right below the CreateChildControls method, in our case the property will look something like this:
    1[WebBrowsable(true),
    2        Category("Configuration"),
    3        Personalizable(PersonalizationScope.Shared),
    4        WebDisplayName("Friendly Display Name"),
    5        WebDescription("Values: Whatever value you need)]
    6        public string PropertyValue { getset; }
    In here, the PropertyValue is the actual variable which will be later consumed by your web part user control.
  1. Update your CreateChildControls logic to look like this:
  2. 1protected override void CreateChildControls()
    2        {
    3            Control control = Page.LoadControl(_ascxPath);
    4            if (control!= null)
    5            {
    6                ((Webpart1UserControl)control).WebPart = this;
    7            }
    8            Controls.Add(control);
    9        }
    This piece here will pass in the properties every time the control is reloaded. In here, the only change you’ll need to make is to rename Webpart1UserControl to the [name of your webpart]UserControl. This will reference the ASCX used for the Visual Webpart.
  3. Switch to your user control … Webpart1UserControl.ascx.cs
  4. and define public variable right below the class declaration:
    1public Webpart1 WebPart { getset; }
    Here the Webpart1 is referencing the actual web part class file (not ASCX).
That’s all, in your code you can get a hold of the web part property value by using this: this.WebPart.PropertyValue, where the PropertyValue is the name of the variable we’ve chosen earlier.