<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>.NET REPOSITORY</title>
	<atom:link href="http://quicklookfordotnet.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://quicklookfordotnet.wordpress.com</link>
	<description>Chirag Rajput</description>
	<lastBuildDate>Wed, 18 Jan 2012 18:25:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='quicklookfordotnet.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>.NET REPOSITORY</title>
		<link>http://quicklookfordotnet.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://quicklookfordotnet.wordpress.com/osd.xml" title=".NET REPOSITORY" />
	<atom:link rel='hub' href='http://quicklookfordotnet.wordpress.com/?pushpress=hub'/>
		<item>
		<title>MVVM (Model-View-ViewModel)</title>
		<link>http://quicklookfordotnet.wordpress.com/2010/11/10/mvvm-model-view-viewmodel/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2010/11/10/mvvm-model-view-viewmodel/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 05:59:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[Pattern]]></category>
		<category><![CDATA[Model-View-ViewMode]]></category>
		<category><![CDATA[ModelViewViewMode Pattern]]></category>
		<category><![CDATA[MVVM]]></category>
		<category><![CDATA[MVVM (Model-View-ViewModel)]]></category>

		<guid isPermaLink="false">https://quicklookfordotnet.wordpress.com/2010/11/10/mvvm-model-view-viewmodel/</guid>
		<description><![CDATA[The Model View ViewModel (MVVM) is an architectural pattern used in software engineering. It originated from Microsoft as a specialization of the Presentation Model design pattern introduced by Martin Fowler. Largely based on the Model-view-controller pattern (MVC), MVVM is targeted at modern UI development platforms. MVVM was designed to make use of specific functions in &#8230; <a href="http://quicklookfordotnet.wordpress.com/2010/11/10/mvvm-model-view-viewmodel/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=102&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-family:calibri;color:#000000;font-size:small;">The Model View ViewModel (MVVM) is an </span><a href="http://en.wikipedia.org/wiki/Architectural_pattern"><span style="font-family:calibri;color:#000000;font-size:small;">architectural pattern</span></a><span style="font-family:calibri;color:#000000;font-size:small;"> used in software engineering.</span></p>
<p><span style="font-family:calibri;color:#000000;font-size:small;">It originated from Microsoft as a specialization of the Presentation Model design pattern introduced by </span><a href="http://en.wikipedia.org/wiki/Martin_Fowler"><span style="font-family:calibri;color:#000000;font-size:small;">Martin Fowler</span></a><span style="font-family:calibri;color:#000000;font-size:small;">. </span></p>
<p><span style="font-family:calibri;color:#000000;font-size:small;">Largely based on the </span><a href="http://en.wikipedia.org/wiki/Model-view-controller"><span style="font-family:calibri;color:#000000;font-size:small;">Model-view-controller</span></a><span style="font-family:calibri;color:#000000;font-size:small;"> pattern (MVC), MVVM is targeted at modern UI development platforms.</span></p>
<p><span style="font-family:calibri;font-size:small;">MVVM was designed to make use of specific functions in WPF to better facilitate.</span></p>
<p><span style="font-family:calibri;font-size:small;">The separation of View layer development from the rest of the pattern by removing virtually all “code behind” from the View layer.</span></p>
<p><span style="font-family:calibri;font-size:small;">Instead of requiring Interactive Designers to write View code, they can use the native WPF markup language </span><a href="http://en.wikipedia.org/wiki/XAML"><span style="font-family:calibri;font-size:small;">XAML</span></a><span style="font-family:calibri;font-size:small;"> and create bindings to the ViewModel, which is written and maintained by application developers. </span></p>
<p><span style="font-family:calibri;font-size:small;">This separation of roles allows Interactive Designers to focus on UI needs rather than programming or business logic, allowing for the layers of an application to be developed in multiple work streams.</span></p>
<p><span style="font-family:calibri;font-size:small;">&#160;</span></p>
<p><span style="font-family:calibri;font-size:large;"><strong><span style="text-decoration:underline;">Model</span></strong></span></p>
<ol>
<li><span style="font-family:calibri;font-size:small;">The Model represents the actual data and/or information we are dealing with.An example of a model might be a contact (containing name, phone number, address, etc.) or it can be the Web service , Data Access in short anything which provide the data.</span> </li>
<li><span style="font-family:calibri;font-size:small;">The key to remember with the model is that it holds the information.</span> </li>
</ol>
<p><span style="font-family:calibri;font-size:small;">&#160;</span></p>
<p><span style="font-family:calibri;font-size:large;"><strong><span style="text-decoration:underline;">ViewModel</span></strong></span></p>
<ol>
<li><span style="font-family:calibri;font-size:small;">ViewModel is the base in the MVVP pattern.Acts as a “View” specific model class,adapting your model to the need of the view.</span> </li>
<li><span style="font-family:calibri;font-size:small;">It hold the state of the view.but do not know or hold the reference of the view.View is responsible for hold the reference of the ViewModel.&#160; </span></li>
<li><span style="font-family:calibri;font-size:small;">Responsible for talking with model/Service through their interfaces.</span> </li>
<li><span style="font-family:calibri;font-size:small;">The viewmodel may expose the model directly, or properties related to the model, for data-binding</span> </li>
<li><span style="font-family:calibri;font-size:small;">The ViewModel can also Validate the Data.</span> </li>
<li><span style="font-family:calibri;font-size:small;">The viewmodel exposes not only models, but also exposes Notifiable Properties, and Observable Collections to the View.The View Binds to these ViewModel entities/members(supported by wpf).</span> </li>
</ol>
<p><span style="font-family:calibri;font-size:large;"><strong><span style="text-decoration:underline;">View</span></strong></span></p>
<ol>
<li><strong><span style="text-decoration:underline;"><span style="font-size:large;">&#160;</span></span></strong><span style="font-family:calibri;font-size:small;">The view is what most of us are familiar with and the only thing the end user really interacts with. It is the presentation of the data.</span> </li>
<li><span style="font-family:calibri;font-size:small;">The View holds a reference to the ViewModel.View is completely isolated from the model.</span> </li>
<li><span style="font-family:calibri;font-size:small;">In MVVM ,A View is defined in XAML and should not have any logic in the code-behind. It binds to the view-model by only using data binding.</span> </li>
<li><span style="font-family:calibri;font-size:small;">The view handles its own UI events, then maps them to the viewmodel via commands.</span> </li>
</ol>
<p><span style="font-family:calibri;font-size:small;"><strong><span style="text-decoration:underline;">General</span></strong></span></p>
<ol>
<li><span style="font-family:calibri;font-size:small;">The view and the viewmodel communicate via data-binding, method calls, properties, events, and messages.</span> </li>
<li><span style="font-family:calibri;font-size:small;">The models and properties on the viewmodel are updated from the view via two-way databinding.</span> </li>
<li><span style="font-family:calibri;font-size:small;">When user update the view,Databinding pushes changes to the ViewModel.</span> </li>
<li><span style="font-family:calibri;font-size:small;">when Model updates ViewModel DataBinding pushes changes to the View.</span>&#160; </li>
<li>The key thing to remember is that you have one and only one ViewModel per view.</li>
</ol>
<p><font size="4" face="Calibri"><strong>Implementations of the MVVM pattern have the following characteristics:</strong></font></p>
<ol>
<li><font size="3" face="Calibri">The View class generates events in response to user interactions, and these events are handled by the corresponding ViewModel class. The View class has no knowledge of how the events are handled, or what impact the events will have on the Model. </font></li>
<li><font size="3" face="Calibri">The ViewModel class determines whether a user action requires modification of the data in the Model, and acts on the Model if required. For example, if a user presses a button to update the inventory quantity for a part, the View simply notifies the ViewModel that this event occurred. The ViewModel retrieves the new inventory amount from the View and updates the Model. This decouples the View from the Model, and consolidates the business logic into the ViewModel and the Model where it can be tested. </font></li>
<li><font size="3" face="Calibri">The Model notifies the ViewModel if the data in the underlying data store has changed. Generally, when you work with a stateless request/response model, you don&#8217;t need to worry about whether data has changed while the request is being processed, since the window of time is small. With rich Internet application (RIA) approaches, the Model data typically stays in memory for longer, and multiple active Views may share the Model data. A user may make changes in one View that affects a different View within the application. The Model fires events to notify any active ViewModels of data changes. </font></li>
<li><font size="3" face="Calibri">The ViewModel notifies the View when information has changed. This is typically automated through the two-way binding infrastructure described previously.</font></li>
</ol>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2010/11/mvvm1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="MVVM" border="0" alt="MVVM" src="http://quicklookfordotnet.files.wordpress.com/2010/11/mvvm_thumb1.png?w=697&#038;h=307" width="697" height="307" /></a></p>
<p><span style="font-family:calibri;font-size:small;"><span style="font-size:large;"><span style="text-decoration:underline;">Benefits and Consequences of Using MVVM</span></span></span></p>
<p><span style="font-family:calibri;font-size:small;"><span style="font-size:large;"><span style="text-decoration:underline;"><strong>The benefits of MVVM are the following:</strong><strong> </strong></span>
<ol>
<li><span style="font-family:calibri;font-size:small;">Loose Coupling.</span> </li>
<li><span style="font-family:calibri;font-size:small;">A ViewModel provides a single store for presentation policy and state, thus improving the reusability of the Model (by decoupling it from the Views) and the replaceability of the Views (by removing specific presentation policy from them)</span> </li>
<li><span style="font-family:calibri;font-size:small;">The Model-View-ViewModel design improves the overall testability of the application. One can easily create unit tests that target the Model and the ViewModel layers. The MVVM design also improves the “mockability” of the application, by allowing easy run-time simulation of the tiers, which is crucial to testing complex software products.</span> </li>
<li><span style="font-family:calibri;font-size:small;">The Model-View-ViewModel design is a very loosely coupled design. The View holds a reference to the ViewModel, and the ViewModel holds a reference to the Model. The rest is done by the data-binding and commanding infrastructure of WPF.</span> </li>
</ol>
<p><strong><strong>The consequences of MVVM are the following:</strong></strong>
<p><strong></strong>
<ol>
<li><span style="font-family:calibri;font-size:small;">Hard to Dabug because Databinding is&#160; Declarative.</span> </li>
<li><span style="font-family:calibri;font-size:small;">The typical relationship between a ViewModel and the corresponding Views is one-to-many, but there are also situations where that is not necessarily true. In general, any business logic and input-handling business logic (selection tracking, and so on) is kept in the ViewModel.</span> </li>
<li><span style="font-family:calibri;font-size:small;">There are situations when one ViewModel is aware of another ViewModel within the same application. Such situations arise when there is a master-subordinate relationship between two ViewModels or when a ViewModel represents a single item (for example, the visual representation state of a single contact). When this happens, one ViewModel can represent a collection of ViewModels.</span> </li>
</ol>
</p>
<p>             </span></span></p>
<p>Othere Reference :<a title="http://msdn.microsoft.com/en-us/library/ff798384.aspx" href="http://msdn.microsoft.com/en-us/library/ff798384.aspx">http://msdn.microsoft.com/en-us/library/ff798384.aspx</a></p>
<br />Filed under: <a href='http://quicklookfordotnet.wordpress.com/category/pattern/'>Pattern</a> Tagged: <a href='http://quicklookfordotnet.wordpress.com/tag/model-view-viewmode/'>Model-View-ViewMode</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/modelviewviewmode-pattern/'>ModelViewViewMode Pattern</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/mvvm/'>MVVM</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/mvvm-model-view-viewmodel/'>MVVM (Model-View-ViewModel)</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=102&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2010/11/10/mvvm-model-view-viewmodel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2010/11/mvvm_thumb1.png" medium="image">
			<media:title type="html">MVVM</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint&#8217;s type of List &amp; its Item&#8217;s Field</title>
		<link>http://quicklookfordotnet.wordpress.com/2010/10/27/sharepoints-type-of-list-its-items-field/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2010/10/27/sharepoints-type-of-list-its-items-field/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 10:54:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Createing Calendar in Sharepoint2010.]]></category>
		<category><![CDATA[sharepoint 2010.]]></category>
		<category><![CDATA[SharePoint list's field]]></category>
		<category><![CDATA[SharePoint's List]]></category>
		<category><![CDATA[SharePoint's type of List & its Item’s Field]]></category>

		<guid isPermaLink="false">https://quicklookfordotnet.wordpress.com/2010/10/27/sharepoints-type-of-list-its-items-field/</guid>
		<description><![CDATA[Calendar List Field Name Type Location String Start Time DateTime End Time DateTime Description String Title String Category String fAllDayEvent Boolean &#160; &#160; &#160; &#160; Contact List Field Name Type Title String FirstName String FullName String Email String Company String JobTitle String WorkPhone String HomePhone String CellPhone String WorkFax String WorkAddress String WorkCity String WorkState &#8230; <a href="http://quicklookfordotnet.wordpress.com/2010/10/27/sharepoints-type-of-list-its-items-field/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=98&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><u><font size="3" face="Calibri">Calendar List</font></u></strong></p>
<blockquote><p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong><font size="3" face="Calibri">Field Name</font></strong></td>
<td valign="top" width="200"><strong><font size="3" face="Calibri">Type</font></strong></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Location</font></td>
<td valign="top" width="200"><font size="3" face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Start Time</font></td>
<td valign="top" width="200"><font size="3" face="Calibri">DateTime</font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">End Time</font></td>
<td valign="top" width="200"><font size="3" face="Calibri">DateTime</font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Description</font></td>
<td valign="top" width="200"><font size="3" face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Title</font></td>
<td valign="top" width="200"><font size="3" face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Category</font></td>
<td valign="top" width="200"><font size="3" face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">fAllDayEvent</font></td>
<td valign="top" width="200"><font size="3" face="Calibri">Boolean</font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">&#160;</font></td>
<td valign="top" width="200"><font size="3" face="Calibri">&#160;</font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">&#160;</font></td>
<td valign="top" width="200"><font size="3" face="Calibri">&#160;</font></td>
</tr>
</tbody>
</table>
</blockquote>
<p><strong><u><font size="3" face="Calibri">Contact List</font></u></strong></p>
<p><strong><u><font size="3" face="Calibri"></font></u></strong></p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong><font face="Calibri">Field Name</font></strong></td>
<td valign="top" width="200"><strong><font face="Calibri">Type</font></strong></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Title</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">FirstName</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">FullName</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Email</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Company</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">JobTitle</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">WorkPhone</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">HomePhone</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">CellPhone</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">WorkFax</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">WorkAddress</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">WorkCity</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">WorkState</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">WorkZip</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">WorkCountry</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">WebPage</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Comments</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
</tbody>
</table>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3" face="Calibri"><strong><u>Announcement List</u></strong></font></p>
<p><font size="3" face="Calibri"></font></p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong><font face="Calibri">Field Name</font></strong></td>
<td valign="top" width="200"><strong><font face="Calibri">Type</font></strong></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Title</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Body</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Expires</font></td>
<td valign="top" width="200"><font face="Calibri">DateTime</font></td>
</tr>
</tbody>
</table>
<p><font size="3" face="Calibri"><strong><u>Disscussion List</u></strong></font></p>
<p><strong><u><font size="3" face="Calibri"></font></u></strong></p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong><font face="Calibri">Field Name</font></strong></td>
<td valign="top" width="200"><strong><font face="Calibri">Type</font></strong></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Title</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Body</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
</tbody>
</table>
<p><font size="3" face="Calibri"><strong><u>Task List</u></strong></font></p>
<p><strong><u><font size="3" face="Calibri"></font></u></strong></p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong><font face="Calibri">Field Name</font></strong></td>
<td valign="top" width="200"><strong><font face="Calibri">Type</font></strong></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Title</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Status</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">PercentComplete</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Priority</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Body</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">StartDate</font></td>
<td valign="top" width="200"><font face="Calibri">DateTime</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">DueDate</font></td>
<td valign="top" width="200"><font face="Calibri">DateTime</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">AssignedTo</font></td>
<td valign="top" width="200"><font face="Calibri">user</font></td>
</tr>
</tbody>
</table>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3" face="Calibri"><strong><u>Issue List</u></strong></font></p>
<p><strong><u><font size="3" face="Calibri"></font></u></strong></p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong><font face="Calibri">Field Name</font></strong></td>
<td valign="top" width="200"><strong><font face="Calibri">Type</font></strong></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Title</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Status</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Comments</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Priority</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Description</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">DueDate</font></td>
<td valign="top" width="200"><font face="Calibri">DateTime</font></td>
</tr>
</tbody>
</table>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3" face="Calibri"><strong><u>Link List</u></strong></font></p>
<p><strong><u><font size="3" face="Calibri"></font></u></strong></p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong><font face="Calibri">Field Name</font></strong></td>
<td valign="top" width="200"><strong><font face="Calibri">Type</font></strong></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">URL</font></td>
<td valign="top" width="200"><font face="Calibri">SPFieldUrlValue</font></td>
</tr>
<tr>
<td valign="top" width="200"><font face="Calibri">Notes</font></td>
<td valign="top" width="200"><font face="Calibri">String</font></td>
</tr>
</tbody>
</table>
<p><font size="3" face="Calibri"></font></p>
<br />Filed under: <a href='http://quicklookfordotnet.wordpress.com/category/sharepoint/'>Sharepoint</a> Tagged: <a href='http://quicklookfordotnet.wordpress.com/tag/createing-calendar-in-sharepoint2010/'>Createing Calendar in Sharepoint2010.</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/sharepoint-2010/'>sharepoint 2010.</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/sharepoint-lists-field/'>SharePoint list's field</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/sharepoints-list/'>SharePoint's List</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/sharepoints-type-of-list-its-item%e2%80%99s-field/'>SharePoint's type of List &amp; its Item’s Field</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=98&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2010/10/27/sharepoints-type-of-list-its-items-field/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>
	</item>
		<item>
		<title>Programmatically add an item/Contact to a SharePoint 2010 Contact List</title>
		<link>http://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemcontact-to-a-sharepoint-2010-contact-list/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemcontact-to-a-sharepoint-2010-contact-list/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 10:46:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Createing contects in Sharepoint2010]]></category>
		<category><![CDATA[Programmatically add an Contact to a SharePoint 2010 Contact List]]></category>
		<category><![CDATA[Programmatically add an item to a SharePoint 2010 Contact List]]></category>
		<category><![CDATA[Programmatically add an item/Contact to a SharePoint 2010 Contact List]]></category>
		<category><![CDATA[sharepoint 2010.Contact list]]></category>

		<guid isPermaLink="false">https://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemcontact-to-a-sharepoint-2010-contact-list/</guid>
		<description><![CDATA[Here,in this post I am going to describes how we can programmatically add an contact to the SharePoint 2010. We go here step by steps.So.let’s begin. (1) Creating the Contact List. //Get&#160; the Site under which you want to create Contacts. SPSite site = new SPSite(http://localhost); SPWeb web = site.AllWebs[0]; //Give the Type of List &#8230; <a href="http://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemcontact-to-a-sharepoint-2010-contact-list/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=97&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font color="#000000" size="3" face="Calibri">Here,in this post I am going to describes how we can programmatically add an contact to the SharePoint 2010.</font></p>
<p><font color="#000000" size="3" face="Calibri">We go here step by steps.So.let’s begin.</font></p>
<p><u><font color="#000000" size="3" face="Calibri"><strong>(1) Creating the Contact List.</strong></font></u></p>
<p><font color="#000000" size="3" face="Calibri">//Get&#160; the Site under which you want to create Contacts.</font></p>
<p><font color="#000000" size="3" face="Calibri">SPSite site = new SPSite(</font><a href="http://localhost);"><font color="#000000" size="3" face="Calibri">http://localhost);</font></a><font color="#000000" size="3" face="Calibri">      <br />SPWeb web = site.AllWebs[0]; </font></p>
<p><font face="Calibri"><font color="#000000" size="3">//Give the Type of List you want to create,in Our case it’s noting but Contacts.        <br />SPList list = web.Lists[&quot;Contacts&quot;]; </font></font></p>
<p><font color="#000000" size="3" face="Calibri">Now,Up to this we has the instance of Contact list.</font></p>
<p><strong><u><font color="#000000" size="3" face="Calibri">(2)Adding Contact In to Contact list.</font></u></strong></p>
<p><font color="#000000" size="3" face="Calibri">To Add/Create the Contacts we need to update following field.</font></p>
<p><font color="#000000" size="3" face="Calibri"></font></p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong><u><font color="#000000" face="Calibri">Field Name</font></u></strong></td>
<td valign="top" width="200"><font face="Calibri"><font color="#000000"><strong><u>Type</u></strong> </font></font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">Title </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">FirstName </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">FullName </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">Email </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">Company </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">JobTitle </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">WorkPhone </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">HomePhone </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">CellPhone </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">WorkFax </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">WorkAddress </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">WorkCity </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">WorkState </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">WorkZip </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">WorkCountry </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">WebPage </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
<tr>
<td valign="top" width="200"><font color="#000000" face="Calibri">Comments </font></td>
<td valign="top" width="200"><font color="#000000" face="Calibri">String </font></td>
</tr>
</tbody>
</table>
<p><font color="#000000" size="3" face="Calibri">//Adding event into list      <br />&#160; SPListItem contact = list.Items.Add();</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;Title&quot;] = “Rajput”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;FirstName&quot;] = “Chirag”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;FullName&quot;] = “Rajput Chirag”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;Email&quot;] =&#160; </font><a href="mailto:&ldquo;Chirag@test.com"><font color="#000000" size="3" face="Calibri">“Chirag@test.com</font></a><font color="#000000" size="3" face="Calibri">”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;Company&quot;] = “My Company”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;JobTitle&quot;] = “Software Eng.;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkPhone&quot;] = “0303- 1233344” ;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;HomePhone&quot;] = “2121-323232”; </font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;CellPhone&quot;] = “+1213232323”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkFax&quot;] = “122132-3232”</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkAddress&quot;] = “ddadadada”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkCity&quot;] = “Bangalore”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkState&quot;] = “Karnataka”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkZip&quot;] = “1212-32”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkCountry&quot;] = workcountry&quot; ;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WebPage&quot;] = “http://Mylog.com”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;Comments&quot;] = “MyComments”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact.Update();      <br /></font></p>
<p><font color="#000000" size="3" face="Calibri"></font></p>
<p><font color="#000000" size="3" face="Calibri">Your,final code will look like this.</font></p>
<p><font color="#000000" size="3" face="Calibri">//Get&#160; the Site under which you want to create Contacts.</font></p>
<p><font color="#000000" size="3" face="Calibri">SPSite site = new SPSite(</font><a href="http://localhost);"><font color="#000000" size="3" face="Calibri">http://localhost);</font></a><font color="#000000" size="3" face="Calibri">      <br />SPWeb web = site.AllWebs[0]; </font></p>
<p><font face="Calibri"><font color="#000000" size="3">//Give the Type of List you want to create,in Our case it’s noting but Contacts.        <br />SPList list = web.Lists[&quot;Contacts&quot;]; </font></font></p>
<p><font color="#000000" size="3" face="Calibri">//Adding Contact into list      <br />&#160; SPListItem contact = list.Items.Add();</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;Title&quot;] = “Rajput”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;FirstName&quot;] = “Chirag”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;FullName&quot;] = “Rajput Chirag”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;Email&quot;] =&#160; </font><a href="mailto:&ldquo;Chirag@test.com"><font color="#000000" size="3" face="Calibri">“Chirag@test.com</font></a><font color="#000000" size="3" face="Calibri">”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;Company&quot;] = “My Company”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;JobTitle&quot;] = “Software Eng.;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkPhone&quot;] = “0303- 1233344” ;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;HomePhone&quot;] = “2121-323232”; </font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;CellPhone&quot;] = “+1213232323”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkFax&quot;] = “122132-3232”</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkAddress&quot;] = “ddadadada”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkCity&quot;] = “Bangalore”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkState&quot;] = “Karnataka”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkZip&quot;] = “1212-32”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WorkCountry&quot;] = workcountry&quot; ;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;WebPage&quot;] = “http://Mylog.com”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact[&quot;Comments&quot;] = “MyComments”;</font></p>
<p><font color="#000000" size="3" face="Calibri">contact.Update();      <br /></font></p>
<p><font color="#000000" size="3" face="Calibri">Thanks.</font></p>
<br />Filed under: <a href='http://quicklookfordotnet.wordpress.com/category/sharepoint/'>Sharepoint</a> Tagged: <a href='http://quicklookfordotnet.wordpress.com/tag/createing-contects-in-sharepoint2010/'>Createing contects in Sharepoint2010</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/programmatically-add-an-contact-to-a-sharepoint-2010-contact-list/'>Programmatically add an Contact to a SharePoint 2010 Contact List</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/programmatically-add-an-item-to-a-sharepoint-2010-contact-list/'>Programmatically add an item to a SharePoint 2010 Contact List</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/programmatically-add-an-itemcontact-to-a-sharepoint-2010-contact-list/'>Programmatically add an item/Contact to a SharePoint 2010 Contact List</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/sharepoint-2010-contact-list/'>sharepoint 2010.Contact list</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=97&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemcontact-to-a-sharepoint-2010-contact-list/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>
	</item>
		<item>
		<title>Programmatically add an item/event to a SharePoint 2010 calendar</title>
		<link>http://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemevent-to-a-sharepoint-2010-calendar/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemevent-to-a-sharepoint-2010-calendar/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 10:16:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Calendar.Sharepoint 2010]]></category>
		<category><![CDATA[Createing Calendar in Sharepoint2010.]]></category>
		<category><![CDATA[Programmatically add an event to a SharePoint 2010 calendar]]></category>
		<category><![CDATA[Programmatically add an item to a SharePoint 2010 calendar]]></category>
		<category><![CDATA[Programmatically add an item/event to a SharePoint 2010 calendar]]></category>

		<guid isPermaLink="false">https://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemevent-to-a-sharepoint-2010-calendar/</guid>
		<description><![CDATA[Here,in this post I am going to describes how we can programmatically add an Event to the SharePoint 2010. In SharePoint, Calendar is nothing but the one type of list.So as we are adding item in it,we can create the event for Calendar. We go here step by steps.So.let’s begin. (1) Creating the Calendar. //Get&#160; &#8230; <a href="http://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemevent-to-a-sharepoint-2010-calendar/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=96&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><font size="3" face="Calibri">Here,in this post I am going to describes how we can programmatically add an Event to the SharePoint 2010.</font></p>
<p><font size="3" face="Calibri">In SharePoint, Calendar is nothing but the one type of list.So as we are adding item in it,we can create the event for Calendar.</font></p>
<p><font size="3" face="Calibri">We go here step by steps.So.let’s begin.</font></p>
<p><u><font size="3" face="Calibri"><strong>(1) Creating the Calendar.</strong></font></u></p>
<p><font color="#ff0000" size="3" face="Calibri">//Get&#160; the Site under which you want to create Calendar.</font></p>
<p><font size="3" face="Calibri">SPSite site = new SPSite(</font><a href="http://localhost);"><font size="3" face="Calibri">http://localhost);</font></a><font size="3" face="Calibri">      <br />SPWeb web = site.AllWebs[0]; </font></p>
<p><font size="3" face="Calibri"><font color="#ff0000">//Give the Type of List you want to create,in Our case it’s noting but Calendar.        <br /></font>SPList list = web.Lists[&quot;Calendar&quot;]; </font></p>
<p><font size="3" face="Calibri">Now,Up to this we has the instance of Calendar list.</font></p>
<p><strong><u><font size="3" face="Calibri">(2)Adding Event In to Calendar.</font></u></strong></p>
<p><font size="3" face="Calibri">To Add/Create the calendar we need to update following field.</font></p>
<p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="200"><strong><font size="3" face="Calibri"><u>Field Name</u>&#160;&#160;&#160; </font></strong></td>
<td valign="top" width="200"><font size="3"><font face="Calibri"><strong><u>Type</u></strong>&#160;&#160;&#160;&#160; </font></font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Location </font></td>
<td valign="top" width="200"><font size="3" face="Calibri">String&#160;&#160;&#160;&#160;&#160;&#160; </font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Start Time </font></td>
<td valign="top" width="200"><font size="3" face="Calibri">DateTime&#160;&#160;&#160;&#160;&#160;&#160; </font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">End Time&#160;&#160;&#160; </font></td>
<td valign="top" width="200"><font size="3" face="Calibri">DateTime&#160; </font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Description&#160;&#160;&#160; </font></td>
<td valign="top" width="200"><font size="3" face="Calibri">String&#160;&#160;&#160;&#160;&#160;&#160; </font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Title&#160;&#160;&#160; </font></td>
<td valign="top" width="200"><font size="3" face="Calibri">String&#160;&#160;&#160;&#160;&#160;&#160; </font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">Category&#160;&#160;&#160; </font></td>
<td valign="top" width="200"><font size="3" face="Calibri">String&#160;&#160;&#160;&#160; </font></td>
</tr>
<tr>
<td valign="top" width="200"><font size="3" face="Calibri">fAllDayEvent&#160;&#160;&#160; </font></td>
<td valign="top" width="200"><font size="3" face="Calibri">Boolean</font></td>
</tr>
</tbody>
</table>
<p><font size="3" face="Calibri">&#160; </font></p>
<p><font size="3" face="Calibri"><font color="#ff0000">//Adding event into list        <br /></font>&#160; SPListItem newEvent = list.Items.Add();</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Location&quot;] = “This is location”;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Start Time&quot;] = DateTime.Now;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;End Time&quot;] = DateTime.Now.AddHours(1);</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Description&quot;] = “Going for Meting”;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Title&quot;] = “New Meting”;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;fAllDayEvent&quot;]&#160; =&#160; false;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Category&quot;] = “Meting”;      <br />&#160;</font></p>
<p><font size="3" face="Calibri"><font color="#ff0000">//Create Event in the sharpoint.</font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />newEvent.Update();</font></p>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3" face="Calibri">Your,final code will look like this.</font></p>
<p><font color="#ff0000" size="3" face="Calibri">//Get&#160; the Site under which you want to create Calendar.</font></p>
<p><font size="3" face="Calibri">SPSite site = new SPSite(</font><a href="http://localhost);"><font size="3" face="Calibri">http://localhost);</font></a><font size="3" face="Calibri">      <br />SPWeb web = site.AllWebs[0]; </font></p>
<p><font size="3" face="Calibri"><font><font color="#ff0000">//Give the Type of List you want to create,in Our case it’s noting but Calendar.          <br /></font>SPList list = web.Lists[&quot;Calendar&quot;]; </font></font></p>
<p><font size="3" face="Calibri"><font><font color="#ff0000">//Adding event into list          <br /></font>&#160; SPListItem newEvent = list.Items.Add();</font></font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Location&quot;] = “This is location”;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Start Time&quot;] = DateTime.Now;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;End Time&quot;] = DateTime.Now.AddHours(1);</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Description&quot;] = “Going for Meting”;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Title&quot;] = “New Meting”;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;fAllDayEvent&quot;]&#160; =&#160; false;</font></p>
<p><font size="3" face="Calibri">newEvent[&quot;Category&quot;] = “Meting”;</font></p>
<p><font size="3" face="Calibri"><font><font color="#ff0000">//Create Event in the sharpoint</font>.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />newEvent.Update();</font></font></p>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3" face="Calibri">Enjoy your Calendar Event.</font></p>
<p><font size="3">     <br /><font face="Calibri"></font></font></p>
<p><font size="3">     <br /><font face="Calibri"></font></font></p>
<p><font size="3" face="Calibri">&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br /></font></p>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3">     <br /><font face="Calibri"></font></font></p>
<p><font size="3" face="Calibri">&#160;</font></p>
<br />Filed under: <a href='http://quicklookfordotnet.wordpress.com/category/sharepoint/'>Sharepoint</a> Tagged: <a href='http://quicklookfordotnet.wordpress.com/tag/calendar-sharepoint-2010/'>Calendar.Sharepoint 2010</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/createing-calendar-in-sharepoint2010/'>Createing Calendar in Sharepoint2010.</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/programmatically-add-an-event-to-a-sharepoint-2010-calendar/'>Programmatically add an event to a SharePoint 2010 calendar</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/programmatically-add-an-item-to-a-sharepoint-2010-calendar/'>Programmatically add an item to a SharePoint 2010 calendar</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/programmatically-add-an-itemevent-to-a-sharepoint-2010-calendar/'>Programmatically add an item/event to a SharePoint 2010 calendar</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=96&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2010/10/27/programmatically-add-an-itemevent-to-a-sharepoint-2010-calendar/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://quicklookfordotnet.wordpress.com/2010/10/21/91/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2010/10/21/91/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 10:32:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Configure the SharePoint for the sending the email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Microsoft.SharePoint]]></category>
		<category><![CDATA[Microsoft.SharePoint.dll]]></category>
		<category><![CDATA[Microsoft.SharePoint.Utilities]]></category>
		<category><![CDATA[Microsoft.SharePoint.Utilities.dll.]]></category>
		<category><![CDATA[Sending the mail in sharepoint]]></category>
		<category><![CDATA[sharepoint 2010.]]></category>

		<guid isPermaLink="false">https://quicklookfordotnet.wordpress.com/2010/10/21/91/</guid>
		<description><![CDATA[Sending Mail in SharePoint There is two way of sending the mail. (1)using existing .net classes. (System.Net.Mail). (2)using the SharePoint classes(Microsoft.SharePoint.Utilities). The benefit of the second choice is you don&#8217;t need to store any other configuration for your SMTP server on your code. The code will directly use the SharePoint configuration. Configure the SharePoint for &#8230; <a href="http://quicklookfordotnet.wordpress.com/2010/10/21/91/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=91&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><font color="#000000" size="6" face="Calibri"><strong><u>Sending Mail in SharePoint </u></strong></font></p>
<p><font face="Calibri"><font size="3"><strong><font color="#0000ff"></font></strong></font></font></p>
<p><font face="Calibri"><font size="3"><strong><font color="#0000ff">There is two way of sending the mail.</font></strong></font></font><font face="Calibri"><font size="3"><strong><font color="#0000ff">           <br /></font></strong>(1)using existing .net classes. (System.Net.Mail).        <br />(2)using the SharePoint classes(Microsoft.SharePoint.Utilities).</font></font></p>
<p><font size="3" face="Calibri">The benefit of the second choice is you don&#8217;t need to store any other configuration for your SMTP server on your code.     <br />The code will directly use the SharePoint configuration.</font></p>
<p><font color="#0000ff" size="5" face="Calibri">Configure the SharePoint for the sending the email</font></p>
<p><font size="3" face="Calibri">So.let&#8217;s first see,How we can configure the SharePoint for the sending the email.     <br />To configure the SharePoint       <br />(1)Open/Brows the&#160; &quot;SharePoint Central Administration Site&quot;.</font></p>
<p><font size="3" face="Calibri">     <br />(2) In Central Administration&#8217;s Menu click on the System Settings.</font></p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2010/10/system-settings.png"><font size="3" face="Calibri"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="System settings" border="0" alt="System settings" src="http://quicklookfordotnet.files.wordpress.com/2010/10/system-settings_thumb.png?w=505&#038;h=303" width="505" height="303" /></font></a></p>
<p><font size="3" face="Calibri">(3)Now,in right side click on the Configure outgoing e-mail settings under E-mail and Text Messages(SMS) section.</font></p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2010/10/e-mail.png"><font size="3" face="Calibri"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="E-mail" border="0" alt="E-mail" src="http://quicklookfordotnet.files.wordpress.com/2010/10/e-mail_thumb.png?w=517&#038;h=275" width="517" height="275" /></font></a></p>
<p><font size="3" face="Calibri">(4)Now, in Outbound SMTP server give the name of the outgoing server address. e.g(smtp.provider.com)</font></p>
<p> <font size="3" face="Calibri">
<p><font size="3" face="Calibri">(5)In From address filed give the from address( This can be overwrite by code,it&#8217;s ok if you keep this blank). and&#160; click on ok.</font></p>
<p><font size="3" face="Calibri">Now,your SharePoint is configure to send the mail.</font></p>
<p><font color="#0000ff" size="5" face="Calibri">Sending the Mail</font></p>
<p> </font>
<p><font size="3" face="Calibri"> Below code will explain you how you can send the mail using SharePoint configuration.</font></p>
<p><font size="3" face="Calibri">This code is uses classes form the <strong>Microsoft.SharePoint.dll</strong> and <strong>Microsoft.SharePoint.Utilities.dll.</strong></font></p>
<p><font size="3" face="Calibri">&#160;&#160;&#160;&#160;&#160;&#160;&#160; public bool SendMail()     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#00ff00">&#160; //Get Current website       <br /></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; SPWeb web = SPContext.Current.Web;</font></p>
<p><font size="3" face="Calibri">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#00ff00"> //Check emilServer is set       <br /></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; bool isEmailServerSet = SPUtility.IsEmailServerSet(web);</font></p>
<p><font size="3" face="Calibri">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; bool result = false;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (isEmailServerSet)      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#00ff00">&#160; //The email header        <br /></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; StringDictionary headers = new StringDictionary();      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; headers.Add(&quot;to&quot;,&quot;chiragbrajput@hotmail.com&quot;));      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; headers.Add(&quot;cc&quot;, <a href="mailto:Chiragbrajput@hotmail.com">Chiragbrajput@hotmail.com</a>);</font></p>
<p><font size="3" face="Calibri">     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#00ff00">&#160; //Change the from setting(optional)       <br /></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; headers.Add(&quot;from&quot;,&quot;hotmailAdmin@hotmail.com&quot;);      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; headers.Add(&quot;subject&quot;, &quot;TestingEmail&quot;);      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; headers.Add(&quot;content-type&quot;, &quot;text/html&quot;); //This is the default type, so isn&#8217;t neccessary.</font></p>
<p><font size="3" face="Calibri">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#00ff00">&#160;&#160; //The email body        <br /></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; string bodyText = &quot;hello World&quot;;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="#00ff00">&#160; //indicate mail send succefully or not.       <br /></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; result = SPUtility.SendEmail(web, headers, bodyText);      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }      <br />&#160;&#160;&#160; }      <br /></font></p>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3" face="Calibri"></font></p>
<p><font size="3" face="Calibri"></font></p>
<br />Filed under: <a href='http://quicklookfordotnet.wordpress.com/category/sharepoint/'>Sharepoint</a> Tagged: <a href='http://quicklookfordotnet.wordpress.com/tag/configure-the-sharepoint-for-the-sending-the-email/'>Configure the SharePoint for the sending the email</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/email/'>email</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/microsoft-sharepoint/'>Microsoft.SharePoint</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/microsoft-sharepoint-dll/'>Microsoft.SharePoint.dll</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/microsoft-sharepoint-utilities/'>Microsoft.SharePoint.Utilities</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/microsoft-sharepoint-utilities-dll/'>Microsoft.SharePoint.Utilities.dll.</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/sending-the-mail-in-sharepoint/'>Sending the mail in sharepoint</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/sharepoint-2010/'>sharepoint 2010.</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=91&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2010/10/21/91/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2010/10/system-settings_thumb.png" medium="image">
			<media:title type="html">System settings</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2010/10/e-mail_thumb.png" medium="image">
			<media:title type="html">E-mail</media:title>
		</media:content>
	</item>
		<item>
		<title>How to reduce the flicker in IE on postback ?</title>
		<link>http://quicklookfordotnet.wordpress.com/2010/03/30/how-to-reduce-the-flicker-in-ie-on-postback/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2010/03/30/how-to-reduce-the-flicker-in-ie-on-postback/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 09:40:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[flicker in IE]]></category>
		<category><![CDATA[How to reduce the flicker in IE on postback ?]]></category>
		<category><![CDATA[reduce the flicker in IE]]></category>

		<guid isPermaLink="false">http://quicklookfordotnet.wordpress.com/2010/03/30/how-to-reduce-the-flicker-in-ie-on-postback/</guid>
		<description><![CDATA[Technorati Tags: How to reduce the flicker in IE on postback ?,flicker in IE,reduce the flicker in IE Asp.net causes browsers / webpages to flash or flicker during a postback to the server. To reduce this flicker you should include below meta tag inside the header tag.&#160; &#60;meta http-equiv=&#34;Page-Exit&#34; content=&#34;Alpha(opacity=100)&#34; /&#62; Below is the Definition &#8230; <a href="http://quicklookfordotnet.wordpress.com/2010/03/30/how-to-reduce-the-flicker-in-ie-on-postback/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=85&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7734e9cf-7bc0-4d67-be53-56f750028c86" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/How+to+reduce+the+flicker+in+IE+on+postback+%3f" rel="tag">How to reduce the flicker in IE on postback ?</a>,<a href="http://technorati.com/tags/flicker+in+IE" rel="tag">flicker in IE</a>,<a href="http://technorati.com/tags/reduce+the+flicker+in+IE" rel="tag">reduce the flicker in IE</a></div>
<p>Asp.net causes browsers / webpages to flash or flicker during a postback to the server. To reduce this flicker you should include below meta tag inside the header tag.&#160; </p>
<p>&lt;meta http-equiv=&quot;Page-Exit&quot; content=&quot;Alpha(opacity=100)&quot; /&gt;</p>
<p>Below is the Definition and Usage of the Tag/Value</p>
<p><strong>http-equiv</strong></p>
<p>The http-equiv attribute provides an HTTP header for the information in the <a href="http://www.w3schools.com/att_meta_content.asp">content</a> attribute.The http-equiv attribute can be used to simulate an HTTP response header.The value of the http-equiv attribute depends on the value of the content attribute.If the name attribute is set, the http-equiv attribute should not be set.</p>
<p><b>Page-Exit</b> </p>
<p>defines what filter to apply when user leaves the page.</p>
<p><strong>Content</strong></p>
<p>The required content attribute specifies the content of the meta information.The value of the content attribute depends on the value of the name or http-equiv attribute.</p>
<br />Filed under: <a href='http://quicklookfordotnet.wordpress.com/category/net/'>.net</a> Tagged: <a href='http://quicklookfordotnet.wordpress.com/tag/flicker-in-ie/'>flicker in IE</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/how-to-reduce-the-flicker-in-ie-on-postback/'>How to reduce the flicker in IE on postback ?</a>, <a href='http://quicklookfordotnet.wordpress.com/tag/reduce-the-flicker-in-ie/'>reduce the flicker in IE</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=85&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2010/03/30/how-to-reduce-the-flicker-in-ie-on-postback/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>
	</item>
		<item>
		<title>Reporting Services Error</title>
		<link>http://quicklookfordotnet.wordpress.com/2009/11/03/reporting-services-error/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2009/11/03/reporting-services-error/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 03:41:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA["Reporting Services Catalog Temporary Database File Existence failed]]></category>
		<category><![CDATA[Reporting Services 2008]]></category>
		<category><![CDATA[Reporting Services Catalog]]></category>
		<category><![CDATA[Reporting Services Catalog Database File Existence]]></category>
		<category><![CDATA[Reporting Services Catalog Database File Existence failed]]></category>
		<category><![CDATA[Reporting Services Catalog error]]></category>
		<category><![CDATA[Reporting Services Catalog Temporary Database File Existence]]></category>
		<category><![CDATA[Rule "Reporting Services Catalog Database File Existence" failed]]></category>
		<category><![CDATA[Rule "Reporting Services Catalog Temporary Database File Existence" failed.]]></category>

		<guid isPermaLink="false">http://quicklookfordotnet.wordpress.com/2009/11/03/reporting-services-error/</guid>
		<description><![CDATA[Technorati Tags: Rule &#34;Reporting Services Catalog Database File Existence&#34; failed,Rule &#34;Reporting Services Catalog Temporary Database File Existence&#34; failed.,Reporting Services Catalog Database File Existence,Reporting Services Catalog Temporary Database File Existence,Reporting Services Catalog Database File Existence failed,&#34;Reporting Services Catalog Temporary Database File Existence failed,Reporting Services 2008,Reporting Services Catalog error,Reporting Services Catalog Error Message. SQL Server 2008 RC &#8230; <a href="http://quicklookfordotnet.wordpress.com/2009/11/03/reporting-services-error/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=84&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><b><u></u></b></p>
<div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:f660139f-4faf-4f72-9ca6-fb05d42e6e5b" style="display:inline;float:none;margin:0;padding:0;">Technorati Tags: <a href="http://technorati.com/tags/Rule+%22Reporting+Services+Catalog+Database+File+Existence%22+failed" rel="tag">Rule &quot;Reporting Services Catalog Database File Existence&quot; failed</a>,<a href="http://technorati.com/tags/Rule+%22Reporting+Services+Catalog+Temporary+Database+File+Existence%22+failed." rel="tag">Rule &quot;Reporting Services Catalog Temporary Database File Existence&quot; failed.</a>,<a href="http://technorati.com/tags/Reporting+Services+Catalog+Database+File+Existence" rel="tag">Reporting Services Catalog Database File Existence</a>,<a href="http://technorati.com/tags/Reporting+Services+Catalog+Temporary+Database+File+Existence" rel="tag">Reporting Services Catalog Temporary Database File Existence</a>,<a href="http://technorati.com/tags/Reporting+Services+Catalog+Database+File+Existence+failed" rel="tag">Reporting Services Catalog Database File Existence failed</a>,<a href="http://technorati.com/tags/%22Reporting+Services+Catalog+Temporary+Database+File+Existence+failed" rel="tag">&quot;Reporting Services Catalog Temporary Database File Existence failed</a>,<a href="http://technorati.com/tags/Reporting+Services+2008" rel="tag">Reporting Services 2008</a>,<a href="http://technorati.com/tags/Reporting+Services+Catalog+error" rel="tag">Reporting Services Catalog error</a>,<a href="http://technorati.com/tags/Reporting+Services+Catalog" rel="tag">Reporting Services Catalog</a></div>
<p><b><u>Error Message</u>.</b></p>
<p>SQL Server 2008 RC 0 Setup shows the following error messages after running a set of rules to determine if the installation process will be blocked:   </p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/11/troubleshooting02801.png"><img title="Troubleshooting028-01" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="361" alt="Troubleshooting028-01" src="http://quicklookfordotnet.files.wordpress.com/2009/11/troubleshooting02801_thumb.png?w=450&#038;h=361" width="450" border="0" /></a> </p>
<p><b><u>Cause</u>.</b>    <br />Setup program found the Reporting Services Catalog database file and Reporting Services Catalog temporary database file in the following <u><strong>path:</strong>      <br /></u><strong>C:\ProgramFiles\MicrosoftSQLServer\MSSQL10.MSSQLSERVER\MSSQL\DATA</strong></p>
<p><b><u>Solution</u>.</b>    <br />Remove the following files from the &quot;C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA&quot; directory:    <br /><img height="15" alt="bullet" hspace="13" src="http://www.sqlcoffee.com/_themes/radius/aradbul1.gif" width="15" />ReportServer.mdf    <br /><img height="15" alt="bullet" hspace="13" src="http://www.sqlcoffee.com/_themes/radius/aradbul1.gif" width="15" />ReportServer_log.LDF    <br /><img height="15" alt="bullet" hspace="13" src="http://www.sqlcoffee.com/_themes/radius/aradbul1.gif" width="15" />ReportServerTempDB.mdf    <br /><img height="15" alt="bullet" hspace="13" src="http://www.sqlcoffee.com/_themes/radius/aradbul1.gif" width="15" />ReportServerTempDB_log.LDF.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/11/troubleshooting02802.png"><img title="Troubleshooting028-02" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="403" alt="Troubleshooting028-02" src="http://quicklookfordotnet.files.wordpress.com/2009/11/troubleshooting02802_thumb.png?w=450&#038;h=403" width="450" border="0" /></a> </p>
<p>&#160;</p>
</p>
<p>After deleting the files, click on the &quot;Re-run&quot; button of the Installation Rules setup page, and click &quot;Next&quot; after passing all the installation rules.</p>
<br />Posted in SQL Tagged: "Reporting Services Catalog Temporary Database File Existence failed, Reporting Services 2008, Reporting Services Catalog, Reporting Services Catalog Database File Existence, Reporting Services Catalog Database File Existence failed, Reporting Services Catalog error, Reporting Services Catalog Temporary Database File Existence, Rule "Reporting Services Catalog Database File Existence" failed, Rule "Reporting Services Catalog Temporary Database File Existence" failed. <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=84&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2009/11/03/reporting-services-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/11/troubleshooting02801_thumb.png" medium="image">
			<media:title type="html">Troubleshooting028-01</media:title>
		</media:content>

		<media:content url="http://www.sqlcoffee.com/_themes/radius/aradbul1.gif" medium="image">
			<media:title type="html">bullet</media:title>
		</media:content>

		<media:content url="http://www.sqlcoffee.com/_themes/radius/aradbul1.gif" medium="image">
			<media:title type="html">bullet</media:title>
		</media:content>

		<media:content url="http://www.sqlcoffee.com/_themes/radius/aradbul1.gif" medium="image">
			<media:title type="html">bullet</media:title>
		</media:content>

		<media:content url="http://www.sqlcoffee.com/_themes/radius/aradbul1.gif" medium="image">
			<media:title type="html">bullet</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/11/troubleshooting02802_thumb.png" medium="image">
			<media:title type="html">Troubleshooting028-02</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Server 2008 Installation</title>
		<link>http://quicklookfordotnet.wordpress.com/2009/10/29/sql-server-2008-installation/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2009/10/29/sql-server-2008-installation/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 13:33:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SQL Server 2008 Installation]]></category>

		<guid isPermaLink="false">http://quicklookfordotnet.wordpress.com/2009/10/29/sql-server-2008-installation/</guid>
		<description><![CDATA[Technorati Tags: SQL Server 2008 Installation,SQL Server 2008,How to install SQL Server 2008,Reprting Service installation in SQL Server 2008,configuring Reproting service,Reporting service 2008,Sql server 2008,steps for installing Sql server 2008,Reporitng Service 2008 In this post i am going to explain the steps for installing the sql server 2008 which include Reporting service installation &#38; it’s  &#8230; <a href="http://quicklookfordotnet.wordpress.com/2009/10/29/sql-server-2008-installation/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=76&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2541b47e-fc8d-42f5-a088-f68b8ac5c9a3" class="wlWriterEditableSmartContent" style="display:inline;float:none;margin:0;padding:0;">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/SQL+Server+2008+Installation">SQL Server 2008 Installation</a>,<a rel="tag" href="http://technorati.com/tags/SQL+Server+2008">SQL Server 2008</a>,<a rel="tag" href="http://technorati.com/tags/How+to+install+SQL+Server+2008">How to install SQL Server 2008</a>,<a rel="tag" href="http://technorati.com/tags/Reprting+Service+installation+in+SQL+Server+2008">Reprting Service installation in SQL Server 2008</a>,<a rel="tag" href="http://technorati.com/tags/configuring+Reproting+service">configuring Reproting service</a>,<a rel="tag" href="http://technorati.com/tags/Reporting+service+2008">Reporting service 2008</a>,<a rel="tag" href="http://technorati.com/tags/Sql+server+2008">Sql server 2008</a>,<a rel="tag" href="http://technorati.com/tags/steps+for+installing+Sql+server+2008">steps for installing Sql server 2008</a>,<a rel="tag" href="http://technorati.com/tags/Reporitng+Service+2008">Reporitng Service 2008</a></div>
<p>In this post i am going to explain the steps for installing the sql server 2008 which include <strong>Reporting service installation</strong> &amp; it’s  <strong>configuration</strong> also.</p>
<p>Before you start  installation following requirement should be met.</p>
<p><strong><span style="text-decoration:underline;">Prerequisites :</span></strong></p>
<p><strong><span style="text-decoration:underline;">Windows 2003</span></strong></p>
<p>If you want to install Sql server 2008 on Server 2003 than your server  should have service pack 2 install.if it’s not then download service pack 2 from the following link, install it ,reboot your machine and then start installing sql server 2008.</p>
<ul>
<li><a title="http://www.microsoft.com/downloads/details.aspx?familyid=95AC1610-C232-4644-B828-C55EEC605D55&amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?familyid=95AC1610-C232-4644-B828-C55EEC605D55&amp;displaylang=en" target="_blank">Download Windows Server 2003 Service Pack 2</a></li>
</ul>
<p>now,if you all set for installing environment,you can proceed for the following steps</p>
<p><strong><span style="text-decoration:underline;">Installation Steps:-</span></strong></p>
<p><strong><span style="text-decoration:underline;">Step 1:</span></strong></p>
<p>Start installation of sql server 2008 by double clicking on  the &#8220;setup.exe&#8221;</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_01_files.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_01_Files" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_01_files_thumb.jpg?w=450&#038;h=129" border="0" alt="SQLServer2008Install_01_Files" width="450" height="129" /></a> </p>
<p><strong><span style="text-decoration:underline;">Step 2:</span></strong></p>
<p>If the prerequisites installation dialog box appears, click OK</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_02_prerequisitespopup.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_02_PrerequisitesPopUp" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_02_prerequisitespopup_thumb.jpg?w=450&#038;h=186" border="0" alt="SQLServer2008Install_02_PrerequisitesPopUp" width="450" height="186" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 3:</span></strong></p>
<p>If you machine don’t have .NET Framework 3.5 SP1 .It will give a dialog box ,accept the License Agreement and it will start installing it.after it complete installation <strong>Exit </strong>button will appear in the right  bottom corner of the dialog box  with setup completed message click on that.to Proceed  further.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_03_framework35sp1.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_03_Framework35SP1" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_03_framework35sp1_thumb.jpg?w=444&#038;h=325" border="0" alt="SQLServer2008Install_03_Framework35SP1" width="444" height="325" /></a></p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_04_framework35sp1install.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_04_Framework35SP1Install" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_04_framework35sp1install_thumb.jpg?w=450&#038;h=316" border="0" alt="SQLServer2008Install_04_Framework35SP1Install" width="450" height="316" /></a></p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_05_framework35sp1installsuccesfull.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_05_Framework35SP1InstallSuccesfull" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_05_framework35sp1installsuccesfull_thumb.jpg?w=450&#038;h=341" border="0" alt="SQLServer2008Install_05_Framework35SP1InstallSuccesfull" width="450" height="341" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 4:</span></strong></p>
<p>After  installing the NET Framework 3.5 SP1 it may ask you to install the Hot Fix for xp/windows server 2003.Accept the License Agreement to  Install it.after successfully installation it may give  prompted to you for restarting  your computer, restart it, and then restart SQL Server 2008 setup.exe.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_06_wininstaller45prompt.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_06_WinInstaller45Prompt" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_06_wininstaller45prompt_thumb.jpg?w=450&#038;h=332" border="0" alt="SQLServer2008Install_06_WinInstaller45Prompt" width="450" height="332" /></a></p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_07_wininstaller45license.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_07_WinInstaller45License" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_07_wininstaller45license_thumb.jpg?w=450&#038;h=365" border="0" alt="SQLServer2008Install_07_WinInstaller45License" width="450" height="365" /></a></p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_08_serviceinterruption.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_08_ServiceInterruption" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_08_serviceinterruption_thumb.jpg?w=450&#038;h=425" border="0" alt="SQLServer2008Install_08_ServiceInterruption" width="450" height="425" /></a></p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_09_wininstaller45finish.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_09_WinInstaller45Finish" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_09_wininstaller45finish_thumb.jpg?w=450&#038;h=402" border="0" alt="SQLServer2008Install_09_WinInstaller45Finish" width="450" height="402" /></a></p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_10_restartprompt.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_10_RestartPrompt" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_10_restartprompt_thumb.jpg?w=450&#038;h=167" border="0" alt="SQLServer2008Install_10_RestartPrompt" width="450" height="167" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 5:</span></strong></p>
<p>When the prerequisites are installed, the Installation Wizard will run the SQL Server Installation Center. To installation of SQL Server 2008, click New Installation or Add Features to an Existing Installation.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_11_newinstallation.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_11_NewInstallation" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_11_newinstallation_thumb.jpg?w=450&#038;h=360" border="0" alt="SQLServer2008Install_11_NewInstallation" width="450" height="360" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 6:</span></strong></p>
<p>It will  check  that you system is configure proper for installing the sql server 2008.if any Error occur during this test need to resolve that error and then only you able to Proceed  further.Click ok when you pass all the check.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_12_setupsupportrules.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_12_SetUpSupportRules" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_12_setupsupportrules_thumb.jpg?w=445&#038;h=278" border="0" alt="SQLServer2008Install_12_SetUpSupportRules" width="445" height="278" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 7:</span></strong></p>
<p>If you able to proceed  further then,in next dialog box will ask you to either install free version or the product key.go one of the way to install.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_13_productkeypage.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_13_ProductKeyPage" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_13_productkeypage_thumb.jpg?w=450&#038;h=331" border="0" alt="SQLServer2008Install_13_ProductKeyPage" width="450" height="331" /></a> </p>
<p><strong><span style="text-decoration:underline;">Step 8:</span></strong></p>
<p>Next step is to accept the License Agreement  and click ok.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_14_licensetermspage.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_14_LicenseTermsPage" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_14_licensetermspage_thumb.jpg?w=450&#038;h=313" border="0" alt="SQLServer2008Install_14_LicenseTermsPage" width="450" height="313" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 9:</span></strong></p>
<p>The Installation Wizard will install SQL Server prerequisites if they are not already on the computer. These include the following:</p>
<ul>
<li>.NET Framework 3.5 SP1</li>
<li>SQL Server Native Client</li>
<li>SQL Server Setup Support Files</li>
</ul>
<p>To install prerequisites, click Install.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_15_sqlserverprerequisites.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_15_SqlServerPrerequisites" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_15_sqlserverprerequisites_thumb.jpg?w=450&#038;h=389" border="0" alt="SQLServer2008Install_15_SqlServerPrerequisites" width="450" height="389" /></a></p>
<p><strong><span style="text-decoration:underline;">Step10:</span></strong> </p>
<p>Select  the Feature form the Feature  Selection you want to install.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_17_selectinginstancefeatures.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_17_SelectingInstanceFeatures" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_17_selectinginstancefeatures_thumb.jpg?w=450&#038;h=348" border="0" alt="SQLServer2008Install_17_SelectingInstanceFeatures" width="450" height="348" /></a></p>
<p>Here is the  some more information on the current choices:</p>
<ul>
<li><strong>Data Base Engine is obviously mandatory</strong></li>
<li><strong>Business Intelligence Development Studio aka BIDS</strong><br />
This is essential regarding Reporting Services integration as it is THE tool that will allow you to create reports and deploy them in SharePoint. For a SQL Server 2008 installation without Reporting Services you can avoid installing this feature.</li>
<li><strong>Management-Tools Complete<br />
</strong>This feature will install Microsoft SQL Server Management Studio<br />
If you don&#8217;t need Reporting Services, you can avoid checking complete feature, but the complete one install elements that runs with Reporting Services as noticed in description that appears in the right pane after you select the feature name.</li>
</ul>
<p>You can also specify a custom directory for shared components by using the field at the bottom of the Feature Selection page. To change the installation path for shared components, either update the path in the field at the bottom of the dialog box, or click Browse to move to an installation directory. The default installation path is C:\Program Files\Microsoft SQL Server\100\.</p>
<p><strong><span style="text-decoration:underline;">Step 11:</span></strong></p>
<p>On the Instance Configuration page, specify whether to install a default instance or a named instance.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_18_instanceconfiguration.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_18_InstanceConfiguration" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_18_instanceconfiguration_thumb.jpg?w=449&#038;h=272" border="0" alt="SQLServer2008Install_18_InstanceConfiguration" width="449" height="272" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 12:</span></strong></p>
<p>The Disk Space Requirements page calculates the required disk space for the features that you specify. Then it compares the required space to the available disk space.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_19_diskspacerequirements.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_19_DiskSpaceRequirements" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_19_diskspacerequirements_thumb.jpg?w=450&#038;h=356" border="0" alt="SQLServer2008Install_19_DiskSpaceRequirements" width="450" height="356" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 13:</span></strong></p>
<p>On the Server Configuration — Service Accounts page, specify login accounts for SQL Server services. give your system Administrator account and specify the password so it has all the access.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_20_accounts.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_20_Accounts" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_20_accounts_thumb.jpg?w=450&#038;h=320" border="0" alt="SQLServer2008Install_20_Accounts" width="450" height="320" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 14:</span></strong></p>
<p>Chose Mixed mode if you want to integrate you sql with share point to use SQL Authentication. you need to provide the password for the “sa” login if you have selected mixed  mode.then Click on the Add current User.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_22_authenticationmodeadmins.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_22_AuthenticationMode-Admins" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_22_authenticationmodeadmins_thumb.jpg?w=439&#038;h=297" border="0" alt="SQLServer2008Install_22_AuthenticationMode-Admins" width="439" height="297" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 15:</span></strong></p>
<p>if you planning to install the Reporting service.Reporting service configuration screen will com up.</p>
<p>select first option you you want to configure Reporting service automatically as installation process.</p>
<p>select second option if you have already install share point and want to configure Reporting service with sharepoint  automatically as installation process.</p>
<p>Select third option you want to configure reporting service manually or you have not install the share point yet.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_23_reportingservicesconfig.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_23_ReportingServicesConfig" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_23_reportingservicesconfig_thumb.jpg?w=450&#038;h=324" border="0" alt="SQLServer2008Install_23_ReportingServicesConfig" width="450" height="324" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 16:</span></strong></p>
<p>On the Error and Usage Reporting page, specify the information that you want to send to Microsoft that will help improve SQL Server. By default, options for error reporting and feature usage are enabled.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_24_errorandusreporting.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_24_ErrorandUsReporting" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_24_errorandusreporting_thumb.jpg?w=480&#038;h=321" border="0" alt="SQLServer2008Install_24_ErrorandUsReporting" width="480" height="321" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 17:</span></strong></p>
<p>now one more time System configuration check will run to check that all the option will you selected are able to install in you current configuration.</p>
<p>in case,it fail to pass any of the one check ,need to resolve it to proceed further.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_27_installationprogress.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_27_InstallationProgress" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_27_installationprogress_thumb.jpg?w=450&#038;h=332" border="0" alt="SQLServer2008Install_27_InstallationProgress" width="450" height="332" /></a></p>
<p><strong><span style="text-decoration:underline;">Step 18:</span></strong></p>
<p>The Ready to Install page shows a tree view of installation options that were specified during Setup. To continue, click on Install will start the installing the sql server 2008.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_26_readytoinstall.jpg"><img style="display:inline;border:0;" title="SQLServer2008Install_26_ReadyToInstall" src="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_26_readytoinstall_thumb.jpg?w=450&#038;h=336" border="0" alt="SQLServer2008Install_26_ReadyToInstall" width="450" height="336" /></a></p>
<p><strong> </strong></p>
<p><strong><span style="text-decoration:underline;">Next Post:</span></strong></p>
<p>Configuration of the Reporting service and integrating the reporting service with share point will going to come on my next post.</p>
<p>Enjoy you successful installation of SQl server 2008.</p>
<br />Posted in SQL Tagged: SQL Server 2008, SQL Server 2008 Installation <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=76&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2009/10/29/sql-server-2008-installation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_01_files_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_01_Files</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_02_prerequisitespopup_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_02_PrerequisitesPopUp</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_03_framework35sp1_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_03_Framework35SP1</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_04_framework35sp1install_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_04_Framework35SP1Install</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_05_framework35sp1installsuccesfull_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_05_Framework35SP1InstallSuccesfull</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_06_wininstaller45prompt_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_06_WinInstaller45Prompt</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_07_wininstaller45license_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_07_WinInstaller45License</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_08_serviceinterruption_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_08_ServiceInterruption</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_09_wininstaller45finish_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_09_WinInstaller45Finish</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_10_restartprompt_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_10_RestartPrompt</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_11_newinstallation_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_11_NewInstallation</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_12_setupsupportrules_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_12_SetUpSupportRules</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_13_productkeypage_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_13_ProductKeyPage</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_14_licensetermspage_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_14_LicenseTermsPage</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_15_sqlserverprerequisites_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_15_SqlServerPrerequisites</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_17_selectinginstancefeatures_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_17_SelectingInstanceFeatures</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_18_instanceconfiguration_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_18_InstanceConfiguration</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_19_diskspacerequirements_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_19_DiskSpaceRequirements</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_20_accounts_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_20_Accounts</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_22_authenticationmodeadmins_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_22_AuthenticationMode-Admins</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_23_reportingservicesconfig_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_23_ReportingServicesConfig</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_24_errorandusreporting_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_24_ErrorandUsReporting</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_27_installationprogress_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_27_InstallationProgress</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/sqlserver2008install_26_readytoinstall_thumb.jpg" medium="image">
			<media:title type="html">SQLServer2008Install_26_ReadyToInstall</media:title>
		</media:content>
	</item>
		<item>
		<title>Access is denied. (Exception from HRESULT: 0&#215;80070005 (E_ACCESSDENIED))</title>
		<link>http://quicklookfordotnet.wordpress.com/2009/10/26/access-is-denied-exception-from-hresult-0x80070005-e_accessdenied/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2009/10/26/access-is-denied-exception-from-hresult-0x80070005-e_accessdenied/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 13:18:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[Reporting Service]]></category>
		<category><![CDATA[Access is denied]]></category>
		<category><![CDATA[Access is denied in Reporting service 2008.SSRS2008]]></category>
		<category><![CDATA[Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))]]></category>

		<guid isPermaLink="false">http://quicklookfordotnet.wordpress.com/2009/10/26/access-is-denied-exception-from-hresult-0x80070005-e_accessdenied/</guid>
		<description><![CDATA[Technorati Tags: Access is denied. (Exception from HRESULT: 0&#215;80070005 (E_ACCESSDENIED)),Access is denied,Access is denied in Reporting service 2008.SSRS2008,Sql Server Reporting service 2008. Reporting service 2008. NOTE :-&#160; This post is only&#160; for the Reporting service 2008. Solution:- To resolve this issue go through following Steps:- (1) Go to the Internet Explorer. (2)Right Click on Internet &#8230; <a href="http://quicklookfordotnet.wordpress.com/2009/10/26/access-is-denied-exception-from-hresult-0x80070005-e_accessdenied/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=25&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>
<div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:038dbdd0-a63a-4381-9977-a96cbf6f8044" style="display:inline;float:none;margin:0;padding:0;">Technorati Tags: <a href="http://technorati.com/tags/Access+is+denied.+(Exception+from+HRESULT%3a+0x80070005+(E_ACCESSDENIED))" rel="tag">Access is denied. (Exception from HRESULT: 0&#215;80070005 (E_ACCESSDENIED))</a>,<a href="http://technorati.com/tags/Access+is+denied" rel="tag">Access is denied</a>,<a href="http://technorati.com/tags/Access+is+denied+in+Reporting+service+2008.SSRS2008" rel="tag">Access is denied in Reporting service 2008.SSRS2008</a>,<a href="http://technorati.com/tags/Sql+Server+Reporting+service+2008.+Reporting+service+2008." rel="tag">Sql Server Reporting service 2008. Reporting service 2008.</a></div>
</p>
<p><strong><u>NOTE</u> :-&#160; </strong>This post is only&#160; for the Reporting service 2008.</p>
<p><a href="http://quicklookfordotnet.files.wordpress.com/2009/10/accessdenidessrs2008.png"><img title="access denide ssrs2008" style="display:inline;border-width:0;" height="442" alt="access denide ssrs2008" src="http://quicklookfordotnet.files.wordpress.com/2009/10/accessdenidessrs2008_thumb.png?w=450&#038;h=442" width="450" border="0" /></a> </p>
<p><strong><u>Solution:-</u></strong></p>
<p><strong>To resolve this issue go through following Steps:-</strong></p>
<p><strong>(1) Go to the Internet Explorer.</strong></p>
<p><strong>(2)Right Click on Internet Explorer.</strong></p>
<p><strong>(3)Click on the Run as.. optional in the menu. Run As Popup will open.</strong></p>
<p><strong>(4)In the popup select The following user option. And give Administrator as Username And give password in password text.and click ok.</strong></p>
<p><strong>Now,Go to your Reporting Server Configuration Manager ,and click on the webserviceUrl link or Report server Manager Link ,you will able to view the page.</strong></p>
<p><strong>Enjoy your reporting service!!!!!</strong></p>
<br />Posted in Reporting Service Tagged: Access is denied, Access is denied in Reporting service 2008.SSRS2008, Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=25&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2009/10/26/access-is-denied-exception-from-hresult-0x80070005-e_accessdenied/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>

		<media:content url="http://quicklookfordotnet.files.wordpress.com/2009/10/accessdenidessrs2008_thumb.png" medium="image">
			<media:title type="html">access denide ssrs2008</media:title>
		</media:content>
	</item>
		<item>
		<title>Textbox readonly in asp.net</title>
		<link>http://quicklookfordotnet.wordpress.com/2009/10/16/textbox-readonly-in-asp-net/</link>
		<comments>http://quicklookfordotnet.wordpress.com/2009/10/16/textbox-readonly-in-asp-net/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 11:06:00 +0000</pubDate>
		<dc:creator>Chirag Rajput</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Textbox readonly in asp.net]]></category>

		<guid isPermaLink="false">http://quicklookfordotnet.wordpress.com/2009/10/12/textbox-readonly-in-asp-net-v2-0/</guid>
		<description><![CDATA[Technorati Tags: Textbox readonly in asp.net,Textbox readonly,Making Textbox readonly,change value of readonly textbox,readonly textbox,readonly,textbox,asp.net If TextBox’s ReadOnly property is “true”, postback data won’t be loaded e.g it essentially means TextBox being readonly from server-side standpoint (client-side changes will be ignored). If you want TB to be readonly in the “old manner” use TextBox1.Attributes.Add(”readonly”,”readonly”) as that &#8230; <a href="http://quicklookfordotnet.wordpress.com/2009/10/16/textbox-readonly-in-asp-net/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=21&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:8f99452e-6b2c-4d77-968e-8f57d5324068" style="display:inline;float:none;margin:0;padding:0;">Technorati Tags: <a href="http://technorati.com/tags/Textbox+readonly+in+asp.net" rel="tag">Textbox readonly in asp.net</a>,<a href="http://technorati.com/tags/Textbox+readonly" rel="tag">Textbox readonly</a>,<a href="http://technorati.com/tags/Making+Textbox+readonly" rel="tag">Making Textbox readonly</a>,<a href="http://technorati.com/tags/change+value+of+readonly+textbox" rel="tag">change value of readonly textbox</a>,<a href="http://technorati.com/tags/readonly+textbox" rel="tag">readonly textbox</a>,<a href="http://technorati.com/tags/readonly" rel="tag">readonly</a>,<a href="http://technorati.com/tags/textbox" rel="tag">textbox</a>,<a href="http://technorati.com/tags/asp.net" rel="tag">asp.net</a></div>
<p>If TextBox’s ReadOnly property is “true”, postback data won’t be loaded e.g it essentially means TextBox being readonly from server-side standpoint (client-side changes will be ignored).</p>
<p>If you want TB to be readonly in the “old manner” use </p>
<p>TextBox1.Attributes.Add(”readonly”,”readonly”) </p>
<p>as that won’t affect server-side functionality.</p>
<br />Posted in .net Tagged: Textbox readonly in asp.net <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/quicklookfordotnet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/quicklookfordotnet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/quicklookfordotnet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/quicklookfordotnet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/quicklookfordotnet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/quicklookfordotnet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/quicklookfordotnet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/quicklookfordotnet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/quicklookfordotnet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/quicklookfordotnet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/quicklookfordotnet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/quicklookfordotnet.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/quicklookfordotnet.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/quicklookfordotnet.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=quicklookfordotnet.wordpress.com&amp;blog=9160496&amp;post=21&amp;subd=quicklookfordotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://quicklookfordotnet.wordpress.com/2009/10/16/textbox-readonly-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/674f10397b68201520af969f2ec4692d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chirag</media:title>
		</media:content>
	</item>
	</channel>
</rss>
