<?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>Tecomni</title>
	<atom:link href="http://tecomni.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tecomni.wordpress.com</link>
	<description>everything everywhere</description>
	<lastBuildDate>Tue, 29 Dec 2009 07:42:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tecomni.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Tecomni</title>
		<link>http://tecomni.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tecomni.wordpress.com/osd.xml" title="Tecomni" />
	<atom:link rel='hub' href='http://tecomni.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Step By Step Web Part Deployment Guide</title>
		<link>http://tecomni.wordpress.com/2009/12/29/step-by-step-web-part-deployment-guide/</link>
		<comments>http://tecomni.wordpress.com/2009/12/29/step-by-step-web-part-deployment-guide/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 07:42:31 +0000</pubDate>
		<dc:creator>omnipundit</dc:creator>
				<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[webpart]]></category>

		<guid isPermaLink="false">http://tecomni.wordpress.com/?p=65</guid>
		<description><![CDATA[Following deployment of sharepoint webpart applied to WSS 3.0/MOSS 2007 using MS Visual Studio 2008 Web Part Dployment Steps: Step 1: File-New-Project-C#-Class Library Project Step 2: Add Reference right click on project and click on “addreference”. Add “System.web” from “.Net” tab. Add another reference named “Microsoft.Sharepoint” by browsing from “C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5” directory (copy “Microsoft.sharepoint.dll” [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tecomni.wordpress.com&amp;blog=10672798&amp;post=65&amp;subd=tecomni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Following deployment of sharepoint webpart applied to<br />
WSS 3.0/MOSS 2007 using MS Visual Studio 2008</p>
<p><strong><span style="text-decoration:underline;">Web Part Dployment Steps:</span></strong></p>
<p><strong>Step 1: </strong>File-New-Project-C#-Class Library Project</p>
<p><strong>Step 2: Add Reference</strong><br />
right click on project and click on “<strong>addreference</strong>”.<br />
Add “<strong>System.web</strong>” from “.Net” tab.</p>
<p>Add another reference named “<strong>Microsoft.Sharepoint</strong>” by browsing from “<strong>C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5</strong>” directory</p>
<p>(copy “<strong>Microsoft.sharepoint.dll</strong>” file into “<strong>C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5</strong>” directory to use it.)</p>
<p><strong>Step 3: Class file coding:</strong></p>
<p><em><span style="text-decoration:underline;">add following reference into the class file:</span></em></p>
<p>using System.Web;<br />
using System.Web.UI;<br />
using System.Web.UI.WebControls;<br />
using Microsoft.SharePoint.WebPartPages;</p>
<p><em><span style="text-decoration:underline;">Inherit class from “Webpart” class:</span></em></p>
<p>public class Class1 : WebPart</p>
<p><em><span style="text-decoration:underline;">Complete class fie code is as follows:</span></em></p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;<br />
using System.Web;<br />
using System.Web.UI;<br />
using System.Web.UI.WebControls;<br />
using Microsoft.SharePoint.WebPartPages;</p>
<p>namespace wp2<br />
{<br />
public class Class1 : WebPart<br />
{<br />
protected override void RenderContents(HtmlTextWriter writer)<br />
{<br />
writer.Write(&#8220;Hi &#8221; + this.Context.User.Identity.Name);<br />
}<br />
}<br />
}</p>
<p><strong>Step 4: To set the version number and allow partially trusted callers</strong></p>
<p>1.    In <strong>Solution Explorer</strong>, double-click the <strong>AssemblyInfo</strong> file<br />
2.    Edit the line:</p>
<p>C#<br />
[assembly: AssemblyVersion(“1.0.*”)]</p>
<p>Visual Basic</p>
<p>so that it reads:</p>
<p>C#<br />
[assembly: AssemblyVersion(“1.0.0.0”)]</p>
<p>Visual Basic</p>
<p>3.    Add the following line to the top of the file:</p>
<p>C#<br />
using System.Security;</p>
<p>Visual Basic<br />
Imports System.Security;</p>
<p>4.    Add the following line to the bottom of the file:</p>
<p>C#<br />
[assembly: AllowPartiallyTrustedCallers]</p>
<p>Visual Basic</p>
<p>Project file Property settings:</p>
<p>Now right click on project file and click on “properties”.<br />
Now go into the “build” tab and set “output path” as the server&#8217;s sharepoint bin directory like “<a href="/////dbvss/c$/Inetpub/wwwroot/wss/VirtualDirectories/dbvss80/bin">\\[sharepoint path with port]\Inetpub\wwwroot\wss\VirtualDirectories\dbvss80\bin\</a>”<br />
(this will create dll of this project into the output directory)</p>
<p>Web Config Settings:</p>
<p>add the following code into SharePoint web config file:<br />
(Webconfig is into the “<a href="/////dbvss/c$/Inetpub/wwwroot/wss/VirtualDirectories/dbvss80">\\</a><a href="/////dbvss/c$/Inetpub/wwwroot/wss/VirtualDirectories/dbvss80/bin">[sharepoint path with port]</a><a href="/////dbvss/c$/Inetpub/wwwroot/wss/VirtualDirectories/dbvss80">\Inetpub\wwwroot\wss\VirtualDirectories\dbvss80</a>” directory)<br />
add “” between “” section.</p>
<p>Use of Web Part into SharePoint Site :</p>
<p>Click on “Site Action”-&gt;”Site Settings”-&gt; go to “Galleries” section and click on “Web Parts”</p>
<p>Now you can see the web part list on page. To add new web part click on “New” link on top.</p>
<p>Now you can see the all “safe web parts” in list selected related webpart from list and click button “Populate Gallery” from top.</p>
<p>Now you are ready to use Web part&#8230;</p>
<p>just edit page and click on “Add webpart section” and select related web part from list. (most of new web parts are under the “miscellaneous” section.)</p>
<p>Enjoy Web part development.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tecomni.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tecomni.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tecomni.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tecomni.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tecomni.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tecomni.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tecomni.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tecomni.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tecomni.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tecomni.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tecomni.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tecomni.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tecomni.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tecomni.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tecomni.wordpress.com&amp;blog=10672798&amp;post=65&amp;subd=tecomni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tecomni.wordpress.com/2009/12/29/step-by-step-web-part-deployment-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a5826b797411f72d4c4c697e881a4181?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punditomni</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Expression Web 2 Essentials</title>
		<link>http://tecomni.wordpress.com/2009/12/28/microsoft-expression-web-2-essentials/</link>
		<comments>http://tecomni.wordpress.com/2009/12/28/microsoft-expression-web-2-essentials/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 09:49:46 +0000</pubDate>
		<dc:creator>omnipundit</dc:creator>
				<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://tecomni.wordpress.com/?p=63</guid>
		<description><![CDATA[Title:      Microsoft Expression Web 2 Essentials Category:     Web Design &#38; Publishing Presenter:     Janine Warner Known for making technology fun and accessible, Janine Warner is a recognized web design expert, instructor and published author. Since 1995, she has written more than a dozen books about technology and the Internet, including her latest Do-It-Yourself [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tecomni.wordpress.com&amp;blog=10672798&amp;post=63&amp;subd=tecomni&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Title:      Microsoft Expression Web 2 Essentials</p>
<p>Category:     Web Design &amp; Publishing</p>
<p>Presenter:     Janine Warner</p>
<p>Known for making technology fun and accessible, Janine Warner is a recognized web design expert, instructor and published author. Since 1995, she has written more than a dozen books about technology and the Internet, including her latest Do-It-Yourself Web Sites For Dummies. Janine has been a featured guest on a variety of radio and television programs, and her articles can be found in numerous industry publications. She also speaks regularly at conferences and events across the globe.</p>
<p>Platform:     Windows</p>
<p>Format:     DVD-ROM &amp; Online</p>
<p>Running Time:     6 Hrs, 1 DVD</p>
<p>Level:     Beginner to Intermediate</p>
<p>Project Files:     Included</p>
<p>Solutions:     Multi-User   Education   Government   International   More</p>
<p>Description:     Whether you are creating your first web site or looking for tips on the best ways to create designs with Cascading Style Sheets (CSS), Total Training for Expression Web 2: Essentials will help you make the most of Microsofts hot new Web design program. This series gives you an insiders view to the latest features of the software program plus shares many time-saving techniques for working successfully with Expression Web 2.</p>
<p><strong>Highlights</strong></p>
<p>* Discover how to create a new web site or import an existing one using Expression Web 2.<br />
* Get an introduction to Cascading Styles Sheets and how to create class, tag, and ID styles.<br />
* Learn how to use styles to format text and images as well as how to create page layouts with div tags and CSS.<br />
* Find out how to save time creating pages and make global updates using Dynamic Web Templates.<br />
* Learn how to test and publish your site on the World Wide Web.</p>
<p>Chapter 1: GETTING STARTED WITH EXPRESSION WEB 2   (42 min)<br />
1. Introducing Expression Web 2<br />
2. New Feature: Inserting Multimedia<br />
3. New Feature: Importing PhotoshopÂ® Files<br />
4. Advanced New Features<br />
5. Creating a Website<br />
6. Creating a Web Page<br />
7. Adding Images to Web Pages<br />
8. Adding &amp; Formatting Text<br />
9. Setting Hyperlinks<br />
10. Setting Page Properties<br />
11. Limitations of General Web Design</p>
<p>Chapter 2: THE MANY WAYS TO DESIGN A WEBSITE (31 min)<br />
1. Designing with Layers<br />
2. Designing with CSS<br />
3. Working with Dynamic Web Templates<br />
4. Designing with Tables<br />
5. Using Frames<br />
6. Dynamic Database-Driven Sites</p>
<p>Chapter 3: CUSTOMIZING THE INTERFACE (25 min)<br />
1. Working with Task Panes<br />
2. Setting Program Preferences<br />
3. Page Editor Options<br />
4. Toolbars, Menus &amp; Views<br />
5. Visual Aids &amp; Other Status Bar Options</p>
<p>Chapter 4: CREATING A SITE WITH CSS (80 min)<br />
1. Viewing a Page without CSS<br />
2. Using Preview in Browser<br />
3. Creating a New Site &amp; Adding Div Tags<br />
4. Adding Images &amp; Text to Div Tags<br />
5. Creating &amp; Copying a Class Style<br />
6. Creating &amp; Modifying a Tag Style<br />
7. Creating an ID Style for the Container &amp; Banner Divs<br />
8. Creating an ID Style for the Nav Bar &amp; Main Content<br />
9. Creating an ID Style for the Footer &amp; Copyright Info<br />
10. Creating Styles for Lists<br />
11. Setting Page Properties<br />
12. Modifying Link &amp; Copyright Styles</p>
<p>Chapter 5: CREATING A MULTI-COLUMN LAYOUT WITH CSS (50 min)<br />
1. Working with Internal &amp; External Style Sheets<br />
2. Copying Existing Styles<br />
3. Setting Email &amp; Other Links<br />
4. Creating a Rollover Eect for Links<br />
5. Creating a Multi-Column Layout with CSS<br />
6. Aligning Divs Side-by-Side<br />
7. Previewing &amp; Testing CSS<br />
8. Editing a CSS Layout in Expression Web<br />
9. Working with a Flexible CSS Layout<br />
10. Adding Borders with CSS</p>
<p>Chapter 6: WORKING WITH DYNAMIC WEB TEMPLATES (27 min)<br />
1. Saving a Page as a Template<br />
2. Creating a New Page from a Template<br />
3. Making Global Changes with a Template<br />
4. Detaching Templates &amp; Templates vs. CSS</p>
<p>Chapter 7: USING HTML TABLES (32 min)<br />
1. Problems with Using Tables in a Page<br />
2. Removing Old Code from Tables<br />
3. Using CSS with Tables<br />
4. Using Tables for Tabular Data<br />
5. Making Tables More Accessible</p>
<p>Chapter 8: CREATING FRAMES &amp; IFRAMES (24 min)<br />
1. Creating a Frameset<br />
2. Creating Pages within Framesets<br />
3. Targeting Links<br />
4. Editing a Frameset<br />
5. Creating an iFrame Design</p>
<p>Chapter 9: TESTING &amp; PUBLISHING YOUR SITE (28 min)<br />
1. Testing Your Site<br />
2. Changing Site Report Settings &amp; Tracking Hyperlinks<br />
3. Testing for Accessibility &amp; Compatibility<br />
4. Organizing Files &amp; Folders<br />
5. Publishing Your Site to a Server<br />
6. Download, Synchronize, Publish &amp; Optimize HTML</p>
<p>Chapter 10: TIPS &amp; TRICKS (26 min)<br />
1. Creating Rollover Images with Behaviors<br />
2. Swapping Multiple Images with Behaviors<br />
3. Editing Images outside of Expression Web<br />
4. Targeting &amp; Modifying Links<br />
5. Final Comments &amp; Credits</p>
<p><strong>Torrent Links (isohunt, sumotorrent)</strong></p>
<p>http://isohunt.com/torrent_details/115386169/total+training?tab=summary</p>
<p>http://www.sumotorrent.com/en/details/1726964/Total%20Training%20for%20Microsoft%20Expression%20Web%202%20Essentials.html</p>
<p><strong>Rapidshare Links</strong></p>
<p>http://rapidshare.com/files/323510089/Microsoft_Expression_Web_2_Essentials_Video_Training.part1.rar</p>
<p>http://rapidshare.com/files/323489143/Microsoft_Expression_Web_2_Essentials_Video_Training.part2.rar</p>
<p>http://rapidshare.com/files/323509609/Microsoft_Expression_Web_2_Essentials_Video_Training.part3.rar</p>
<p>http://rapidshare.com/files/323505812/Microsoft_Expression_Web_2_Essentials_Video_Training.part4.rar</p>
<p>http://rapidshare.com/files/323490135/Microsoft_Expression_Web_2_Essentials_Video_Training.part5.rar</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tecomni.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tecomni.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tecomni.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tecomni.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tecomni.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tecomni.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tecomni.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tecomni.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tecomni.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tecomni.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tecomni.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tecomni.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tecomni.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tecomni.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tecomni.wordpress.com&amp;blog=10672798&amp;post=63&amp;subd=tecomni&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tecomni.wordpress.com/2009/12/28/microsoft-expression-web-2-essentials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a5826b797411f72d4c4c697e881a4181?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">punditomni</media:title>
		</media:content>
	</item>
	</channel>
</rss>
