<?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-1882260060862071770</id><updated>2012-02-16T06:44:14.495-08:00</updated><category term='ASP.Net Menu Control'/><category term='Databse Driven Menu in ASP.NET 3.5'/><category term='Dynamic Menu'/><category term='SQL Server Administration'/><category term='MX Records'/><category term='Google Apps Mail'/><title type='text'>Rehman Gull</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://rehmangull.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1882260060862071770/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://rehmangull.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Rehman Gull</name><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>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1882260060862071770.post-8129734339818895604</id><published>2010-02-03T02:39:00.000-08:00</published><updated>2010-02-03T05:31:48.276-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Databse Driven Menu in ASP.NET 3.5'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.Net Menu Control'/><category scheme='http://www.blogger.com/atom/ns#' term='Dynamic Menu'/><title type='text'>How to create Dynamic Menu in ASP.NET 3.5</title><content type='html'>&lt;span id="abstractLabel"&gt;I find a very good article about &lt;/span&gt;&lt;span id="abstractLabel"&gt; how to create a database driven hierarchical menu with only a few lines of code using ASP.NET 3.5.  &lt;/span&gt;This is a tutorial with &lt;span id="abstractLabel"&gt;powerful and flexible design&lt;/span&gt;.&lt;br /&gt;&lt;a href="http://aspalliance.com/822"&gt;Here it is!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span id="abstractLabel"&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/1882260060862071770-8129734339818895604?l=rehmangull.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rehmangull.blogspot.com/feeds/8129734339818895604/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://rehmangull.blogspot.com/2010/02/how-to-create-dynamic-menu-in-aspnet-35.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1882260060862071770/posts/default/8129734339818895604'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1882260060862071770/posts/default/8129734339818895604'/><link rel='alternate' type='text/html' href='http://rehmangull.blogspot.com/2010/02/how-to-create-dynamic-menu-in-aspnet-35.html' title='How to create Dynamic Menu in ASP.NET 3.5'/><author><name>Rehman Gull</name><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-1882260060862071770.post-4587699624424958967</id><published>2009-07-27T06:03:00.000-07:00</published><updated>2009-07-27T06:05:42.704-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server Administration'/><title type='text'>Copy a table from one database to another in SQL Server 2005</title><content type='html'>If you have a table in a database and you would like to copy the table to another database, use this query:&lt;br /&gt;&lt;br /&gt;SELECT * INTO AdventureWorks.dbo.CustomersTemp FROM Northwind.dbo.Customers&lt;br /&gt;&lt;br /&gt;Just remember that using this query will only transfer the schema and data. It does not transfer the indexes, foreign keys, statistics etc.&lt;br /&gt;&lt;br /&gt;If you want to transfer all the objects from one database to another, open Sql Server Management Studio &gt; Right click on your database &gt; All Tasks &gt; Generate SQL Scripts. Then run these scripts against the new database.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Transfer both schema and data&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;To copy both data and schema, use the &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&amp;amp;displaylang=en"&gt;Microsoft SQL Server Database Publishing Wizard 1.1.&lt;/a&gt; This tool works for both SQL 2000 and SQL 2005 and generates a single SQL script file which can be used to recreate a database (both schema and data).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1882260060862071770-4587699624424958967?l=rehmangull.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rehmangull.blogspot.com/feeds/4587699624424958967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://rehmangull.blogspot.com/2009/07/copy-table-from-one-database-to-another.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1882260060862071770/posts/default/4587699624424958967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1882260060862071770/posts/default/4587699624424958967'/><link rel='alternate' type='text/html' href='http://rehmangull.blogspot.com/2009/07/copy-table-from-one-database-to-another.html' title='Copy a table from one database to another in SQL Server 2005'/><author><name>Rehman Gull</name><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-1882260060862071770.post-1350790227390876620</id><published>2009-05-27T00:34:00.000-07:00</published><updated>2009-05-27T00:35:45.571-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MX Records'/><category scheme='http://www.blogger.com/atom/ns#' term='Google Apps Mail'/><title type='text'>How to modify your MX records for Google Apps Mail / Gmail?</title><content type='html'>Once you sign up your domain for &lt;a href="http://www.google.com/apps/" target="_blank"&gt;Google Apps&lt;/a&gt;, you will have to change the MX records for your domain in order to use it in Gmail.&lt;br /&gt;&lt;br /&gt;If you are using cPanel, this can be easily done by using the &lt;strong&gt;MX Entry&lt;/strong&gt; option. There find the domain you will be pointing to Google Apps Mail and delete all of its MX records.&lt;br /&gt;&lt;br /&gt;Then add the following MX records with the corresponding priority for your domain:&lt;br /&gt;&lt;br /&gt;Priority: 1    to: ASPMX.L.GOOGLE.COM&lt;br /&gt;&lt;br /&gt;Priority: 2    to: ALT1.ASPMX.L.GOOGLE.COM&lt;br /&gt;&lt;br /&gt;Priority: 3    to: ALT2.ASPMX.L.GOOGLE.COM&lt;br /&gt;&lt;br /&gt;Priority: 4   to: ASPMX2.GOOGLEMAIL.COM&lt;br /&gt;&lt;br /&gt;Priority: 5   to: ASPMX3.GOOGLEMAIL.COM&lt;br /&gt;&lt;br /&gt;Priority: 6   to: ASPMX4.GOOGLEMAIL.COM&lt;br /&gt;&lt;br /&gt;Priority: 7   to: ASPMX5.GOOGLEMAIL.COM&lt;br /&gt;&lt;br /&gt;The above instructions are in full compliance with the official Google Apps instructions and have been adapted to work with cPanel. They will &lt;strong&gt;require 24 hours&lt;/strong&gt; to propagate and take effect. After that your mail will be handled exclusively by Google Apps Mail.&lt;br /&gt;&lt;br /&gt;If your host does not use cPanel, you will have to find another way to change the MX records to Gmail. Still, the changes will be very similar to the above and the DNS records will be the same.&lt;br /&gt;&lt;br /&gt;Gmail has proven to provide the best mail experience even to the most demanding users. That's why all web hosts should provide easy means to change the MX records to Gmail.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1882260060862071770-1350790227390876620?l=rehmangull.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rehmangull.blogspot.com/feeds/1350790227390876620/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://rehmangull.blogspot.com/2009/05/how-to-modify-your-mx-records-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1882260060862071770/posts/default/1350790227390876620'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1882260060862071770/posts/default/1350790227390876620'/><link rel='alternate' type='text/html' href='http://rehmangull.blogspot.com/2009/05/how-to-modify-your-mx-records-for.html' title='How to modify your MX records for Google Apps Mail / Gmail?'/><author><name>Rehman Gull</name><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>
