<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5091418969779416316</id><updated>2011-07-30T08:53:53.050-07:00</updated><category term='Published Links'/><category term='JQuery Basic Knowledge'/><category term='Overview'/><category term='Change password webpart'/><category term='MOSS 2007'/><category term='Interview Questions'/><category term='SQL Interview Questions'/><category term='Welcome kit'/><category term='Oracle Helps'/><category term='New Site in MOSS 2007'/><title type='text'>Share your Knowledge</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-6218127213833071194</id><published>2010-06-22T23:49:00.000-07:00</published><updated>2010-06-24T23:07:23.120-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Interview Questions'/><title type='text'>SQL Interview Questions</title><content type='html'>&lt;span style="font-family: Verdana, sans-serif; font-size: xx-small;"&gt;1. &lt;strong&gt;SQL Injection:&lt;/strong&gt; SQL injection is an attack in which malicious code is inserted into strings that are later passed to an instance of SQL Server for parsing and execution.&lt;br /&gt;The following script shows a simple SQL injection. The script builds an SQL query by concatenating hard-coded strings together with a string entered by the user:&lt;br /&gt;var Shipcity;&lt;br /&gt;ShipCity = Request.form ("ShipCity");&lt;br /&gt;var sql = "select * from OrdersTable where ShipCity = '" + ShipCity + "'";&lt;br /&gt;The user is prompted to enter the name of a city. If she enters Redmond, the query assembled by the script looks similar to the following: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Verdana, sans-serif; font-size: xx-small;"&gt;SELECT * FROM OrdersTable WHERE ShipCity = 'Redmond'&lt;br /&gt;However, assume that the user enters the following:&lt;br /&gt;Redmond'; drop table OrdersTable--&lt;br /&gt;In this case, the following query is assembled by the script:&lt;br /&gt;SELECT * FROM OrdersTable WHERE ShipCity = 'Redmond';drop table OrdersTable--'&lt;br /&gt;The semicolon (;) denotes the end of one query and the start of another. The double hyphen (--) indicates that the rest of the current line is a comment and should be ignored. If the modified code is syntactically correct, it will be executed by the server. When SQL Server processes this statement, SQL Server will first select all records in OrdersTable where ShipCity is Redmond. Then, SQL Server will drop OrdersTable.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: Verdana, sans-serif; font-size: xx-small;"&gt;2&lt;strong&gt;.How we can avoid SQL Injection&lt;/strong&gt;:Always validate user input by testing type, length, format, and range. When you are implementing precautions against malicious input, consider the architecture and deployment scenarios of your application. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span style="font-size: xx-small;"&gt;&lt;strong&gt;Example:&lt;/strong&gt; &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Verdana, sans-serif; font-size: xx-small;"&gt;SqlDataAdapter myCommand = new SqlDataAdapter("AuthorLogin", conn);&lt;br /&gt;myCommand.SelectCommand.CommandType = CommandType.StoredProcedure;&lt;br /&gt;SqlParameter parm = myCommand.SelectCommand.Parameters.Add("@au_id", SqlDbType.VarChar, 11);&lt;br /&gt;parm.Value = Login.Text;&lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span style="font-size: xx-small;"&gt;In this example, the @au_id parameter is treated as a literal value instead of as executable code. This value is checked for type and length. If the value of @au_id does not comply with the specified type and length constraints, an exception will be thrown.&lt;br /&gt;Stored procedures may be susceptible to SQL injection if they use unfiltered input.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span style="font-size: xx-small;"&gt;&lt;br /&gt;&lt;strong&gt;3.What's the difference between a primary key and a unique key?&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Verdana, sans-serif; font-size: xx-small;"&gt;Both primary key and unique enforce uniqueness of the column on which &lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif; font-size: xx-small;"&gt;they are defined. But by default primary key creates a clustered index &lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif; font-size: xx-small;"&gt;on the column, where are unique creates a nonclustered index by &lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif; font-size: xx-small;"&gt;default. Another major difference is that, primary key doesn't allow &lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif; font-size: xx-small;"&gt;NULLs, but unique key allows one NULL only.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: Verdana; font-size: xx-small;"&gt;&lt;strong&gt;4. What's the difference between DELETE TABLE and TRUNCATE TABLE commands?&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;DELETE TABLE is a logged operation, so the deletion of each row gets&lt;br /&gt;logged in the transaction log, which makes it slow. TRUNCATE TABLE&lt;br /&gt;also deletes all the rows in a table, but it won't log the deletion of each row, instead it logs the deallocation of the data pages of the table, which makes it faster. Of course, TRUNCATE TABLE can be rolled back.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-6218127213833071194?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/6218127213833071194/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=6218127213833071194&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/6218127213833071194'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/6218127213833071194'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2010/06/sql-interview-questions.html' title='SQL Interview Questions'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-3631576558888743353</id><published>2010-06-14T23:22:00.000-07:00</published><updated>2010-06-15T01:40:43.931-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Interview Questions'/><title type='text'>Sharepoint Interview Questions</title><content type='html'>&lt;div align="center"&gt;&lt;strong&gt;&lt;u&gt;1&lt;/u&gt;. &lt;/strong&gt;Content Database: &lt;span style="font-size:78%;"&gt;When the site collection or sites are created Window Sharepoint Services does not create any files or folders on the file system, everything is created in the content database. Each site collection is stored in a SQL Server database called the content database. This content database contains all the files, lists, and data for all sites in the site collection.&lt;/span&gt; &lt;/div&gt;&lt;div align="left"&gt;2. Virtualized File System: &lt;span style="font-size:78%;"&gt;SharePoint sites consist of numerous Web pages, just like any ASP.NET 2.0 application. When a site is created, these pages are created as instances in the content database. The instances refer to the actual file on the file system. This is known as a virtualized file system.&lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;span style="font-size:78%;"&gt;3.&lt;strong&gt;Why did Microsoft decide to use a virtualized file system rather than the traditional ASP.NET 2.0 Web site approach that keeps everything on the server's hard disk?&lt;/strong&gt; &lt;/span&gt;&lt;/div&gt;&lt;div align="left"&gt;&lt;/div&gt;&lt;div align="left"&gt;There are a few reasons for this approach. &lt;/div&gt;&lt;ul&gt;&lt;li&gt;&lt;div align="left"&gt;&lt;span style="font-size:78%;"&gt;Windows SharePoint Services is a site-provisioning engine, which makes it very easy for those with appropriate permissions to create new sites. In addition, the architecture is set up to support hundreds, thousands, tens of thousands, even hundreds of thousands of sites. If each site that was created resulted in a new Web root created on the file system, an organization of any size would quickly accumulate a large number of unmanageable Web roots on the server.&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div align="left"&gt;&lt;span style="font-size:78%;"&gt;consider a load-balanced environment. In a load-balanced environment, each SharePoint front-end Web server is essentially a mirror of other front-end Web servers. This means if an organization has hundreds of sites, they also have hundreds of Web roots, not to mention all the supporting files and assemblies for the site, on each server. This type of implementation would be very vulnerable to becoming out of sync with other servers or experiencing file corruption.&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;4.&lt;strong&gt; How many types of pages are in Sharepoint?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;There are two types of pages are site pages (also known as content pages) and application pages. Site pages are the ones stored as instances in the site collection's content database. These pages fall into one of two categories: customized files or uncustomized files.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;strong&gt;5.Uncustomized Files:&lt;/strong&gt; When you create a new SharePoint site in a site collection, anywhere in a site collection, Windows SharePoint Services provisions instances of files into the content database that resides on the file system. The files on the file system are called templates. On their own they are not very useful because they cannot be accessed by using a browser. This is because they are not mapped to any specific URL. The instance of the file in the content database merely adds it to the site. When ASP.NET receives a request for the file, it first finds the file in the content database. This entry in the content database tells ASP.NET that the file is actually based on a file on the file system and therefore, ASP.NET retrieves the source of the file on the file system when it constructs the page.&lt;br /&gt;This is how most files start in a SharePoint site. They are called uncustomized files. In the earlier version of SharePoint products and technologies (Windows SharePoint Services 2.0 and SharePoint Portal Server 2003) these files were called ghosted files, a term which has been deprecated. An uncustomized file is one in which the source of the file lives on the file system and not in the content database. The only thing that lives in the content database is the uncustomized instance that registers the file in the site.&lt;br /&gt;One thing to note is that there can be multiple instances of a file in a site collection's content database, or content databases, all referencing the same file. This is how the out-of-the-box master page, default.master, is implemented. Every SharePoint site starts with an uncustomized instance of the default.master page. If an environment contained 100 SharePoint sites created with the Blank Site template, and no customizations had been made, there will be 100 uncustomized instances of the default.master page in the various content databases, yet there would be only a single default.master page on the file system. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Verdana;"&gt;&lt;span style="font-size:78%;"&gt;&lt;strong&gt;6.Customized:&lt;/strong&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:78%;"&gt;A customized file is one in which the source of the file lives exclusively in the site collection's content database. In earlier versions (Windows SharePoint Services 2.0 and SharePoint Portal Server 2003) these files were called unghosted files, a term which has been deprecated. How can a file become customized? If you modify the file in any way through the SharePoint API, the source of the new page is saved in the content database. This includes SharePoint Designer 2007, which uses the SharePoint API via RPC and Web service calls to change files in sites. When the file is requested, ASP.NET first finds the file in the content database. The entry in the database tells ASP.NET whether the file is customized or uncustomized. If it is customized, it contains the source of the file, which is used by ASP.NET in the page contraction phase.&lt;br /&gt;A file can start as an uncustomized instance and become customized. For example, after a site has been created, someone can open the site in SharePoint Designer 2007 and make a few changes to the default.master page for the site. When the file is saved, it has changed from being uncustomized to being customized. This enables Windows SharePoint Services to store only one instance of a file template on the file system regardless of how many sites implement it, while at the same time providing for site-by-site customizations of the file. Even if the file is customized, you can delete the customizations and put the file back into an uncustomized state by either right-clicking it in SharePoint Designer and selecting "&lt;em&gt;Reset to Site Definition"&lt;/em&gt;&lt;/span&gt; .&lt;/p&gt;&lt;p&gt;7.Site Pages:&lt;span style="font-size:78%;"&gt;Site pages are the ASP.NET 2.0 pages.These are the pages that support customization in the sense that they can be themed and they can host Web Parts.site owners and designers can customize these Site pages by using tools such as SharePoint Designer 2007. Site pages are virtualized in the site collection's content database. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:78%;"&gt;&lt;strong&gt;8. Application Pages:&lt;/strong&gt;application pages are much more like traditional ASP.NET 2.0 pages. These pages reside in a special virtual directory (&lt;a href="http://www.localhost.com/_layouts/"&gt;http://www.localhost.com/_layouts/&lt;/a&gt;*.*) that all sites have access to. This virtual directory points to the [..]\12\TEMPLATE\LAYOUTS folder on the file system. All Windows SharePoint Services sites on a front-end Web server use the same pages. These pages are not provisioned as instances in the site collection's content database. Instead, they act just like traditional ASP.NET 2.0 pages. Each is coded to analyze the current context of the HTTP request such as which site collection, site, and user to determine what it should and should not do. These pages do not appear in SharePoint Designer 2007 when you browse a site because they exist only on the file system. Therefore you cannot customize them. &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-3631576558888743353?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/3631576558888743353/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=3631576558888743353&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/3631576558888743353'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/3631576558888743353'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2010/06/sharepoint-interview-questions.html' title='Sharepoint Interview Questions'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-9069898784735327119</id><published>2010-03-05T12:11:00.000-08:00</published><updated>2010-06-25T02:10:12.273-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JQuery Basic Knowledge'/><title type='text'>Jquery Basic Knowledge</title><content type='html'>&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;1. Give me an example of ready function in Jquery?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(document).ready(function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $('p').addClass('highlight');&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ready function is declared as "$(document).ready()".&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif;"&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;2. How ready function works in Jquery?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif;"&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp; "$(document).ready()"&amp;nbsp; This method executes the function call&amp;nbsp;when the DOM is loaded and ready. &lt;/span&gt;&lt;br /&gt;&lt;u&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;Example:&lt;/span&gt;&lt;/u&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;$(document).ready(function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;$('p').addClass('highlight');&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;});&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif;"&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;We use the function keyword (without the function name) and define the body of the function to use when the DOM has loaded. The function body is used as an argument to the method for the simple reason that we want the function to be executed immediately, but once only. We don’t want it to be reused again. In other words, $(document).ready() registers a ready event for the document. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;The $('p') in the preceding solution is a selector that accesses the paragraph elements of the HTML. file, and to those elements the addClass() method will apply the specified CSS class.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif;"&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;3.How we select the nodes using $()?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif;"&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; • $('p')—Accesses all the paragraph elements in the HTML file&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; • $('div')—Accesses all the div elements in the HTML file&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; • $('#A')—Accesses all the HTML elements with id=A&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; • $('.b')—Accesses all the HTML elements with class=b &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Example: &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(document).ready(function() { &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $('p').addClass('highlight'); //'highlight' is the css class&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}); &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;4.How you&amp;nbsp;count the number of nodes in the DOM and display its text?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;Solution&lt;/span&gt;&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_nP2WY4DQhU4/TCRthq5UHnI/AAAAAAAAAGs/9skFRHHHrD8/s1600/Jquery1.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" ru="true" src="http://1.bp.blogspot.com/_nP2WY4DQhU4/TCRthq5UHnI/AAAAAAAAAGs/9skFRHHHrD8/s320/Jquery1.gif" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-family: Times; font-size: xx-small;"&gt;&lt;strong&gt;&lt;u&gt;Jquery&lt;/u&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;$(document).ready(function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;var $nodes = $('#root').children();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;alert('Number of nodes is '+$nodes.length);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;var str="";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;$('#root').children().each( function() {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;str+=$(this).text();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;});&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;alert(str);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;});&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: xx-small;"&gt;5.&amp;nbsp;How we use&amp;nbsp; ".each()", ".text()", ".childeren()" in jquery methods?&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&lt;strong&gt;children()&lt;/strong&gt;: The children() method is a tree-traversal method that searches for the immediate children of the &lt;/span&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;specified element and returns a new jQuery object. This method travels only a single level down in the &lt;/span&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;DOM tree.&lt;/span&gt;&amp;nbsp;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&lt;strong&gt;each()&lt;/strong&gt;:each() is a method that is used to iterate over each element in the wrapped collection.&lt;/span&gt; &lt;/li&gt;&lt;li&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&lt;strong&gt;text()&lt;/strong&gt;: text() is a method of the jQuery object that accesses the text contents of the selected element(s). Exanple: alert($('p').text());&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: xx-small;"&gt;parent(): The parent() method is a tree-traversal method that searches for the immediate parent of each of &lt;/span&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: xx-small;"&gt;the selected elements and returns a new jQuery object. This method travels only a single level up in &lt;/span&gt;&lt;span style="font-family: &amp;quot;Trebuchet MS&amp;quot;, sans-serif; font-size: xx-small;"&gt;the DOM tree&lt;/span&gt;.&amp;nbsp; &lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;Example:&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-family: Times, &amp;quot;Times New Roman&amp;quot;, serif; font-size: xx-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert($('span').parent().text());&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: Times; font-size: xx-small;"&gt;6. COMMING SOON.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-9069898784735327119?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/9069898784735327119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=9069898784735327119&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/9069898784735327119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/9069898784735327119'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2010/03/jquery-basic-knowledge.html' title='Jquery Basic Knowledge'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_nP2WY4DQhU4/TCRthq5UHnI/AAAAAAAAAGs/9skFRHHHrD8/s72-c/Jquery1.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-4125352368055870685</id><published>2008-10-17T03:28:00.000-07:00</published><updated>2008-10-17T03:41:14.842-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Published Links'/><title type='text'>Published Links</title><content type='html'>Hi Guys,&lt;br /&gt;Thanks for using this blog. Please find the published contents below.&lt;br /&gt;Published Contents in this blog :&lt;br /&gt;1. &lt;a href="http://badrinathhelps.blogspot.com/2008/10/moss-2007.html"&gt;MOSS 2007 Important Questions&lt;/a&gt;&lt;br /&gt;2. &lt;a href="http://badrinathhelps.blogspot.com/search?updated-min=2008-09-01T00%3A00%3A00-07%3A00&amp;amp;updated-max=2008-10-01T00%3A00%3A00-07%3A00&amp;amp;max-results=1"&gt;Create New site in moss 2007&lt;/a&gt;&lt;br /&gt;3. &lt;a href="http://badrinathhelps.blogspot.com/2008/01/to-change-password-through-webparts.html"&gt;Web part code for change password&lt;/a&gt;&lt;br /&gt;4. &lt;a href="http://badrinathhelps.blogspot.com/2008/01/what-is-diffrence-between-wss-and-moss.html"&gt;MOSS 2007 vs WSS&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;Badri Nath&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-4125352368055870685?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/4125352368055870685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=4125352368055870685&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/4125352368055870685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/4125352368055870685'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2008/10/published-links.html' title='Published Links'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-1038301208118148667</id><published>2008-10-06T02:12:00.001-07:00</published><updated>2008-10-17T05:07:22.629-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MOSS 2007'/><title type='text'>MOSS 2007</title><content type='html'>1.&lt;/td&gt;&lt;td style="FONT-SIZE: 11pt; FONT-FAMILY: 'Times New Roman'"&gt; &lt;strong&gt;What is sharepoint 2007 or MOSS 2007 ?&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td style="WIDTH: 20pt" face="'Times New Roman'" size="11pt" valign="top"&gt;&lt;br /&gt;&lt;strong&gt;A:&lt;/strong&gt; Sharepoint is an extensibale and sacalable web - based platform consisting of tools and technologies which help to build bussiness application. Which helps us to better store, share and manage digital information in our organization.&lt;br /&gt;These are sharepoint primary features:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Web content management.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Monitor key business activities.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Simplify Collaboration.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;2. &lt;td style="FONT-SIZE: 11pt; FONT-FAMILY: 'Times New Roman'"&gt;&lt;strong&gt;Comparing MOSS 2007 and WSS.&lt;/strong&gt;&lt;/td&gt; &lt;td style="FONT-SIZE: 11pt; WIDTH: 20pt; FONT-FAMILY: 'Times New Roman'" valign="top"&gt;&lt;br /&gt;&lt;strong&gt;A: &lt;/strong&gt;WSS contains the core functionality needed for document Management and collaboration, such as document libraries and list where MOSS 2007 offers the same feature of WSS in addition to the functionality required for Enterprise content management as well as Excel and forms services, Business data catalog and Business intelligences.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;3. What is the Enterprise feature?&lt;/strong&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;A. Enterprise features named because they often represent the functionality that large enterprises require and demand from their collaborative applications.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Form Services:&lt;/strong&gt; InfoPath is a forms creation and completion application that is in an important part of the Microsoft Office system.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Search:&lt;/strong&gt; This connects you with the information, people, and processes you need to make informed business decisions. Users’ complaints concerning SharePoint 2003’s inability to locate information resulted in a greatly improved search engine in the 2007 release, which includes search highlighting.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Web Content Management:&lt;/strong&gt; With the integration of Microsoft Content Management Server 2002, SharePoint now supports web content creation and publishing. Publishing features ranging from content approval workflow to page layouts and content types which means you can &lt;a name="76" dtid="281474976710774"&gt;&lt;/a&gt;&lt;a name="IDX-15A330DA8C-7CE9-4954-B22A-CD467C277B52" dtid="281474976710775"&gt;&lt;/a&gt;create and publish branded web content without knowing code. You can then host these websites on an intranet environment or an extranet so partners or clients can access information. &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Excel Services:&lt;/strong&gt; Excel Services lets you work with important data in real time using only the browser. You can publish interactive pivot tables, charts, and spreadsheets to a large audience while protecting your formulas and calculations. Users are given “view-only” rights, which only allows them to see the browser-based version of a report.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Business Data Catalog:&lt;/strong&gt; Business Data catalog is newly introduced shared services which enable MOSS 2007 to surface business data from back-end server applications with minimal coding effort. It provides built-in support for displaying data from database and Web services. &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Audiences/Profiles:&lt;/strong&gt; SharePoint 2007 can collect user profile information and store it in a centralized database so that various elements in SharePoint can access it and personalize it. Personalization targets relevant content to users based on properties of their profiles. &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;4. What is SSO?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt; Single Sign on (SSO) functionality enables users to authenticate only once when they access portal site based application that need to obtain information from other business applications and systems. Configuring single sign-on consists of five tasks:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Configuring the Microsoft Single Sign -On Services service. &lt;/li&gt;&lt;li&gt;Managing Server settings for single sign-on. &lt;/li&gt;&lt;li&gt;Managing the encryprion key. &lt;/li&gt;&lt;li&gt;Managing enterprise application definitions. &lt;/li&gt;&lt;li&gt;Managing account settings for enterprise applications definitions. &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;5.define Business Data Catalog?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt; Business Data catalog is newly introduced shared services which enable MOSS 2007 to surface business data from back-end server applications with minimal coding effort. It provides built-in support for displaying data from database and Web services. There are five in built BDC web part:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Business data web-parts.&lt;/li&gt;&lt;li&gt;Business data in links.&lt;/li&gt;&lt;li&gt;Business data actions.&lt;/li&gt;&lt;li&gt;Business data search.&lt;/li&gt;&lt;li&gt;Business data in user profiles.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;6. How to Personalizing Your Portal?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt; There are three main features in MOSS 2007 personalization Model.&lt;br /&gt;&lt;strong&gt;a. User profiles: &lt;/strong&gt;User profile allow us to search for and connect with people in our organization based on information published about them. In MOSS 2007 we can import user profile information from : 1. Active Directory 2. LDAP Server or 3. From apllication registered in BDC.&lt;br /&gt;&lt;strong&gt;b.Audiences :&lt;/strong&gt; Office SharePoint Server 2007 allows you to target content to people according to their membership in a particular audience. Office SharePoint Server 2007 supports targeting to rules-based audiences, distribution lists, and Windows SharePoint Services groups. Except for Windows SharePoint Services groups, these audiences can span one or more portal sites in a deployment.&lt;br /&gt;&lt;strong&gt;c.My Site :&lt;/strong&gt;My Site is a collection of Profile pages, personal sites, and personalization sites created in the Office SharePoint Server 2007 site.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;7.What is content types?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt; A content type is a reusable collection of settings which enable us to manage the metadata and behaviors of a document or item type in a centralized manner.&lt;/p&gt;&lt;p&gt;              You create a content type at the site level. This site content type acts as a template that is independent of any specific list or library. That site content type is then available on any child site. For example, if you create a site content type at the root site of a site collection, that site content type becomes available on any site in that site collection, so that you can add it to any list in the site collection.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;8.  Types of contents types.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;A. Following are the base content types:&lt;/p&gt;&lt;strong&gt;&lt;ol&gt;&lt;li&gt;&lt;/strong&gt;Business Intelligence Content Types &lt;/li&gt;&lt;li&gt;Document Content Types &lt;/li&gt;&lt;li&gt;Folder Content Types &lt;/li&gt;&lt;li&gt;List Content Types &lt;/li&gt;&lt;li&gt;Page Layout Content Types &lt;/li&gt;&lt;li&gt;Publishing Content Types &lt;/li&gt;&lt;li&gt;Special Content Types &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;strong&gt;9.Describe the difference between a lookup column and a choice column.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt;A choice column features a value list from which you can select that a site manager has manually entered into the column. A lookup column displays a value list based on the contents of an existing column from another list on the site.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;10.Describe how you would send a report of information stored in a list to a partner outside your organization that did not have access to your SharePoint list.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt; You can export SharePoint list views to an Excel spreadsheet from the Actions menu. This means you can take information from the SharePoint site, customize it, and send it to team members or partners that do not have direct access to the SharePoint list.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;11.What are the differences between a tasks list and a projects tasks list?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt; A projects tasks list is created with a Gantt chart view by default. Also, you can associate a tasks list with a workflow activity template whereas you can’t do this with a projects task.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-1038301208118148667?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/1038301208118148667/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=1038301208118148667&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/1038301208118148667'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/1038301208118148667'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2008/10/moss-2007.html' title='MOSS 2007'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-8074020671231377475</id><published>2008-09-25T11:56:00.000-07:00</published><updated>2008-10-05T10:20:34.840-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='New Site in MOSS 2007'/><title type='text'>Create New Site in MOSS 2007</title><content type='html'>&lt;div&gt;&lt;div&gt;&lt;strong&gt;Follows these steps to create a top level Sites in MOSS 2007:&lt;/strong&gt;&lt;br /&gt;&lt;/div&gt;&lt;ol&gt;&lt;li&gt;Open central administration site&lt;/li&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_nP2WY4DQhU4/SOhXvP038iI/AAAAAAAAAEA/sC-LWf8bARY/s1600-h/FBA2.GIF"&gt;&lt;img id="BLOGGER_PHOTO_ID_5253545434541453858" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_nP2WY4DQhU4/SOhXvP038iI/AAAAAAAAAEA/sC-LWf8bARY/s320/FBA2.GIF" border="0" /&gt;&lt;/a&gt; &lt;li&gt;Click on &lt;em&gt;Application Management&lt;/em&gt;&lt;/li&gt;&lt;li&gt;Application Management site open &lt;/li&gt;&lt;li&gt;Click on &lt;em&gt;create or extended web application&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Create or extend web application&lt;/em&gt; Open&lt;/li&gt;&lt;li&gt;Click on &lt;em&gt;Create on new Web Application&lt;/em&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Create on new Web Application &lt;/em&gt;open&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Now follow the steps to create your new site :&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;a. Give proper name for your site in &lt;strong&gt;Description&lt;/strong&gt; Text box &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;b. Give proper port number &lt;a href="http://4.bp.blogspot.com/_nP2WY4DQhU4/SOhdFivPoZI/AAAAAAAAAEQ/DWh3ogmSnm0/s1600-h/createSite13.GIF"&gt;&lt;img id="BLOGGER_PHOTO_ID_5253551315133374866" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_nP2WY4DQhU4/SOhdFivPoZI/AAAAAAAAAEQ/DWh3ogmSnm0/s400/createSite13.GIF" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;c. Give admin userid and passowrd&lt;br /&gt;d. Give Database name and&lt;br /&gt;e. Choose database authentication&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_nP2WY4DQhU4/SOhdSECqyAI/AAAAAAAAAEY/2OtGapC4ksE/s1600-h/createSite14.GIF"&gt;&lt;img id="BLOGGER_PHOTO_ID_5253551530231646210" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_nP2WY4DQhU4/SOhdSECqyAI/AAAAAAAAAEY/2OtGapC4ksE/s400/createSite14.GIF" border="0" /&gt;&lt;/a&gt;6. Click on &lt;strong&gt;Ok&lt;/strong&gt; &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;7. Operation in Progress&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_nP2WY4DQhU4/SOhglhNCqaI/AAAAAAAAAEg/xtOponrQXT8/s1600-h/createSite15.GIF"&gt;&lt;img id="BLOGGER_PHOTO_ID_5253555163012180386" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_nP2WY4DQhU4/SOhglhNCqaI/AAAAAAAAAEg/xtOponrQXT8/s400/createSite15.GIF" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;8. Site Created&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_nP2WY4DQhU4/SOhh-oCnTqI/AAAAAAAAAEo/bB2zzY4k7O8/s1600-h/createSite16.GIF"&gt;&lt;img id="BLOGGER_PHOTO_ID_5253556693855850146" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_nP2WY4DQhU4/SOhh-oCnTqI/AAAAAAAAAEo/bB2zzY4k7O8/s400/createSite16.GIF" border="0" /&gt;&lt;/a&gt; 9. Click on &lt;em&gt;Create Site Collection&lt;br /&gt;&lt;/em&gt;&lt;/p&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_nP2WY4DQhU4/SOhjoC9T__I/AAAAAAAAAE4/Xxv40DNygvg/s1600-h/createSite17.GIF"&gt;&lt;img id="BLOGGER_PHOTO_ID_5253558504967634930" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_nP2WY4DQhU4/SOhjoC9T__I/AAAAAAAAAE4/Xxv40DNygvg/s400/createSite17.GIF" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://4.bp.blogspot.com/_nP2WY4DQhU4/SOhjTxzm03I/AAAAAAAAAEw/iYQuKjypR8k/s1600-h/createSite16.GIF"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;10. Give user name and click on &lt;strong&gt;OK&lt;/strong&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_nP2WY4DQhU4/SOhjoC9T__I/AAAAAAAAAE4/Xxv40DNygvg/s1600-h/createSite17.GIF"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://4.bp.blogspot.com/_nP2WY4DQhU4/SOhjTxzm03I/AAAAAAAAAEw/iYQuKjypR8k/s1600-h/createSite16.GIF"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;11. Tope leve site created&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_nP2WY4DQhU4/SOhlqM3VmoI/AAAAAAAAAFA/RgfGYQAyyAo/s1600-h/createSite18.GIF"&gt;&lt;img id="BLOGGER_PHOTO_ID_5253560741009922690" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_nP2WY4DQhU4/SOhlqM3VmoI/AAAAAAAAAFA/RgfGYQAyyAo/s400/createSite18.GIF" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;12. Top level site&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_nP2WY4DQhU4/SOhmyQGNIXI/AAAAAAAAAFI/CQD0GMI_Hfw/s1600-h/createSite19.GIF"&gt;&lt;img id="BLOGGER_PHOTO_ID_5253561978828169586" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_nP2WY4DQhU4/SOhmyQGNIXI/AAAAAAAAAFI/CQD0GMI_Hfw/s400/createSite19.GIF" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-8074020671231377475?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/8074020671231377475/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=8074020671231377475&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/8074020671231377475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/8074020671231377475'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2008/09/create-new-site-in-moss-2007.html' title='Create New Site in MOSS 2007'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_nP2WY4DQhU4/SOhXvP038iI/AAAAAAAAAEA/sC-LWf8bARY/s72-c/FBA2.GIF' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-3720052255467695278</id><published>2008-07-03T00:33:00.000-07:00</published><updated>2008-07-03T02:10:19.346-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle Helps'/><title type='text'>Date in oracle</title><content type='html'>&lt;p&gt;&lt;span style="font-size:78%;"&gt;&lt;strong&gt;How to update the date column of the table?&lt;br /&gt;&lt;/strong&gt;&lt;span style="color:#000099;"&gt;&lt;strong&gt;If column is date type&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;UPDATE TableName SET Updateable_Col =to_date('yourDate’,'MM/DD/YYYY') WHERE ColumnName ='Paramenter'.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:78%;"&gt;&lt;strong&gt;&lt;span style="color:#000099;"&gt;or if column is string type&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;UPDATE TableName SET Updateable_Col =to_char('yourDate’,'MM/DD/YYYY') WHERE ColumnName ='Paramenter'. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:78%;"&gt;&lt;strong&gt;Note:&lt;br /&gt;&lt;/strong&gt;1. To_date(‘Column Parameter’, ‘Date Format’) function converts a string to a Date.&lt;br /&gt;2. To_Char(‘Column Parameter’, ‘Date Format’) function converts a Date to a String.&lt;br /&gt;&lt;/p&gt;&lt;/span&gt;&lt;p&gt;&lt;table width="100%" border="1"&gt;&lt;p&gt;&lt;p&gt;&lt;span style="font-size:78%;"&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:78%;"&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width="5%"&gt;&lt;span style="font-size:78%;"&gt;&lt;strong&gt;Sno&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;td width="30%"&gt;&lt;span style="font-size:78%;"&gt;&lt;strong&gt;Field Name&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;td width="65%"&gt;&lt;span style="font-size:78%;"&gt;&lt;strong&gt;Used for&lt;/strong&gt;&lt;/span&gt;&lt;/td&gt;&lt;span style="font-size:78%;"&gt;&lt;/span&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="5%"&gt;&lt;span style="font-size:78%;"&gt;1&lt;/span&gt;&lt;/td&gt;&lt;td width="30%"&gt;&lt;span style="font-size:78%;"&gt;TableName&lt;/span&gt;&lt;/td&gt;&lt;td width="65%"&gt;&lt;span style="font-size:78%;"&gt;Table name, which table you want to update.&lt;/span&gt;&lt;/td&gt;&lt;span style="font-size:78%;"&gt;&lt;/span&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="5%"&gt;&lt;span style="font-size:78%;"&gt;2&lt;/span&gt;&lt;/td&gt;&lt;td width="30%"&gt;&lt;span style="font-size:78%;"&gt;Updateable_Col&lt;/span&gt;&lt;/td&gt;&lt;td width="65%"&gt;&lt;span style="font-size:78%;"&gt;Column Name, which column you want to update&lt;/span&gt;&lt;/td&gt;&lt;span style="font-size:78%;"&gt;&lt;/span&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="5%"&gt;&lt;span style="font-size:78%;"&gt;3&lt;/span&gt;&lt;/td&gt;&lt;td width="30%"&gt;&lt;span style="font-size:78%;"&gt;YourDate&lt;/span&gt;&lt;/td&gt;&lt;td width="65%"&gt;&lt;span style="font-size:78%;"&gt;Date as 06/25/2008&lt;/span&gt;&lt;/td&gt;&lt;span style="font-size:78%;"&gt;&lt;/span&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width="5%"&gt;&lt;span style="font-size:78%;"&gt;3&lt;/span&gt;&lt;/td&gt;&lt;td width="30%"&gt;&lt;span style="font-size:78%;"&gt;ColumnName&lt;/span&gt;&lt;/td&gt;&lt;td width="65%"&gt;&lt;span style="font-size:78%;"&gt;In respect to which column you want to update&lt;/span&gt;&lt;/td&gt;&lt;span style="font-size:78%;"&gt;&lt;/span&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;p&gt;&lt;/p&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-3720052255467695278?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/3720052255467695278/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=3720052255467695278&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/3720052255467695278'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/3720052255467695278'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2008/07/date-in-oracle.html' title='Date in oracle'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-6292937820864655271</id><published>2008-07-01T03:49:00.000-07:00</published><updated>2008-07-01T04:08:22.061-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Overview'/><title type='text'>Business Data Catalog (BDC) overview</title><content type='html'>&lt;span style="font-size:85%;"&gt;Business data Catalog is newly introduced in the MOSS 2007. It is a shared service which enables to connect the business data from back-end –server application without any coding or minimal coding. It bridges the gap between the portal site and our business application and enables to bring key data from various business application to office SharePoint 2007 lists, Webparts, search, user profiles, and custom application.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;We can use Business Data Catalog to display data from your SAP, Siebel, or other line-of-business (LOB) application via Web services or databases. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;There are five default Business Data Web Parts in MOSS 2007: &lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Business Data List.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Business Data Item.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Business Data Item Builder.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Business Data Related List. &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Business Data Actions. &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Business Data catalog support two authentication Models:&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Trusted Subsystem&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Impersonation and delegation.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;each  authentication Models have four Authentication Modes:&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Pass through&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;RevertToSelf&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;WindowsCredentials&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Rdbcredentials&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-6292937820864655271?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/6292937820864655271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=6292937820864655271&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/6292937820864655271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/6292937820864655271'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2008/07/business-data-catalog-bdc-overview.html' title='Business Data Catalog (BDC) overview'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-4475658335894816898</id><published>2008-01-15T08:10:00.000-08:00</published><updated>2008-01-15T09:41:22.097-08:00</updated><title type='text'>What is the diffrence between WSS and MOSS</title><content type='html'>&lt;span style="font-family:verdana;font-size:78%;"&gt;To install the MOSS we have to install the WSS first. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;strong&gt;So question is what is diffrence between MOSS and WSS?&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt; Just I am trying to explain you individualy:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;&lt;strong&gt;WSS ( Windows Sharepoint Services 3.0)&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt; It is a web based application.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt; All information are stored in the MS sql database.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt; It is using to display the information by the help of webparts. &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;There are more then one list type which is use to store all type of information.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;It is ideal for collaboration on project data.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;It has its own index and search engine.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;It contains the site templates which helps to create Wiki and Blog sites.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;&lt;strong&gt;WSS doesn't support&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Indexing and searching information is not supported by the wss&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;No advanced intranet features such, as targated information and content management.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;No advance document management fatures, such as policies.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Infopath form cnnot display in the web browser.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Limited no of webparts (less then 10)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Unable to read and write the external database.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;&lt;strong&gt;MS Office Sharepoint Server 2007&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt; add more features to the wss 3.0.&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Use Global search functionality which helps to find any type of information such as type and location.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;You can create one user or you can create a group of user in a diffrent group.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Import user data into Active directory.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Advance content management.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Able to use infopath Forms, using forms service.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;MS Excel Spredsheets and charts in a webpart , using Excel services.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Search, dispaly and edit content in external daabses, such as SAP, using BUssiness Data Catalog.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;Give each sharepoint a perosonal website , for both private and public use. &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;&lt;/span&gt;&lt;/strong&gt; &lt;/p&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Verdana;font-size:78%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;font-size:78%;"&gt;  &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-4475658335894816898?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/4475658335894816898/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=4475658335894816898&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/4475658335894816898'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/4475658335894816898'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2008/01/what-is-diffrence-between-wss-and-moss.html' title='What is the diffrence between WSS and MOSS'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-5921166682021267522</id><published>2008-01-13T06:56:00.000-08:00</published><updated>2008-01-15T08:08:34.144-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Change password webpart'/><title type='text'>To change password through webparts</title><content type='html'>using System;&lt;br /&gt;using System.Runtime.InteropServices;&lt;br /&gt;using System.Web.UI;&lt;br /&gt;using System.Web.UI.WebControls.WebParts;&lt;br /&gt;using System.Xml.Serialization;&lt;br /&gt;using System.Data;&lt;br /&gt;using System.Data.SqlClient;&lt;br /&gt;using System.Drawing;&lt;br /&gt;using Microsoft.SharePoint;&lt;br /&gt;using Microsoft.SharePoint.WebControls;&lt;br /&gt;using Microsoft.SharePoint.WebPartPages;&lt;br /&gt;using System.ComponentModel;&lt;br /&gt;using System.Collections.Generic;&lt;br /&gt;using System.Web.UI.WebControls;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;namespace changepasswordwebpart&lt;br /&gt;{&lt;br /&gt;[Guid("713bc165-73a4-4a65-8651-adf5d5da8a50")]&lt;br /&gt;public class changepasswordwebpart : System.Web.UI.WebControls.WebParts.WebPart,IWebEditable&lt;br /&gt;{&lt;br /&gt;System.Web.UI.WebControls.Label oldlb = new System.Web.UI.WebControls.Label();&lt;br /&gt;System.Web.UI.WebControls.Label userid_lb = new System.Web.UI.WebControls.Label();&lt;br /&gt;System.Web.UI.WebControls.Panel panel = new System.Web.UI.WebControls.Panel();&lt;br /&gt;System.Web.UI.WebControls.TextBox oldpasswordtb = new System.Web.UI.WebControls.TextBox();&lt;br /&gt;System.Web.UI.WebControls.TextBox userid_txt = new System.Web.UI.WebControls.TextBox();&lt;br /&gt;System.Web.UI.WebControls.TextBox newpasswordtb = new System.Web.UI.WebControls.TextBox();&lt;br /&gt;System.Web.UI.WebControls.TextBox Confirmpasswordtb = new System.Web.UI.WebControls.TextBox();&lt;br /&gt;System.Web.UI.WebControls.Button Checkpasswordbttn = new System.Web.UI.WebControls.Button();&lt;br /&gt;System.Web.UI.WebControls.Button cancelbttn = new System.Web.UI.WebControls.Button();&lt;br /&gt;System.Web.UI.WebControls.Label statuslb = new System.Web.UI.WebControls.Label();&lt;br /&gt;System.Web.UI.WebControls.Label Info_lb = new System.Web.UI.WebControls.Label();&lt;br /&gt;public changepasswordwebpart()&lt;br /&gt;{&lt;br /&gt;this.ExportMode = WebPartExportMode.All;&lt;br /&gt;}&lt;br /&gt;protected override void Render(HtmlTextWriter writer)&lt;br /&gt;{&lt;br /&gt;// TODO: add custom rendering code here.&lt;br /&gt;// writer.Write("Output HTML");&lt;br /&gt;}&lt;br /&gt;protected override void CreateChildControls()&lt;br /&gt;{&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;SPWeb thisWeb = SPControl.GetContextWeb(this.Context);&lt;br /&gt;SPUser currentUser = thisWeb.CurrentUser;&lt;br /&gt;String username = currentUser.Name;&lt;br /&gt;//base.CreateChildControls();&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;table width="400"&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td width="400" align="center" valign="top"&gt;"));&lt;br /&gt;Info_lb.Text = "All fields are manadatory!";&lt;br /&gt;Info_lb.Width = 300;&lt;br /&gt;Info_lb.Height = 20;&lt;br /&gt;panel.Controls.Add(Info_lb);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;table width="100%"&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;userid_lb.Text = "UserID:";&lt;br /&gt;userid_lb.Width = 150;&lt;br /&gt;userid_lb.Height = 20;&lt;br /&gt;panel.Controls.Add(userid_lb);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;userid_txt.Text = username;&lt;br /&gt;userid_txt.ID = "usernametb";&lt;br /&gt;userid_txt.Width = 150;&lt;br /&gt;userid_txt.Height = 20;&lt;br /&gt;userid_txt.ReadOnly = true;&lt;br /&gt;panel.Controls.Add(userid_txt);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;oldlb.Text = "Old Password";&lt;br /&gt;oldlb.Width = 150;&lt;br /&gt;oldlb.Height = 20;&lt;br /&gt;panel.Controls.Add(oldlb);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;oldpasswordtb.Text = "";&lt;br /&gt;//oldpasswordtb.ID = "oldtb";&lt;br /&gt;oldpasswordtb.Width = 150;&lt;br /&gt;oldpasswordtb.Height = 20;&lt;br /&gt;oldpasswordtb.TextMode = TextBoxMode.Password;&lt;br /&gt;panel.Controls.Add(oldpasswordtb);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;&lt;br /&gt;System.Web.UI.WebControls.Label newlb = new System.Web.UI.WebControls.Label();&lt;br /&gt;newlb.Text = "New Password";&lt;br /&gt;newlb.Width = 150;&lt;br /&gt;newlb.Height = 20;&lt;br /&gt;panel.Controls.Add(newlb);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;newpasswordtb.Text = "";&lt;br /&gt;//newpasswordtb.ID = "newpwdtb";&lt;br /&gt;newpasswordtb.Width = 150;&lt;br /&gt;newpasswordtb.Height = 20;&lt;br /&gt;newpasswordtb.TextMode = TextBoxMode.Password;&lt;br /&gt;panel.Controls.Add(newpasswordtb);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;System.Web.UI.WebControls.Label confirmlb = new System.Web.UI.WebControls.Label();&lt;br /&gt;confirmlb.Text = "Confirm Password";&lt;br /&gt;confirmlb.Width = 150;&lt;br /&gt;confirmlb.Height = 20;&lt;br /&gt;panel.Controls.Add(confirmlb);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;Confirmpasswordtb.Text = "";&lt;br /&gt;//Confirmpasswordtb.ID = "Confirmtb";&lt;br /&gt;Confirmpasswordtb.Width = 150;&lt;br /&gt;Confirmpasswordtb.Height = 20;&lt;br /&gt;Confirmpasswordtb.TextMode = TextBoxMode.Password;&lt;br /&gt;panel.Controls.Add(Confirmpasswordtb);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td&gt;"));&lt;br /&gt;Checkpasswordbttn.Text = "Ok";&lt;br /&gt;Checkpasswordbttn.Width = 100;&lt;br /&gt;//Checkpasswordbttn.ID = "okbttn";&lt;br /&gt;Checkpasswordbttn.Click += new EventHandler(Checkpasswordbttn_Click);&lt;br /&gt;panel.Controls.Add(Checkpasswordbttn);&lt;br /&gt;cancelbttn.Text = "Cancel";&lt;br /&gt;cancelbttn.Visible = false;&lt;br /&gt;Controls.Add(cancelbttn);&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/table&gt;"));&lt;br /&gt;&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;td width="400" align="center" valign="top"&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/td&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/tr&gt;"));&lt;br /&gt;panel.Controls.Add(new LiteralControl("&lt;/table&gt;"));&lt;br /&gt;statuslb.Text = "";&lt;br /&gt;statuslb.ForeColor = System.Drawing.Color.Red;&lt;br /&gt;statuslb.Width = 400;&lt;br /&gt;statuslb.Height = 20;&lt;br /&gt;statuslb.Visible = true;&lt;br /&gt;panel.Controls.Add(statuslb);&lt;br /&gt;//cancelbttn.Click += new EventHandler(cancelbttn_Click);&lt;br /&gt;this.Controls.Add(panel);&lt;br /&gt;}&lt;br /&gt;catch (Exception ex)&lt;br /&gt;{&lt;br /&gt;statuslb.Text = "Contact with Administrator!";&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;public override void RenderControl(HtmlTextWriter writer)&lt;br /&gt;{&lt;br /&gt;panel.RenderControl(writer);&lt;br /&gt;EnsureChildControls();&lt;br /&gt;//create a table&lt;br /&gt;//base.RenderControl(writer);&lt;br /&gt;}&lt;br /&gt;string str1;&lt;br /&gt;public static string err;&lt;br /&gt;void Checkpasswordbttn_Click(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt;statuslb.Text = "";&lt;br /&gt;if (userid_txt.Text != "" &amp;amp;&amp;amp; oldpasswordtb.Text != "" &amp;amp;&amp;amp; newpasswordtb.Text != "" &amp;amp;&amp;amp; Confirmpasswordtb.Text != "")&lt;br /&gt;{&lt;br /&gt;////throw new Exception("The method or operation is not implemented.");&lt;br /&gt;if (newpasswordtb.Text == Confirmpasswordtb.Text)&lt;br /&gt;{&lt;br /&gt;str1 = updatePassword(newpasswordtb.Text, oldpasswordtb.Text);&lt;br /&gt;//if(Convert.ToInt64(str1) &gt; 0)&lt;br /&gt;if(str1=="1")&lt;br /&gt;{&lt;br /&gt;statuslb.Text = "your password has changed successfully!";&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;statuslb.Text = "Please check your oldpassword!";&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;statuslb.Text = "Newpassword and confrim password must be same!";&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt;statuslb.Text = "All fields are manadatory!";&lt;br /&gt;}&lt;br /&gt;if(userid_txt.Text!="" &amp;amp;&amp;amp; oldpasswordtb.Text!="")&lt;br /&gt;{&lt;br /&gt;bool verified = AuthenticateUser(userid_txt.Text, oldpasswordtb.Text);&lt;br /&gt;if (verified)&lt;br /&gt;statuslb.Text = "Verified";&lt;br /&gt;else&lt;br /&gt;statuslb.Text = "Not Verified" + err;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;//public SqlConnection conn = new SqlConnection("Data Source=server name;Initial Catalog=databasename;Integrated Security=True");&lt;br /&gt;public SqlConnection conn = new SqlConnection("Data Source=server name;Initial Catalog=databasename;Integrated Security=True");&lt;br /&gt;public string updatePassword(string password, string oldpassword)&lt;br /&gt;{&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;SPWeb thisWeb = SPControl.GetContextWeb(this.Context);&lt;br /&gt;SPUser currentUser = thisWeb.CurrentUser;&lt;br /&gt;String username = currentUser.Name;&lt;br /&gt;conn.Open();&lt;br /&gt;SqlCommand cmd = new SqlCommand();&lt;br /&gt;cmd.Connection = conn;&lt;br /&gt;cmd.CommandType = CommandType.Text;&lt;br /&gt;cmd.CommandText = "Update statement")";&lt;br /&gt;return cmd.ExecuteNonQuery().ToString();&lt;br /&gt;}&lt;br /&gt;catch (Exception ex)&lt;br /&gt;{&lt;br /&gt;return ex.Message;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;private string connectionstring;&lt;br /&gt;// Property to Assign Site URL from ToolPart&lt;br /&gt;[WebBrowsable(false)]&lt;br /&gt;public string ConnString&lt;br /&gt;{&lt;br /&gt;get&lt;br /&gt;{&lt;br /&gt;return connectionstring;&lt;br /&gt;}&lt;br /&gt;set&lt;br /&gt;{&lt;br /&gt;connectionstring = value;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;// Creating the ToolPart with the WebPart&lt;br /&gt;#region IWebEditable Members&lt;br /&gt;EditorPartCollection IWebEditable.CreateEditorParts()&lt;br /&gt;{&lt;br /&gt;List&lt;editorpart&gt; editors = new List&lt;editorpart&gt;();&lt;br /&gt;editors.Add(new editchagepassword());&lt;br /&gt;return new EditorPartCollection(editors);&lt;br /&gt;}&lt;br /&gt;object IWebEditable.WebBrowsableObject&lt;br /&gt;{&lt;br /&gt;get { return this; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt; //    Next Class  &lt;br /&gt;using System;&lt;br /&gt;using System.Collections.Generic;&lt;br /&gt;using System.Text;&lt;br /&gt;using System.ComponentModel;&lt;br /&gt;using System.Web;&lt;br /&gt;using System.Web.UI;&lt;br /&gt;using System.Web.UI.HtmlControls;&lt;br /&gt;using System.Web.UI.WebControls;&lt;br /&gt;using System.Web.UI.WebControls.WebParts;&lt;br /&gt;namespace changepasswordwebpart&lt;br /&gt;{&lt;br /&gt;class editchagepassword:EditorPart&lt;br /&gt;{&lt;br /&gt;TextBox constringtxt;&lt;br /&gt;public editchagepassword()&lt;br /&gt;{&lt;br /&gt;this.ID = "PasswordEditorPart";&lt;br /&gt;this.Title = "Change Your Password";&lt;br /&gt;}&lt;br /&gt;protected override void CreateChildControls()&lt;br /&gt;{&lt;br /&gt;base.CreateChildControls();&lt;br /&gt;constringtxt = new TextBox();&lt;br /&gt;// Create new panel for ToolPart&lt;br /&gt;//Panel userSectionBody = new Panel();&lt;br /&gt;//constringtxt = new TextBox();&lt;br /&gt;//Label lblSiteURL = new Label();&lt;br /&gt;//lblSiteURL.Text = "Connection string";&lt;br /&gt;&lt;br /&gt;//// Adding Site URL TextBox to Panel&lt;br /&gt;//userSectionBody.Controls.Add(lblSiteURL);&lt;br /&gt;//userSectionBody.Controls.Add(new LiteralControl("&lt;br /&gt;"));&lt;br /&gt;//userSectionBody.Controls.Add(constringtxt);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Controls.Add(constringtxt);&lt;br /&gt;}&lt;br /&gt;// This Function will be Triggered When the Apply or OK button Clicked in ToolPart&lt;br /&gt;public override bool ApplyChanges()&lt;br /&gt;{&lt;br /&gt;changepasswordwebpart webpart = WebPartToEdit as changepasswordwebpart;&lt;br /&gt;if (webpart != null)&lt;br /&gt;{&lt;br /&gt;webpart.ConnString = constringtxt.Text;&lt;br /&gt;return true;&lt;br /&gt;}&lt;br /&gt;return true;&lt;br /&gt;}&lt;br /&gt;// This Function will be Triggered when the Task Pane of the WebPart is Opened&lt;br /&gt;public override void SyncChanges()&lt;br /&gt;{&lt;br /&gt;EnsureChildControls();&lt;br /&gt;changepasswordwebpart webpart = WebPartToEdit as changepasswordwebpart;&lt;br /&gt;if (webpart != null)&lt;br /&gt;{&lt;br /&gt;constringtxt.Text = webpart.ConnString;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;protected override void RenderContents(HtmlTextWriter writer)&lt;br /&gt;{&lt;br /&gt;// Rendering Tool Part Pane&lt;br /&gt;//writer.WriteLine("Document Library TreeView Editor Part");&lt;br /&gt;base.RenderContents(writer);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-5921166682021267522?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/5921166682021267522/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=5921166682021267522&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/5921166682021267522'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/5921166682021267522'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2008/01/to-change-password-through-webparts.html' title='To change password through webparts'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5091418969779416316.post-1344378091504835643</id><published>2008-01-13T06:07:00.000-08:00</published><updated>2008-01-13T06:23:26.966-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Welcome kit'/><title type='text'>Thanks to blogger.com</title><content type='html'>Hi All,&lt;br /&gt;&lt;br /&gt;I have created my own blog. First of all i thanks to blogger.com who help every one to create his own blog and helps to other to become a known person in the E wolrd market. which kepp touch with each othe.&lt;br /&gt;&lt;br /&gt;I am Senior software engg in MNC company.  I want to share my knowledge what i have gain through my exprince form last four year. Thanks to all who share his/her knowledge. I also want to become one of them. Thanks to Uday ethurajulu who inform me about this all.&lt;br /&gt;&lt;br /&gt;Thanks &amp;amp; regards&lt;br /&gt;&lt;br /&gt;Badri Nath&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5091418969779416316-1344378091504835643?l=badrinathhelps.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://badrinathhelps.blogspot.com/feeds/1344378091504835643/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5091418969779416316&amp;postID=1344378091504835643&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/1344378091504835643'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5091418969779416316/posts/default/1344378091504835643'/><link rel='alternate' type='text/html' href='http://badrinathhelps.blogspot.com/2008/01/thanks-to-bloggercom.html' title='Thanks to blogger.com'/><author><name>Badri Nath</name><uri>http://www.blogger.com/profile/10010999810904587863</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
