<?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-5180564760369581660</id><updated>2012-02-16T17:46:04.594+02:00</updated><category term='C#'/><category term='SharePoint'/><category term='AJAX'/><category term='Visual Studio'/><category term='JavaScript'/><category term='.NET'/><category term='ASP.NET'/><category term='SQL Server'/><title type='text'>Programming Life</title><subtitle type='html'>C#, ASP.NET, SharePoint, WSS, JavaScript, .Net</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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>22</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-7306179866398485106</id><published>2010-07-11T16:09:00.004+03:00</published><updated>2010-07-11T16:17:26.611+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='AJAX'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>Execute Java Script Function After AJAX Request</title><content type='html'>The Follwing JS Code on 'endRequest' Function Will Be Execute After AJAX Request&lt;br /&gt;&lt;strong&gt;Ex:&lt;/strong&gt; After Submitting ASP.NET Form&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="color:#000099;"&gt;function&lt;/span&gt; pageLoad() {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;    &lt;span style="color:#000099;"&gt;var&lt;/span&gt; manager = Sys.WebForms.PageRequestManager.getInstance();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;    manager.add_endRequest(&lt;em&gt;endRequest&lt;/em&gt;);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;}&lt;br /&gt;&lt;span style="color:#000099;"&gt;function&lt;/span&gt; endRequest(sender, args) {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;   &lt;span style="color:#006600;"&gt;//Add Your JS Code Here&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;    window.scrollTo(0, 300);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;}&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-7306179866398485106?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/7306179866398485106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=7306179866398485106' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7306179866398485106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7306179866398485106'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2010/07/execute-java-script-function-after-ajax.html' title='Execute Java Script Function After AJAX Request'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-1896291117527950802</id><published>2010-07-11T13:46:00.008+03:00</published><updated>2010-07-11T15:36:10.666+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>Check ASP.NET Page If Valid Using JavaScript</title><content type='html'>Check ASP.NET Page If Valid (All Validating Form Input Controls Are Valid) Using JavaScript&lt;br /&gt;&lt;span style="font-family:trebuchet ms;color:#000000;"&gt;&lt;br /&gt;&lt;span style="color:#000099;"&gt;function &lt;/span&gt;ValidatePage() {&lt;br /&gt;&lt;span style="color:#000099;"&gt;if&lt;/span&gt; (&lt;span style="color:#000099;"&gt;typeof&lt;/span&gt;(Page_ClientValidate) == 'function') {&lt;br /&gt;Page_ClientValidate();&lt;br /&gt;}&lt;br /&gt;&lt;span style="color:#000099;"&gt;if&lt;/span&gt; (Page_IsValid) {&lt;br /&gt;&lt;span style="color:#006600;"&gt;//Add Your JavaScript If Page&lt;strong&gt; Valid&lt;/strong&gt;.&lt;/span&gt;&lt;br /&gt;document.getElementById('divCaution').style.display = 'none';&lt;br /&gt;}&lt;br /&gt;&lt;span style="color:#000099;"&gt;else&lt;/span&gt; {&lt;br /&gt;&lt;span style="color:#006600;"&gt;//Add Your JavaScript If Page &lt;strong&gt;Not Valid&lt;/strong&gt;.&lt;/span&gt;&lt;br /&gt;document.getElementById('divCaution').style.display = 'block';&lt;br /&gt;}&lt;br /&gt;} &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-1896291117527950802?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/1896291117527950802/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=1896291117527950802' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/1896291117527950802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/1896291117527950802'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2010/07/check-aspnet-page-if-valid-using.html' title='Check ASP.NET Page If Valid Using JavaScript'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-1277392060063547360</id><published>2009-05-30T11:42:00.002+03:00</published><updated>2009-05-30T12:05:14.042+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><title type='text'>Save As Word Document Script</title><content type='html'>The following JS code will save the inner text of an element like ‹Div id="&lt;strong&gt;Save&lt;/strong&gt;"›, the server must have Microsoft word installed on it and it works only on IE.&lt;br /&gt;&lt;br /&gt;function SaveAsWord()&lt;br /&gt;{&lt;br /&gt;var sp = document.getElementById("&lt;strong&gt;Save&lt;/strong&gt;");&lt;br /&gt;var docApp = new ActiveXObject("Word.Application");&lt;br /&gt;var doc = new ActiveXObject("Word.Document");&lt;br /&gt;doc.Application.Visible=false;&lt;br /&gt;doc.Content=sp.innerText;&lt;br /&gt;// Show Save Dialog&lt;br /&gt;doc.Save()&lt;br /&gt;doc.Application.Quit();&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-1277392060063547360?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/1277392060063547360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=1277392060063547360' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/1277392060063547360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/1277392060063547360'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/05/save-as-word-document-script.html' title='Save As Word Document Script'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-72658077247706041</id><published>2009-05-30T11:34:00.002+03:00</published><updated>2009-05-30T11:39:54.170+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><title type='text'>Add To Favorites Script</title><content type='html'>function AddToFavorites()&lt;br /&gt;{&lt;br /&gt;var &lt;strong&gt;url&lt;/strong&gt; = document.location.href;&lt;br /&gt;&lt;br /&gt;if (window.sidebar)&lt;br /&gt;{&lt;br /&gt;// Mozilla Firefox&lt;br /&gt;window.sidebar.addPanel(document.title, &lt;strong&gt;url&lt;/strong&gt; ,"");&lt;br /&gt;}&lt;br /&gt;else if( window.external )&lt;br /&gt;{&lt;br /&gt;// IE&lt;br /&gt;window.external.AddFavorite(&lt;strong&gt;url&lt;/strong&gt; , document.title);&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/5180564760369581660-72658077247706041?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/72658077247706041/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=72658077247706041' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/72658077247706041'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/72658077247706041'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/05/add-to-favorites-script.html' title='Add To Favorites Script'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-8491486247108687229</id><published>2009-03-21T02:50:00.006+02:00</published><updated>2009-03-21T03:03:52.307+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><category scheme='http://www.blogger.com/atom/ns#' term='Visual Studio'/><title type='text'>VSeWSS 1.3 (Mar 2009 CTP)</title><content type='html'>Visual Studio 2008 extensions for Windows SharePoint Services 3.0, v1.3 - Mar 2009 CTP&lt;br /&gt;&lt;br /&gt;The tools provide &lt;strong&gt;item&lt;/strong&gt; &lt;strong&gt;templates&lt;/strong&gt; for List Definition, List Definition from Content Type, Content Type, Field Control, Web Part, Module, Root File, Template, Event Receiver, and List Instance. It provides &lt;strong&gt;project templates&lt;/strong&gt; for Team Site Definition, Blank Site Definition, List Definition, Web Part and Empty. It works with Visual Basic .NET and C# languages and a comprehensive &lt;strong&gt;user guide is included&lt;/strong&gt;. It does not include the SharePoint Workflow templates as they are built in with Visual Studio 2008.&lt;br /&gt;&lt;br /&gt;&lt;div align="left"&gt;&lt;a target="blank" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=fb9d4b85-da2a-432e-91fb-d505199c49f6"&gt;&lt;strong&gt;&lt;span style="color:#000099;"&gt;Download&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-8491486247108687229?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/8491486247108687229/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=8491486247108687229' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/8491486247108687229'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/8491486247108687229'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/03/vsewss-13-mar-2009-ctp.html' title='VSeWSS 1.3 (Mar 2009 CTP)'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-1445493099713552851</id><published>2009-03-08T23:16:00.010+02:00</published><updated>2009-05-07T00:20:17.904+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Cross SharePoint Permission When Anonymouse Allowed</title><content type='html'>When Working With Anonymouse You Some Proplems in Permission The &lt;strong&gt;RunWithElevatedPrivileges&lt;/strong&gt; Method Allow You to Executes a specified Code or method with Full Control rights even if the user does not otherwise have Full Control&lt;br /&gt;&lt;br /&gt;SPSecurity.RunWithElevatedPrivileges(delegate()&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;//You Must Create SPSite Object and SPWeb Object Here&lt;br /&gt;&lt;br /&gt;// Add Your Code Here Like Add Item to SharePoint List&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/5180564760369581660-1445493099713552851?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/1445493099713552851/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=1445493099713552851' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/1445493099713552851'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/1445493099713552851'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/03/cross-sharepoint-permission-when.html' title='Cross SharePoint Permission When Anonymouse Allowed'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-3219330112750478782</id><published>2009-02-24T17:47:00.005+02:00</published><updated>2009-03-19T23:13:04.909+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>SharePoint PreSaveAction</title><content type='html'>&lt;strong&gt;You Can Use This Function to Execute any JavaScript Code in New or Edit Forms for any SharePoint List Before Saving (When Pressing OK button this Function will be Executed First)&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;You Can Use this Function For Validation without PostBack&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;PreSaveAction()&lt;br /&gt;{&lt;br /&gt;&lt;strong&gt;//Add Your JavaScript Code Here Then Return True Or False&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;return false; // Cancel the item save process&lt;br /&gt;&lt;br /&gt;return true; // OK to proceed with the save item&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-3219330112750478782?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/3219330112750478782/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=3219330112750478782' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/3219330112750478782'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/3219330112750478782'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/02/sharepoint-presaveaction.html' title='SharePoint PreSaveAction'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-8622435292192342092</id><published>2009-02-24T17:15:00.007+02:00</published><updated>2009-02-24T17:40:26.094+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>Get Value of any SharePoint Control</title><content type='html'>&lt;strong&gt;You can Get any Form Field Value By Using This JS Function&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;function getTagFromIdentifierAndTitle(&lt;strong&gt;TagName&lt;/strong&gt;, &lt;strong&gt;Identifier&lt;/strong&gt;, &lt;strong&gt;Title&lt;/strong&gt;)&lt;br /&gt;{&lt;br /&gt;var len = Identifier.length;&lt;br /&gt;var tags = document.getElementsByTagName(TagName);&lt;br /&gt;for (var i=0; i &lt; tags.length; i++)&lt;br /&gt;{&lt;br /&gt;var tempString = tags[i].id;&lt;br /&gt;if (tags[i].title == Title   &amp;amp;&amp;amp; (Identifier == ""  tempString.indexOf(Identifier) == tempString.length - len))&lt;br /&gt;{    return tags[i];   }&lt;br /&gt;}&lt;br /&gt;return null;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Ex:&lt;/strong&gt;&lt;br /&gt;   getTagFromIdentifierAndTitle(&lt;strong&gt;'input'&lt;/strong&gt;,&lt;strong&gt;'TextField'&lt;/strong&gt;, &lt;strong&gt;'Title'&lt;/strong&gt;).value&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-8622435292192342092?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/8622435292192342092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=8622435292192342092' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/8622435292192342092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/8622435292192342092'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/02/get-value-of-any-sharepoint-control.html' title='Get Value of any SharePoint Control'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-9044688508362493954</id><published>2009-02-23T17:49:00.005+02:00</published><updated>2009-02-23T17:59:33.561+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>SharePoint Site Backup and Restore Batch</title><content type='html'>Just copy backup part or restore part and past it in a new file then save it as *.bat&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Backup Batch&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Echo Site BackUp&lt;br /&gt;&lt;br /&gt;@SET STSADM="%CommonProgramFiles%\Microsoft Shared\web server extensions\12\BIN\stsadm.exe"&lt;br /&gt;&lt;br /&gt;pause&lt;br /&gt;&lt;br /&gt;%STSADM% -o backup -url http://localhost:2009/ -filename "&lt;strong&gt;FileName.bak&lt;/strong&gt;" -overwrite&lt;br /&gt;%STSADM% -o execadmsvcjobs&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Restore Batch&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Echo Restore Site&lt;br /&gt;&lt;br /&gt;@SET STSADM="%CommonProgramFiles%\Microsoft Shared\web server extensions\12\BIN\stsadm.exe"&lt;br /&gt;&lt;br /&gt;pause&lt;br /&gt;&lt;br /&gt;%STSADM% -o restore -url http://localhost:5000/ -filename "&lt;strong&gt;FileName.bak&lt;/strong&gt;" -overwrite&lt;br /&gt;%STSADM% -o execadmsvcjobs&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-9044688508362493954?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/9044688508362493954/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=9044688508362493954' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/9044688508362493954'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/9044688508362493954'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/02/sharepoint-site-backup-and-restore.html' title='SharePoint Site Backup and Restore Batch'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-8345005655285418965</id><published>2009-02-23T17:01:00.010+02:00</published><updated>2009-02-23T17:24:10.165+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>Sum Of List Column</title><content type='html'>&lt;img id="BLOGGER_PHOTO_ID_5306010100950396322" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 320px; CURSOR: hand; HEIGHT: 131px; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_5GXADWqet98/SaK8EwnIbaI/AAAAAAAAAB0/xbuEOZ3-uWA/s320/SumOfCol.gif" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt; xsl:value-of select="sum(/dsQueryResponse/Rows/Row/@&lt;strong&gt;ColumnName&lt;/strong&gt;)" /&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-8345005655285418965?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/8345005655285418965/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=8345005655285418965' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/8345005655285418965'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/8345005655285418965'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/02/sum-of-list-column.html' title='Sum Of List Column'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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://4.bp.blogspot.com/_5GXADWqet98/SaK8EwnIbaI/AAAAAAAAAB0/xbuEOZ3-uWA/s72-c/SumOfCol.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-3604547199353846057</id><published>2009-02-07T00:20:00.003+02:00</published><updated>2009-02-07T00:23:27.591+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>SharePoint Built-in JS Functions</title><content type='html'>//Get Current User ID&lt;br /&gt;_spUserId&lt;br /&gt;ex: alert(_spUserId);&lt;br /&gt;&lt;br /&gt;//Run JS Function on Page Load&lt;br /&gt;_spBodyOnLoadFunctionNames.push(' &lt;strong&gt;FunctionName&lt;/strong&gt; ');&lt;br /&gt;&lt;br /&gt;//First we must call the EnsureSetup method&lt;br /&gt;JSRequest.EnsureSetup();&lt;br /&gt;&lt;br /&gt;//Get a query string parameter called ItemId. i.e - "page.aspx?ItemId=11" will return 11&lt;br /&gt;itemId = JSRequest.QueryString["ItemId"];&lt;br /&gt;&lt;br /&gt;//Get the current page name. i.e - "default.aspx"&lt;br /&gt;itemId = JSRequest.FileName;&lt;br /&gt;&lt;br /&gt;//Get the current path name. i.e - "/doclib/default.aspx"&lt;br /&gt;itemId = JSRequest.PathName;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-3604547199353846057?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/3604547199353846057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=3604547199353846057' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/3604547199353846057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/3604547199353846057'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/02/sharepoint-built-in-js-functions.html' title='SharePoint Built-in JS Functions'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-7777728394323012409</id><published>2009-02-07T00:14:00.004+02:00</published><updated>2009-03-21T03:05:20.781+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>SharePoint RPC Protocol (URL Protocol)</title><content type='html'>//Get List items in XML format&lt;br /&gt;http://localhost/_vti_bin/owssvr.dll?XMLDATA=1&amp;amp;List={ &lt;strong&gt;ListDUID&lt;/strong&gt; }&lt;br /&gt;&lt;br /&gt;//Get List items where FieldName = Value in XML format&lt;br /&gt;http://localhost/_vti_bin/owssvr.dll?XMLDATA=1&amp;amp;List={ &lt;strong&gt;ListGUID&lt;/strong&gt; }&amp;amp;View={&lt;strong&gt; ViewGUID&lt;/strong&gt; }&amp;amp;FilterField1= &lt;strong&gt;FieldName&lt;/strong&gt; &amp;amp;FilterValue1= &lt;strong&gt;Value&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;you can try it in your browser and see the result&lt;br /&gt;&lt;br /&gt;&lt;a target="blank" href="http://msdn.microsoft.com/en-us/library/ms478653.aspx"&gt;For More &gt;&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-7777728394323012409?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/7777728394323012409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=7777728394323012409' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7777728394323012409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7777728394323012409'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2009/02/sharepoint-rpc-protocol-url-protocol.html' title='SharePoint RPC Protocol (URL Protocol)'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-9021461366759114459</id><published>2008-12-29T00:20:00.005+02:00</published><updated>2008-12-29T00:47:12.564+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>Displaying List Attachments in Custom List Forms</title><content type='html'>&lt;div&gt;Add this tage into your Custom List Forms &lt;/div&gt;&lt;br /&gt;&lt;div&gt;&amp;lt;SharePoint:AttachmentsField ControlMode="Display" FieldName="Attachments"&lt;br /&gt;runat="server" Visible="true"/&amp;gt;&lt;/div&gt;&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5284975890767901618" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 275px; CURSOR: hand; HEIGHT: 101px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_5GXADWqet98/SVgBkle5c7I/AAAAAAAAABs/miaeK3zoMfY/s320/Capture.JPG" border="0" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-9021461366759114459?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/9021461366759114459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=9021461366759114459' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/9021461366759114459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/9021461366759114459'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/12/displaying-list-attachments-in-custom.html' title='Displaying List Attachments in Custom List Forms'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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/_5GXADWqet98/SVgBkle5c7I/AAAAAAAAABs/miaeK3zoMfY/s72-c/Capture.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-5197443535761554272</id><published>2008-12-28T23:45:00.007+02:00</published><updated>2008-12-29T00:09:17.950+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>Change SharePoint Page Title</title><content type='html'>&lt;p&gt;&lt;strong&gt;Add the follwing content place holder in the top of your code if not exist&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;lt;asp:Content ContentPlaceHolderId="PlaceHolderPageTitle" runat="server"&amp;gt;&lt;br /&gt;&lt;/em&gt;&lt;br /&gt;&lt;strong&gt;Add Title here&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;&amp;lt;/asp:Content&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;You can get title dynamic by add any of this tags into "&lt;/strong&gt;PlaceHolderPageTitle&lt;strong&gt;"&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;em&gt;&amp;lt;SharePoint:ListProperty Property="Title" runat="server"/&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;SharePoint:ListItemProperty Property="Title" runat="server"/&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;SharePoint:ProjectProperty Property="Title" runat="server"/&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;SharePoint:ListFormPageTitle runat="server"/&amp;gt;&lt;/em&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-5197443535761554272?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/5197443535761554272/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=5197443535761554272' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/5197443535761554272'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/5197443535761554272'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/12/change-sharepoint-page-title.html' title='Change SharePoint Page Title'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-5783082868261060103</id><published>2008-12-15T01:21:00.006+02:00</published><updated>2008-12-15T01:55:12.227+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>HttpWatch</title><content type='html'>HttpWatch is an HTTP viewer and debugger that integrates with IE and Firefox to provide seamless HTTP and HTTPS monitoring without leaving the browser window.&lt;br /&gt;&lt;br /&gt;Change the way that you develop, debug and tune websites today!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5279798313122589954" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 320px; CURSOR: hand; HEIGHT: 290px; TEXT-ALIGN: center" alt="" src="http://3.bp.blogspot.com/_5GXADWqet98/SUWcl5tg7QI/AAAAAAAAAA0/zXOJm1mO2Iw/s320/ebay.jpg" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&gt;&gt; &lt;a href="http://httpwatch.com/httpwatch.exe"&gt;Download the FREE Basic Edition &lt;/a&gt;&lt;br /&gt;&gt;&gt; &lt;a href="http://httpwatch.com/" target="_blank"&gt;Web Site&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-5783082868261060103?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/5783082868261060103/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=5783082868261060103' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/5783082868261060103'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/5783082868261060103'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/12/httpwatch.html' title='HttpWatch'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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://3.bp.blogspot.com/_5GXADWqet98/SUWcl5tg7QI/AAAAAAAAAA0/zXOJm1mO2Iw/s72-c/ebay.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-7642754116939438832</id><published>2008-12-12T22:16:00.004+02:00</published><updated>2008-12-12T22:38:27.824+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='Visual Studio'/><title type='text'>Visual Studio 2008 كتاب خطوة بخطوة مع عالم</title><content type='html'>&lt;p align="center"&gt;كتاب رائع جداً جزا الله خيرا كل من ساهم في اتمام هذا الكتاب&lt;/p&gt;&lt;p align="center"&gt;&lt;a href="http://http//vb4arab.com/dotNet_2008.zip"&gt;&lt;img alt="" src="http://1.bp.blogspot.com/_5GXADWqet98/SULG_hnObPI/AAAAAAAAAAk/c6HKX5tVMw4/s320/vs2008s.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p align="center"&gt;&lt;a href="http://vb4arab.com/dotNet_2008.zip" target="_blank"&gt;&lt;strong&gt;تحميل الكتاب من هنا&lt;/strong&gt; &lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-7642754116939438832?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/7642754116939438832/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=7642754116939438832' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7642754116939438832'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7642754116939438832'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/12/visual-studio-2008.html' title='Visual Studio 2008 كتاب خطوة بخطوة مع عالم'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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/_5GXADWqet98/SULG_hnObPI/AAAAAAAAAAk/c6HKX5tVMw4/s72-c/vs2008s.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-8132938994943019187</id><published>2008-12-12T20:54:00.008+02:00</published><updated>2008-12-12T21:24:39.458+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><title type='text'>.NET University Course Materials</title><content type='html'>You are free to re-use this Material to Teach a Course.&lt;br /&gt;&lt;p align="center"&gt;&lt;a href="http://www.dotnet-u.com/coursematerials.aspx" target="_blank"&gt;&lt;img alt="" src="http://3.bp.blogspot.com/_5GXADWqet98/SUKz8M6au4I/AAAAAAAAAAU/xsuC4fUAthk/s320/dotnetu_logo.jpg" border="0" /&gt;&lt;/a&gt;&lt;/img&gt;&lt;/p&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;.NET 3.0 material&lt;/li&gt;&lt;br /&gt;&lt;li&gt;BizTalk Server material&lt;/li&gt;&lt;br /&gt;&lt;li&gt;SharePoint Fundamentals material&lt;/li&gt;&lt;br /&gt;&lt;li&gt;ASP.NET U material&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-8132938994943019187?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/8132938994943019187/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=8132938994943019187' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/8132938994943019187'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/8132938994943019187'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/12/net-university-course-materials.html' title='.NET University Course Materials'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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://3.bp.blogspot.com/_5GXADWqet98/SUKz8M6au4I/AAAAAAAAAAU/xsuC4fUAthk/s72-c/dotnetu_logo.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-5295757047022865976</id><published>2008-12-12T18:06:00.008+02:00</published><updated>2008-12-12T20:40:24.705+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><title type='text'>.NET Language Site</title><content type='html'>&lt;div align="center"&gt;This Site has almost all Information About all .NET Languages &lt;/div&gt;&lt;br /&gt;&lt;a href="http://www.dotnetlanguages.net/DNL/Resources.aspx" target="_blank"&gt;&lt;img style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 342px; CURSOR: hand; HEIGHT: 102px; TEXT-ALIGN: center" alt="" src="http://www.dotnetlanguages.net/DNL/Images/Title.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-5295757047022865976?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/5295757047022865976/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=5295757047022865976' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/5295757047022865976'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/5295757047022865976'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/12/net-language-site.html' title='.NET Language Site'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-3628016468730489592</id><published>2008-11-21T12:50:00.004+02:00</published><updated>2008-12-12T22:39:36.285+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><category scheme='http://www.blogger.com/atom/ns#' term='Visual Studio'/><title type='text'>SharePoint Development in Visual Studio 2010</title><content type='html'>The Visual Studio 2010 tools for SharePoint. Here's a quick summary of what he showed:&lt;br /&gt;- Server Explorer for SharePoint viewing Lists and other artifacts in SharePoint directly inside of Visual Studio.&lt;br /&gt;- Windows SharePoint Services Project (WSP file) Import to create a new solution.&lt;br /&gt;- Added a new web part project item and showed the Visual web part designer which loads a user control as a web part for SharePoint.&lt;br /&gt;- Showed adding an event receiver for SharePoint and using the wizard to choose the event receiver and to just create a source file with that event receiver.&lt;br /&gt;- Added an ASPX workflow initiation form to a workflow project and showed how this workflow initiation form has designer capability.&lt;br /&gt;- Showed the packaging explorer and the packaging editor which lets you structure the SharePoint features and WSP file that is created.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://mschnlnine.vo.llnwd.net/d1/ch9/1/1/1/3/4/4/SharepointDevWithVS2010.wmv" target="_blank"&gt;&gt;&gt; See This Video&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-3628016468730489592?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/3628016468730489592/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=3628016468730489592' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/3628016468730489592'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/3628016468730489592'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/11/sharepoint-development-in-visual-studio.html' title='SharePoint Development in Visual Studio 2010'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-7245267101907013747</id><published>2008-11-21T12:46:00.001+02:00</published><updated>2008-12-12T20:51:13.420+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SharePoint'/><title type='text'>Do Less Get More Develop on SharePoint</title><content type='html'>&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;Very&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;Good&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;Recourse&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;start&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;developing&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;in&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;WSS&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=25F9CC59-4EA3-4381-8B37-9430F664EAC6&amp;amp;displaylang=en" target="_blank"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;PPTs&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;and&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;Demos&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;for&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;Introductory&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_13"&gt;SharePoint&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_14"&gt;Developer&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_15"&gt;Modules&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B885DCE8-C93F-48AA-B798-4422FEBCC200&amp;amp;displaylang=en" target="_blank"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_16"&gt;Hands&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_17"&gt;on&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_18"&gt;Labs&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_19"&gt;for&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_20"&gt;Developing&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_21"&gt;Applications&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_22"&gt;on&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_23"&gt;Windows&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_24"&gt;SharePoint&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_25"&gt;Services&lt;/span&gt; 3.0&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/bb861877.aspx" target="_blank"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_26"&gt;Creating&lt;/span&gt; a &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_27"&gt;Basic&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_28"&gt;ASP&lt;/span&gt;.&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_29"&gt;NET&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_30"&gt;AJAX&lt;/span&gt;-&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_31"&gt;enabled&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_32"&gt;Web&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_33"&gt;Part&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1beeac6f-2ea1-4769-9948-74a74bd604fa&amp;amp;DisplayLang=en" target="_blank"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_34"&gt;Windows&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_35"&gt;SharePoint&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_36"&gt;Services&lt;/span&gt; 3.0 &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_37"&gt;SP&lt;/span&gt;1 &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_38"&gt;Developer&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_39"&gt;Evaluation&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_40"&gt;VPC&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_41"&gt;Image&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_42"&gt;containing&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_43"&gt;Windows&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_44"&gt;SharePoint&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_45"&gt;Services&lt;/span&gt; 3.0 &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_46"&gt;SP&lt;/span&gt;1, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_47"&gt;Visual&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_48"&gt;Studio&lt;/span&gt; 2008 &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_49"&gt;and&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_50"&gt;the&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_51"&gt;Visual&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_52"&gt;Studio&lt;/span&gt; 2008 &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_53"&gt;extensions&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_54"&gt;for&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_55"&gt;Windows&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_56"&gt;SharePoint&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_57"&gt;Services&lt;/span&gt; 3.0, v1.1 &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_58"&gt;for&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_59"&gt;use&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_60"&gt;with&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_61"&gt;Virtual&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_62"&gt;PC&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_63"&gt;or&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_64"&gt;Virtual&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_65"&gt;Server&lt;/span&gt; (&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_66"&gt;very&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_67"&gt;good&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_68"&gt;VM&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_69"&gt;have&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_70"&gt;all&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_71"&gt;what&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_72"&gt;you&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_73"&gt;want&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_74"&gt;to&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_75"&gt;develop&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_76"&gt;in&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_77"&gt;WSS&lt;/span&gt; 3.0)&lt;br /&gt;&lt;br /&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_78"&gt;Reference&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_79"&gt;Site&lt;/span&gt;:&lt;br /&gt;        &lt;a href="http://www.microsoft.com/click/SharePointDeveloper/" target="_blank"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_80"&gt;SharePoint&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_81"&gt;Developer&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_82"&gt;Site&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-7245267101907013747?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/7245267101907013747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=7245267101907013747' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7245267101907013747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7245267101907013747'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/11/do-less-get-more-develop-on-sharepoint.html' title='Do Less Get More Develop on SharePoint'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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-5180564760369581660.post-7592769084387979979</id><published>2008-10-24T01:42:00.007+02:00</published><updated>2008-12-12T22:40:26.144+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='Visual Studio'/><title type='text'>VS 2010 and .NET 4.0</title><content type='html'>&lt;img alt="" src="http://3.bp.blogspot.com/_5GXADWqet98/SUK9AL3eMvI/AAAAAAAAAAc/TDOizUQRPw4/s320/VS2010.jpg" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;&gt;&gt; &lt;a href="https://connect.microsoft.com/VisualStudio/content/content.aspx?ContentID=9790" target="_blank"&gt;You Can Download CPT From Here&lt;/a&gt; or &lt;a href="http://blogs.msdn.com/briankel/attachment/4801607.ashx" target="_blank"&gt;Here Direct Links&lt;/a&gt;&lt;br /&gt;&gt;&gt; &lt;a href="http://channel9.msdn.com/visualstudio/" target="_blank"&gt;See Visual Studio 2010 in Action&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-7592769084387979979?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/7592769084387979979/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=7592769084387979979' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7592769084387979979'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/7592769084387979979'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/10/visual-studio-2010-and-net-framework-40.html' title='VS 2010 and .NET 4.0'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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://3.bp.blogspot.com/_5GXADWqet98/SUK9AL3eMvI/AAAAAAAAAAc/TDOizUQRPw4/s72-c/VS2010.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5180564760369581660.post-691716733393205413</id><published>2008-10-15T01:29:00.004+02:00</published><updated>2008-12-12T22:00:13.623+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server'/><title type='text'>New Improvements in Management Studio SQL Server 2008</title><content type='html'>&lt;img style="WIDTH: 371px; HEIGHT: 82px" height="86" alt="" src="http://blogs.technet.com/blogfiles/dataplatforminsider/WindowsLiveWriter/SQLServergetsanewlogo_12C61/SQL08_h_rgb_2.jpg" width="386" border="0" /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Activity Monitor&lt;/li&gt;&lt;li&gt;Object Explorer Details&lt;/li&gt;&lt;li&gt;Object Search&lt;/li&gt;&lt;li&gt;Multi-Server Queries&lt;/li&gt;&lt;li&gt;Intellisense Added to the Query Editor&lt;/li&gt;&lt;li&gt;T-SQL Debugger Added to the Query Editor&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.simple-talk.com/sql/learn-sql-server/management-studio-improvements-in-sql-server-2008/" target="_blank"&gt;And See More&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;SQL Server 2008 Express is available in the following 3 editions : &lt;p class="MsoNormal"&gt;&lt;/p&gt;&lt;ol style="FONT-WEIGHT: bold"&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=58ce885d-508b-45c8-9fd3-118edd8e6fff&amp;amp;DisplayLang=en" target="_blank"&gt;SQL Server 2008 Express&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;a style="FONT-WEIGHT: bold" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=7522A683-4CB2-454E-B908-E805E9BD4E28&amp;amp;displaylang=en" target="_blank"&gt;SQL Server 2008 Express with Tools&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B5D1B8C3-FDA5-4508-B0D0-1311D670E336&amp;amp;displaylang=en" target="_blank"&gt;SQL Server 2008 Express with Advanced Services&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;Help Files&lt;br /&gt;&lt;p class="MsoListParagraph" style="TEXT-INDENT: -0.25in"&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=765433F7-0983-4D7A-B628-0A98145BCB97&amp;amp;displaylang=en" target="_blank"&gt;&lt;/a&gt;&lt;p class="MsoListParagraph" style="TEXT-INDENT: -0.25in"&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="FONT-WEIGHT: bold"&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=765433F7-0983-4D7A-B628-0A98145BCB97&amp;amp;displaylang=en" target="_blank"&gt;SQL Server 2008 - Books Online&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5180564760369581660-691716733393205413?l=wael-abbas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://wael-abbas.blogspot.com/feeds/691716733393205413/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5180564760369581660&amp;postID=691716733393205413' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/691716733393205413'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5180564760369581660/posts/default/691716733393205413'/><link rel='alternate' type='text/html' href='http://wael-abbas.blogspot.com/2008/10/new-improvements-in-management-studio.html' title='New Improvements in Management Studio SQL Server 2008'/><author><name>Wael Abbas</name><uri>http://www.blogger.com/profile/16313389227262411477</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>
