<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>aspx Tutorial</title>
    <description>.NET Articles,jQuery demo, asp.net with jQuery, online tutorial,Jquery, SilverLight, Javascript, asp.net,JSON, MVC,.NET Articles,demo, Web Services, .NET articles, Sharepoint 2010, visual studio 2010,Aamir Hasan,IT, Building Your First Web Application Project</description>
    <link>http://www.aspxtutorial.com/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>dotnetplace.com AamirHasan</generator>
    <language>en-GB</language>
    <blogChannel:blogRoll>http://www.aspxtutorial.com/opml.axd</blogChannel:blogRoll>
    <blogChannel:blink>http://www.aspxtutorial.com/syndication.axd</blogChannel:blink>
    <dc:creator>Aamir Hasan</dc:creator>
    <dc:title>aspx Tutorial</dc:title>
    <geo:lat>0.000000</geo:lat>
    <geo:long>0.000000</geo:long>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/AspxTutorial" /><feedburner:info uri="aspxtutorial" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><itunes:explicit>no</itunes:explicit><itunes:subtitle>.NET Articles,jQuery demo, asp.net with jQuery, online tutorial,Jquery, SilverLight, Javascript, asp.net,JSON, MVC,.NET Articles,demo, Web Services, .NET articles, Sharepoint 2010, visual studio 2010,Aamir Hasan,IT, Building Your First Web Application Pro</itunes:subtitle><feedburner:browserFriendly></feedburner:browserFriendly><item>
      <title>Difference Temp Table and Table Variable</title>
      <description>&lt;h4&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Table Variables:&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;Table Variables was introduced in MS SQL Server 2000, the syntax for creating a Table Variables is @.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;There are some characteristic of Table variable&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Table variable will generally use less resource&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Table variables cannot have Non-Clustered Indexes&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Can&amp;rsquo;t &amp;nbsp;create constraints in table variables&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Can&amp;rsquo;t &amp;nbsp;create default values on table variable columns&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;The table variables exist only in the same scope as variables.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Table variables are good in performance as compared to temporary tables.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;Step 1:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;First, Declare a table named @EMP&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;DECLARE&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; @EMP &lt;span style="color: blue;"&gt;TABLE&lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;EMP_ID &lt;/span&gt;&lt;span style="color: blue;"&gt;INT&lt;/span&gt;&lt;span style="color: blue;"&gt;PRIMARY&lt;/span&gt;&lt;span style="color: blue;"&gt;KEY&lt;/span&gt;&lt;span style="color: gray;"&gt;,&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;EMPNAME &lt;/span&gt;&lt;span style="color: blue;"&gt;VARCHAR&lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;150&lt;/span&gt;&lt;span style="color: gray;"&gt;),&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;DEPARMENT &lt;/span&gt;&lt;span style="color: blue;"&gt;VARCHAR&lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;150&lt;/span&gt;&lt;span style="color: gray;"&gt;))&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;Step 2:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;Insert some values in @EMP Table variable&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;INSERT&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; &lt;span style="color: blue;"&gt;INTO&lt;/span&gt; @EMP &lt;span style="color: blue;"&gt;VALUES &lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt; 1&lt;span style="color: gray;"&gt;,&lt;/span&gt; &lt;span style="color: red;"&gt;'HASEEB'&lt;/span&gt;&lt;span style="color: gray;"&gt;,&lt;/span&gt;&lt;span style="color: red;"&gt;'COMPUTER-SCIENCE'&lt;/span&gt;&lt;span style="color: gray;"&gt;);&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;INSERT&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; &lt;span style="color: blue;"&gt;INTO&lt;/span&gt; @EMP &lt;span style="color: blue;"&gt;VALUES &lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt; 2&lt;span style="color: gray;"&gt;,&lt;/span&gt; &lt;span style="color: red;"&gt;'AAMIR'&lt;/span&gt;&lt;span style="color: gray;"&gt;,&lt;/span&gt;&lt;span style="color: red;"&gt;'PHYSICS'&lt;/span&gt;&lt;span style="color: gray;"&gt;);&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;INSERT&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; &lt;span style="color: blue;"&gt;INTO&lt;/span&gt; @EMP &lt;span style="color: blue;"&gt;VALUES &lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt; 3&lt;span style="color: gray;"&gt;,&lt;/span&gt; &lt;span style="color: red;"&gt;'MOHIB'&lt;/span&gt;&lt;span style="color: gray;"&gt;,&lt;/span&gt;&lt;span style="color: red;"&gt;'BUSINESS ADMINISTRATION'&lt;/span&gt;&lt;span style="color: gray;"&gt;);&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="background-position: initial initial; background-repeat: initial initial;"&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;&lt;strong style="color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;"&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;Step 3:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;SELECT&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; &lt;span style="color: gray;"&gt;*&lt;/span&gt; &lt;span style="color: blue;"&gt;FROM&lt;/span&gt; @EMP&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="background-position: initial initial; background-repeat: initial initial;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;h4 style="font-size: 10px;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;Output&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2013%2f6%2fAamirHasan-SQL-Table_01.png" alt="" /&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Temporary Tables&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;It acts as physical tables, indexes (Non-Clustered/ clustered) and statistics are also created on temporary tables. &amp;nbsp;It has (DDL) statements which acts as temp tables to add constraints, referential integrity, and defaults such as PK and FK.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;There are some characteristic of Temporary Tables&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Temporary table will generally use higher resource&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Temporary table can have Non-Clustered Indexes&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Can &amp;nbsp;create constraints in Temporary table&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Can &amp;nbsp;create default values on Temporary table&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Temporary tables are not visible in inner stored procedures and in EXEC statements.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Temporary table are bad in performance as compared to Table variables.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;Let&amp;rsquo;s, Create a Temporary table named as #EMP.&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;CREATE&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; &lt;span style="color: blue;"&gt;TABLE&lt;/span&gt; #EMP&lt;span style="color: blue;"&gt;&amp;nbsp; &lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;EMP_ID &lt;/span&gt;&lt;span style="color: blue;"&gt;INT&lt;/span&gt;&lt;span style="color: blue;"&gt;PRIMARY&lt;/span&gt;&lt;span style="color: blue;"&gt;KEY&lt;/span&gt;&lt;span style="color: gray;"&gt;,&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;EMPNAME &lt;/span&gt;&lt;span style="color: blue;"&gt;VARCHAR&lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;50&lt;/span&gt;&lt;span style="color: gray;"&gt;),&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;DEPARMENT &lt;/span&gt;&lt;span style="color: blue;"&gt;VARCHAR&lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt;&lt;span style="font-family: 'Courier New'; font-size: 10pt;"&gt;50&lt;/span&gt;&lt;span style="color: gray;"&gt;)&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: gray; mso-no-proof: yes;"&gt;)&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;strong&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;Step 2:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;Insert some values in #EMP Table variable&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt;"&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;INSERT&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; &lt;span style="color: blue;"&gt;INTO&lt;/span&gt; #EMP &lt;span style="color: blue;"&gt;VALUES &lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt; 1&lt;span style="color: gray;"&gt;,&lt;/span&gt; &lt;span style="color: red;"&gt;'HASEEB'&lt;/span&gt;&lt;span style="color: gray;"&gt;,&lt;/span&gt;&lt;span style="color: red;"&gt;'COMPUTER-SCIENCE'&lt;/span&gt;&lt;span style="color: gray;"&gt;);&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;INSERT&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; &lt;span style="color: blue;"&gt;INTO&lt;/span&gt; #EMP &lt;span style="color: blue;"&gt;VALUES &lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt; 2&lt;span style="color: gray;"&gt;,&lt;/span&gt; &lt;span style="color: red;"&gt;'AAMIR'&lt;/span&gt;&lt;span style="color: gray;"&gt;,&lt;/span&gt;&lt;span style="color: red;"&gt;'PHYSICS'&lt;/span&gt;&lt;span style="color: gray;"&gt;);&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;INSERT&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; &lt;span style="color: blue;"&gt;INTO&lt;/span&gt; #EMP &lt;span style="color: blue;"&gt;VALUES &lt;/span&gt;&lt;span style="color: gray;"&gt;(&lt;/span&gt; 3&lt;span style="color: gray;"&gt;,&lt;/span&gt; &lt;span style="color: red;"&gt;'MOHIB'&lt;/span&gt;&lt;span style="color: gray;"&gt;,&lt;/span&gt;&lt;span style="color: red;"&gt;'BUSINESS ADMINISTRATION'&lt;/span&gt;&lt;span style="color: gray;"&gt;);&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;strong&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;Step 3:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; mso-no-proof: yes;"&gt;SELECT&lt;/span&gt;&lt;span style="font-size: 10.0pt; font-family: 'Courier New'; mso-no-proof: yes;"&gt; &lt;span style="color: gray;"&gt;*&lt;/span&gt; &lt;span style="color: blue;"&gt;FROM&lt;/span&gt; #EMP&lt;/span&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;Output&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2013%2f6%2fAamirHasan-SQL-Table_02.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva; color: #ff0000;"&gt;&lt;strong&gt;Note:&lt;/strong&gt; &amp;nbsp;You must have to drop temporary table otherwise you cannot create a temporary with same name again&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2013%2f6%2fAamirHasan-SQL-Table_03.png" alt="" /&gt;&amp;nbsp;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2013/06/06/Difference-Temp-Table-and-Table-Variable.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2013/06/06/Difference-Temp-Table-and-Table-Variable.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=67192780-60b8-4500-abee-23199e2dcb95</guid>
      <pubDate>Thu, 06 Jun 2013 18:04:00 -1200</pubDate>
      <category>All</category>
      <category>SQL 2008</category>
      <category>SQL 2012</category>
      <dc:publisher>Haseeb</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=67192780-60b8-4500-abee-23199e2dcb95</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=67192780-60b8-4500-abee-23199e2dcb95</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2013/06/06/Difference-Temp-Table-and-Table-Variable.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=67192780-60b8-4500-abee-23199e2dcb95</wfw:commentRss>
    </item>
    <item>
      <title>Hide/ Show tabs in Dynamic CRM 2011 using JavaScript</title>
      <description>&lt;p&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;This example demonstrate how to hide/show tabs in Dynamic CRM 2011 using JavaScript.&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;By using &lt;strong&gt;Xrm.Page.ui.tabs&lt;/strong&gt; you can get all tabs in the current page.&lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Syntax&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Xrm.Page.ui.tabs.get(&lt;span style="color: #a31515; font-family: Verdana, sans-serif;"&gt;"TAB NAME"&lt;/span&gt;).setVisible(&lt;span style="color: #0000ff; font-family: Verdana, sans-serif;"&gt;false&lt;/span&gt;/&lt;span style="color: #0000ff; font-family: Verdana, sans-serif;"&gt;true&lt;/span&gt;);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;&lt;strong&gt;setVisible&lt;/strong&gt; method will hide/ show tab by entering Boolean value&lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Hide Tab&lt;/span&gt;&lt;/h4&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;Xrm.Page.ui.tabs.get(&lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif; color: #a31515;"&gt;"TAB NAME"&lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;).setVisible(&lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif; color: blue;"&gt;false&lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;);&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-family: verdana, geneva; font-size: small;"&gt;Show Tab&lt;/span&gt;&lt;/h4&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;Xrm.Page.ui.tabs.get(&lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif; color: #a31515;"&gt;"TAB NAME"&lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;).setVisible(&lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif; color: blue;"&gt;true&lt;/span&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;);&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2013%2f6%2fDynamic-CRM-2011_tabs.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong style="color: #ff0000; font-family: verdana, geneva; font-size: small;"&gt;Note:&lt;/strong&gt;&lt;span style="color: #ff0000; font-family: verdana, geneva; font-size: small;"&gt;&amp;nbsp;You will get error when you will run tabObj.setVisible(false) twice.&lt;/span&gt;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2013/06/04/Hide-Show-tabs-in-Dynamic-CRM-2011-using-JavaScript.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2013/06/04/Hide-Show-tabs-in-Dynamic-CRM-2011-using-JavaScript.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=0cc34dc3-ba9e-40db-a324-5aa7170bcdd9</guid>
      <pubDate>Tue, 04 Jun 2013 00:00:00 -1200</pubDate>
      <category>All</category>
      <category>Dynamic CRM</category>
      <dc:publisher>AamirHasan</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=0cc34dc3-ba9e-40db-a324-5aa7170bcdd9</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=0cc34dc3-ba9e-40db-a324-5aa7170bcdd9</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2013/06/04/Hide-Show-tabs-in-Dynamic-CRM-2011-using-JavaScript.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=0cc34dc3-ba9e-40db-a324-5aa7170bcdd9</wfw:commentRss>
    </item>
    <item>
      <title>Sign in as a Different User in SharePoint 2013   </title>
      <description>&lt;p&gt;&lt;span style="font-family: arial, helvetica, sans-serif; font-size: small;"&gt;In Sharepoint 2013,Sign in as &amp;nbsp;a different user is missing from dropdown menu, I got this problem when i was working on Sharepoint 2013 web site to sign in as different user to check the rights. This problem occurs for developers those are testing the application with different users. When user authentication session is created and redirect to Sharepoint 2013 site. Next time this will automatically redirected to Sharepoint 2013 site. But if user is using form based Authentication the default sign in page will be display for credentials.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: medium; font-family: arial, helvetica, sans-serif;"&gt;Solution 1:&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: arial, helvetica, sans-serif;"&gt;You can directly past the following link in your browser to login as different user.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: small; font-family: arial, helvetica, sans-serif;"&gt;http://&lt;span style="color: #ff6600;"&gt;&lt;span style="color: #ff0000;"&gt;&amp;lt;site url&amp;gt;:port&lt;/span&gt;&lt;/span&gt;/_layouts/closeConnection.aspx?loginasanotheruser=true&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: arial, helvetica, sans-serif;"&gt;You will see the authentication dialog box as shown&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2013%2f5%2fSharepoint2013-authentication_1.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: arial, helvetica, sans-serif; color: #ff0000;"&gt;Note: You can also add a hyperlink url&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="font-size: medium; font-family: arial, helvetica, sans-serif;"&gt;Solution 2:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;span style="font-family: arial, helvetica, sans-serif; font-size: small;"&gt;You can directly add &amp;ldquo;Sign in as different user&amp;rdquo; option in drop down menu. to add &amp;nbsp;"Sign In different User " &amp;nbsp;item in drop down menu. Let&amp;rsquo;s start.&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2013%2f5%2fSharepoint2013-authentication_users1.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: arial, helvetica, sans-serif; font-size: small;"&gt;Locate the Welcome.ascx user control &amp;nbsp;and Open in a text editor.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2013%2f5%2fSharepoint2013-authentication_location_1.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: arial, helvetica, sans-serif; font-size: small;"&gt;Add the following element before sign out element item.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2013%2f5%2fSharepoint2013-authentication_menutiem.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: arial, helvetica, sans-serif; color: #ff0000;"&gt;If you have alternative solution, Please comments here to share with us.&lt;/span&gt;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2013/05/02/Sign-in-as-a-Different-User-in-SharePoint-2013-.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2013/05/02/Sign-in-as-a-Different-User-in-SharePoint-2013-.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=56d6bcf1-839c-4292-9753-8ff5b4f5e85f</guid>
      <pubDate>Thu, 02 May 2013 22:20:00 -1200</pubDate>
      <category>All</category>
      <category>Sharepoint 2010</category>
      <category>Sharepoint 2013</category>
      <dc:publisher>AamirHasan</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=56d6bcf1-839c-4292-9753-8ff5b4f5e85f</pingback:target>
      <slash:comments>4</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=56d6bcf1-839c-4292-9753-8ff5b4f5e85f</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2013/05/02/Sign-in-as-a-Different-User-in-SharePoint-2013-.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=56d6bcf1-839c-4292-9753-8ff5b4f5e85f</wfw:commentRss>
    </item>
    <item>
      <title>Microsoft Dynamics CRM 2011 SDK Now Available</title>
      <description>&lt;p&gt;&lt;span style="font-size: small; font-family: Verdana; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;"&gt;Microsoft has released the latest SDK 5.0.15 for CRM 2011 on date March 27, 2013.The documentation in the SDK contains information for developers server side code, custom business logic, integration modules, workflow assemblies, and plug-ins.&lt;/span&gt;&lt;/p&gt;
&lt;p style="line-height: 1.15; margin-top: 0pt; margin-bottom: 0pt;" dir="ltr"&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-family: Verdana; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;"&gt;Download the&lt;/span&gt;&lt;a style="text-decoration: none;" href="http://www.microsoft.com/en-pk/download/details.aspx?id=24004"&gt;&lt;span style="font-family: Verdana; color: #1155cc; background-color: transparent; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;"&gt; Microsoft Dynamics 2011 CRM SDK&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family: Verdana; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;&lt;span style="font-size: 15px; font-family: Verdana; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;p&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2013%2f4%2fDownload-Free-Dynamics-CRM-Server-2011-RTM-h2.jpg" alt="" /&gt;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2013/04/29/Microsoft-Dynamics-CRM-2011-SDK-Now-Available.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2013/04/29/Microsoft-Dynamics-CRM-2011-SDK-Now-Available.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=b307c776-ab7f-46df-ba86-eea557e96b5a</guid>
      <pubDate>Mon, 29 Apr 2013 19:13:00 -1200</pubDate>
      <category>All</category>
      <category>Dynamic CRM</category>
      <dc:publisher>AamirHasan</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=b307c776-ab7f-46df-ba86-eea557e96b5a</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=b307c776-ab7f-46df-ba86-eea557e96b5a</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2013/04/29/Microsoft-Dynamics-CRM-2011-SDK-Now-Available.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=b307c776-ab7f-46df-ba86-eea557e96b5a</wfw:commentRss>
    </item>
    <item>
      <title>Microsoft Dynamics CRM 2011 Unleashed Book</title>
      <description>&lt;p&gt;&lt;span style="font-size: small;"&gt;I have found Microsoft Dynamic CRM 2011 unleashed book for those people who started working on it. This book will guide you Planning, customizing, deployment, integration. This book also covered integration with azure cloud services.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;strong&gt;&lt;span style="font-size: small;"&gt;This book contains following table of contents.&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;Chapter 1. New Features of Microsoft Dynamics CRM 2011&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 2. Why Business Needs a CRM System&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 3. Requirements for CRM 2011&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 4. Setting Up CRM 2011&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 5. Working with the Ribbon Menu&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 6. Working with Customers&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 7. Working with the Workplace&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 8. Working with Sales&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 9. Working with Marketing&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 10. Working with Service&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 11. Reporting&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 12. Settings and Configuration&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 13. Client Configuration Options&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 14. E-Mail Configuration&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 15. Mobility&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 16. Solution Concepts&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 17. CRM 2011 SharePoint Integration&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 18. Azure Extensions&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 19. Advanced Views and Connections&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 20. Filtered Lookups&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 21. Reporting and Dashboards&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 22. Forms Authentication&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 23. Customizing Entities&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 24. Processes Development&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 25. Plug-Ins&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 26. Web Services&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 27. Advanced Solution Management&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 28. Interacting with Custom Web Applications&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 29. Data Management&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: small;"&gt;Chapter 30. CRM 2011 and Scribe Online Services&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"&gt;&lt;span style="font-size: small; font-family: 'Arial','sans-serif';"&gt;&lt;a href="http://www.amazon.com/Microsoft-Dynamics-CRM-2011-Unleashed/dp/0672335387" target="_blank"&gt;Buy Microsoft Dynamics CRM 2011 Unleashed Book&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="font-size: 10px; float: left; margin: 5px;" src="http://www.aspxtutorial.com/image.axd?picture=2013%2f4%2fDynamic+CRM+1.jpg" alt="" /&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"&gt;&amp;nbsp;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2013/04/02/Microsoft-Dynamics-CRM-2011-Unleashed-Book.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2013/04/02/Microsoft-Dynamics-CRM-2011-Unleashed-Book.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=31455091-073d-4e2a-8cd3-4305f3a0573a</guid>
      <pubDate>Tue, 02 Apr 2013 06:35:00 -1200</pubDate>
      <category>All</category>
      <category>Dynamic CRM</category>
      <dc:publisher>AamirHasan</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=31455091-073d-4e2a-8cd3-4305f3a0573a</pingback:target>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=31455091-073d-4e2a-8cd3-4305f3a0573a</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2013/04/02/Microsoft-Dynamics-CRM-2011-Unleashed-Book.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=31455091-073d-4e2a-8cd3-4305f3a0573a</wfw:commentRss>
    </item>
    <item>
      <title>How to change TCP/IP port for SQL Server 2008 and 2012</title>
      <description>&lt;div&gt;
&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-size: small;"&gt;By Default, SQL Server listens on port 1433. You can change TCP/IP by applying simple steps mentioned below.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-size: small;"&gt;Open SQL Server Configuration Manager.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-size: small;"&gt;Expand SQL Server Network Configuration&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-size: small;"&gt;Click on Protocols for MSSQLSERVER (&lt;em&gt;&amp;lt;instance name&amp;gt;&lt;/em&gt;)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-size: small;"&gt;Right click on TCP IP Protocol and select Properties&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p class="MsoNormal" style="padding-left: 60px;"&gt;&lt;span style="font-size: small;"&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2012%2f11%2fAamirHasan-sqlserver-configuration_1.png" alt="" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-size: small;"&gt;Click on IP Addresses tag and change TCP Port for IP listening.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p class="MsoNormal" style="padding-left: 60px;"&gt;&lt;span style="font-size: small;"&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2012%2f11%2fAamirHasan-sqlserver-configuration_2.png" alt="" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-size: small;"&gt;Restart your SQL Server (&amp;lt;instance name&amp;gt;)&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2012/11/05/How-to-change-TCPIP-port-for-SQL-Server-2008-and-2012.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2012/11/05/How-to-change-TCPIP-port-for-SQL-Server-2008-and-2012.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=b44204c3-ec39-4575-b06e-7dc943b0f9c1</guid>
      <pubDate>Mon, 05 Nov 2012 22:23:00 -1200</pubDate>
      <category>All</category>
      <category>MS SQL</category>
      <category>SQL 2012</category>
      <dc:publisher>AamirHasan</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=b44204c3-ec39-4575-b06e-7dc943b0f9c1</pingback:target>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=b44204c3-ec39-4575-b06e-7dc943b0f9c1</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2012/11/05/How-to-change-TCPIP-port-for-SQL-Server-2008-and-2012.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=b44204c3-ec39-4575-b06e-7dc943b0f9c1</wfw:commentRss>
    </item>
    <item>
      <title>How to handle runtime exceptions in java script</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;In this example, you will see how to handle runtime error on client side using java script.&amp;nbsp;Why we need to add try catch in our java script function because to avoid syntax error, a&amp;nbsp;logical error, a read/write error and client error.&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;!&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;DOCTYPE &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;html&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;html&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;head&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; runat&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="server"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;title&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;title&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;script&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; type&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="text/javascript"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;function&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; calc() {&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;try&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; {&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;var&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; i = 1 / 0;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;document.getElementById(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;'msg'&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;).innerHTML = i;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;} &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;catch&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; (e) {&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;document.getElementById(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;'msg'&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;).innerHTML = &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"Error"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; + e.message;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;script&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;head&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;body&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;form &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="form1"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; runat&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="server"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;input&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; type&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="button" &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;value&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="Click"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; onclick&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;calc();&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;/&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;i/0 = &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="msg"&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;form&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;body&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-size: 9.5pt; line-height: 115%; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; line-height: 115%; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;html&lt;/span&gt;&lt;span style="font-size: 9.5pt; line-height: 115%; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;In above example, divided by zero will always give exception undefined. I have put the operation in try catch which will throw exception.&lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Output&lt;/span&gt;&lt;/h4&gt;
&lt;h4&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2012%2f10%2fAamirhasan-trycatch_javascript_1.png" alt="" /&gt;&lt;/h4&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Download&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;See live &lt;a href="http://www.aspxtutorial.com/demo/asp.net/try-catch.aspx" target="_blank"&gt;demo&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2012/10/18/How-to-handle-runtime-exceptions-in-java-script.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2012/10/18/How-to-handle-runtime-exceptions-in-java-script.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=e048ef6b-67fa-4546-82c0-8915aa1f3e00</guid>
      <pubDate>Thu, 18 Oct 2012 02:52:00 -1200</pubDate>
      <category>All</category>
      <category>Javascript</category>
      <dc:publisher>AamirHasan</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=e048ef6b-67fa-4546-82c0-8915aa1f3e00</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=e048ef6b-67fa-4546-82c0-8915aa1f3e00</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2012/10/18/How-to-handle-runtime-exceptions-in-java-script.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=e048ef6b-67fa-4546-82c0-8915aa1f3e00</wfw:commentRss>
    </item>
    <item>
      <title>Drag and drop items from one list to another using jQuery UI plugin</title>
      <description>&lt;p&gt;&lt;span style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: small; font-family: 'Verdana','sans-serif'; font-weight: normal;"&gt;In this example, you will see how to drag and drop items from one list to another list using jQuery UI plugin. Jquery UI plugin provides Sortable method, by using this method you can drag and drop items from one list to another. Let&amp;rsquo;s start.&lt;/span&gt;&lt;/span&gt; &lt;span style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: small; font-family: 'Verdana','sans-serif'; font-weight: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt; &lt;span style="background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: small; font-family: 'Verdana','sans-serif'; font-weight: normal;"&gt;Add the following jquery and jquery UI plugin reference inside the head section of HTML page.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;script&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; src&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;type&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="text/javascript"&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;script&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;script&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; src&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;=http://code.jquery.com/ui/1.8.23/jquery-ui.min.js&amp;nbsp; &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;type&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="text/javascript"&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;script&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background: none repeat scroll 0% 0% white; vertical-align: baseline; font-size: small;"&gt;&lt;span style="font-family: 'Verdana','sans-serif'; font-weight: normal;"&gt;I have written some css classes to apply some design on the lists and table. You can add your own CSS.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;link &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;href&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="Style.css"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; rel&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="stylesheet"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;/&amp;gt;&lt;/span&gt;&lt;/span&gt; &lt;br /&gt;&lt;span style="background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Arial; mso-font-kerning: 0pt; mso-bidi-font-weight: normal;"&gt;&lt;br /&gt;&lt;span style="color: #f82306;"&gt;&lt;strong&gt;Note:&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: 'Verdana','sans-serif'; font-weight: normal; color: #f82306;"&gt; &lt;em style="mso-bidi-font-style: normal;"&gt;You can find style.css from below&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;&lt;span style="margin: 0in 0in 0.0001pt; background: none repeat scroll 0% 0% white; vertical-align: baseline;"&gt;&lt;span style="font-family: 'Verdana','sans-serif'; font-weight: normal;"&gt;Add the following jquery script which will sort the two connected list and click method which will display all list one items (index no, list id and link text) inside the table on click on submit button.&lt;/span&gt;&lt;/span&gt; &lt;span style="margin: 0in 0in 0.0001pt; background: none repeat scroll 0% 0% white; vertical-align: baseline;"&gt;&lt;span style="font-family: 'Verdana','sans-serif'; font-weight: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;script&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; type&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="text/javascript"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;function&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; () {&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"#contentLeft ul, #contentright ul"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;).sortable({&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;connectWith: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;".connectedSortable"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;,&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;placeholder: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"ui-state-highlight"&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}).disableSelection();&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"#idsubmit"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;).click(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;function&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; () {&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;var&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; msg = $(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"#table1 &amp;gt; tbody"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;);&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;var&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; list = $(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"#contentLeft ul li"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;);&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(msg).html(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;""&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;);&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(list).each(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;function&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; (index) {&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;$(msg).append(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; + index + &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; "&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; +&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;this&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;).closest(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"li"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;).prop(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"id"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;) + &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; "&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt; +&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;this&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;).text() + &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: #a31515; background: white; mso-highlight: white;"&gt;"&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;);&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;});&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;script&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 11.0pt; mso-bidi-font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Arial; mso-font-kerning: 0pt; font-weight: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt; &lt;span style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: small; font-family: 'Verdana','sans-serif'; font-weight: normal;"&gt;The following are HTML tags.&lt;/span&gt;&lt;/span&gt; &lt;span style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 11.0pt; mso-bidi-font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Arial; mso-font-kerning: 0pt; font-weight: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="content"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; class&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="edit-mu-li" &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="contentLeft"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;strong&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Add&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;strong&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;ul&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; class&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="connectedSortable ui-sortable"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="1"&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;href&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="#"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Link 1&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="2"&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; href&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="#"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Link 2&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="3"&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; href&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="#"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Link 3&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="4"&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;href&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="#"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Link 4&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; class&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="edit-mu-li"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="contentright"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;strong&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Remove&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;strong&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;ul &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;class&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="connectedSortable"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="5"&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;href&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="#"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Link 5&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;a&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;li&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;ul&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;p&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;input &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;type&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="button"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="idsubmit"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;value&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;=" Submit "&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;/&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;p&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;table &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="table1"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;thead&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;th&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Index&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;th&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;th&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;ID&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;th&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;th&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Name&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;th&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;thead&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;tbody&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;tbody&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;table&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Output&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2012%2f9%2fAamirHasan-jquery-ui-sortable_001.png" alt="" /&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Download&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;&lt;a href="http://www.aspxtutorial.com/file.axd?file=2012%2f9%2fDrag-and-drop-items-List.rar"&gt;Drag-and-drop-items-List.rar (2.36 kb)&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;See &lt;a href="http://aspxtutorial.com/demo/jquery/jquery-ui-Sortable.aspx" target="_blank"&gt;live demo&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2012/09/19/Drag-and-drop-items-from-one-list-to-another-using-jQuery-UI-plugin.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2012/09/19/Drag-and-drop-items-from-one-list-to-another-using-jQuery-UI-plugin.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=75e435f2-16e3-46a4-8c73-54a226166ec5</guid>
      <pubDate>Wed, 19 Sep 2012 22:30:00 -1200</pubDate>
      <category>All</category>
      <category>asp.net</category>
      <category>jQuery</category>
      <category>jQueryUI</category>
      <dc:publisher>AamirHasan</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=75e435f2-16e3-46a4-8c73-54a226166ec5</pingback:target>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=75e435f2-16e3-46a4-8c73-54a226166ec5</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2012/09/19/Drag-and-drop-items-from-one-list-to-another-using-jQuery-UI-plugin.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=75e435f2-16e3-46a4-8c73-54a226166ec5</wfw:commentRss>
    <enclosure url="http://www.aspxtutorial.com/file.axd?file=2012%2f9%2fDrag-and-drop-items-List.rar" length="2414" type="application/octet-stream" /><media:content url="http://www.aspxtutorial.com/file.axd?file=2012%2f9%2fDrag-and-drop-items-List.rar" fileSize="2414" type="application/octet-stream" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> In this example, you will see how to drag and drop items from one list to another list using jQuery UI plugin. Jquery UI plugin provides Sortable method, by using this method you can drag and drop items from one list to another. Let&amp;rsquo;s start. &amp;nbsp;</itunes:subtitle><itunes:summary> In this example, you will see how to drag and drop items from one list to another list using jQuery UI plugin. Jquery UI plugin provides Sortable method, by using this method you can drag and drop items from one list to another. Let&amp;rsquo;s start. &amp;nbsp; Add the following jquery and jquery UI plugin reference inside the head section of HTML page. &amp;lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script src=http://code.jquery.com/ui/1.8.23/jquery-ui.min.js&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt; I have written some css classes to apply some design on the lists and table. You can add your own CSS. &amp;nbsp; &amp;lt;link href="Style.css" rel="stylesheet"/&amp;gt; Note: You can find style.css from below Add the following jquery script which will sort the two connected list and click method which will display all list one items (index no, list id and link text) inside the table on click on submit button. &amp;nbsp; &amp;lt;script type="text/javascript"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(function () { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#contentLeft ul, #contentright ul").sortable({ &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectWith: ".connectedSortable", &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; placeholder: "ui-state-highlight" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }).disableSelection(); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $("#idsubmit").click(function () { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var msg = $("#table1 &amp;gt; tbody"); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var list = $("#contentLeft ul li"); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(msg).html(""); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(list).each(function (index) { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(msg).append("&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;" + index + "&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; " + &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(this).closest("li").prop("id") + "&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt; " + &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(this).text() + "&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;"); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }); &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt; &amp;nbsp; The following are HTML tags. &amp;nbsp; &amp;lt;div id="content"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="edit-mu-li" id="contentLeft"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;strong&amp;gt;Add&amp;lt;/strong&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul class="connectedSortable ui-sortable"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li id="1"&amp;gt;&amp;lt;a href="#"&amp;gt;Link 1&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li id="2"&amp;gt;&amp;lt;a href="#"&amp;gt;Link 2&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;n</itunes:summary><itunes:keywords>All, asp.net, jQuery, jQueryUI</itunes:keywords></item>
    <item>
      <title>Disable right click on HTML div</title>
      <description>&lt;p&gt;&lt;span style="font-size: small;"&gt;In this example, you will see how to disable right click on HTML div. To prevent user by right click on HTML div, we can disable right on HTML div by using &lt;strong&gt;oncontextmenu&lt;/strong&gt; event provide to disable right click.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2012%2f9%2f9-7-2012+9-15-01+AM.png" alt="" /&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Example&lt;/span&gt;&lt;/h4&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:OfficeDocumentSettings&gt;
  &lt;o:RelyOnVML/&gt;
  &lt;o:AllowPNG/&gt;
 &lt;/o:OfficeDocumentSettings&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves/&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:DontVertAlignCellWithSp/&gt;
   &lt;w:DontBreakConstrainedForcedTables/&gt;
   &lt;w:DontVertAlignInTxbx/&gt;
   &lt;w:Word11KerningPairs/&gt;
   &lt;w:CachedColBalance/&gt;
  &lt;/w:Compatibility&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val="Cambria Math"/&gt;
   &lt;m:brkBin m:val="before"/&gt;
   &lt;m:brkBinSub m:val="&amp;#45;-"/&gt;
   &lt;m:smallFrac m:val="off"/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val="0"/&gt;
   &lt;m:rMargin m:val="0"/&gt;
   &lt;m:defJc m:val="centerGroup"/&gt;
   &lt;m:wrapIndent m:val="1440"/&gt;
   &lt;m:intLim m:val="subSup"/&gt;
   &lt;m:naryLim m:val="undOvr"/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267"&gt;
  &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/&gt;
  &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/&gt;
  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/&gt;
  &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" Name="toc 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" Name="toc 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" Name="toc 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" Name="toc 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" Name="toc 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" Name="toc 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" Name="toc 7"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" Name="toc 8"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" Name="toc 9"/&gt;
  &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/&gt;
  &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title"/&gt;
  &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/&gt;
  &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/&gt;
  &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/&gt;
  &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/&gt;
  &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid"/&gt;
  &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/&gt;
  &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/&gt;
  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading"/&gt;
  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List"/&gt;
  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid"/&gt;
  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List"/&gt;
  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading"/&gt;
  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List"/&gt;
  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid"/&gt;
  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/&gt;
  &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/&gt;
  &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/&gt;
  &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/&gt;
  &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/&gt;
  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/&gt;
  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/&gt;
  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/&gt;
  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/&gt;
  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/&gt;
  &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/&gt;
  &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/&gt;
  &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/&gt;
  &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/&gt;
  &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/&gt;
  &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/&gt;
  &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography"/&gt;
  &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/&gt;
 &lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin-top:0in;
	mso-para-margin-right:0in;
	mso-para-margin-bottom:10.0pt;
	mso-para-margin-left:0in;
	line-height:115%;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;}
&lt;/style&gt;
&lt;![endif]--&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;!&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;DOCTYPE &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;html&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;html&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;head &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;runat&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="server"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;title&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Disable right click on HTML div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;title&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;style&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;html&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;, &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;body&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;font-family&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;Arial&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;font-size&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;90%&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;color&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;#888&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;line-height&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;1.5em&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;background-color&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;#FFF5FF&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;.secret&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;border&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;1px&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;solid&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;#aaa&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;display&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;block&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;width&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;200px&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;height&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;100px&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;padding&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;10px&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;background-color&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;#FFFFCF&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;margin&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;: &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;10px&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;style&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;head&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;body&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;form&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; id&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="form1" &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;runat&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="server"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; class&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="secret"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; oncontextmenu&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="return false;"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;Your ASP.NET Control&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; class&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="secret"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; oncontextmenu&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="return false;"&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;p&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;asp&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;:&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;HyperLink&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; ID&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="HyperLink1"&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt; NavigateUrl&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="http://www.aspxtutorial.com"&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;runat&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="server" &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;Target&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="_blank"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;jquery with asp.net&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;asp&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;:&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;HyperLink&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;asp&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;:&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;HyperLink &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;ID&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="HyperLink2" &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;NavigateUrl&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="http://www.aspxtutorial.com"&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;runat&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="server" &lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: red; background: white; mso-highlight: white;"&gt;Target&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;="_blank"&amp;gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;asp.net examples&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;asp&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;:&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;HyperLink&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;p&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;div&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: black; background: white; mso-highlight: white;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;form&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;body&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;h1 style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon; background: white; mso-highlight: white;"&gt;html&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white; mso-highlight: white;"&gt;&amp;gt;&lt;/span&gt;&lt;/h1&gt;
&lt;h1 style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&amp;nbsp;&lt;/h1&gt;
&lt;h1 style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;Output&lt;/span&gt;&lt;/h1&gt;
&lt;p&gt;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2012%2f9%2fAamirHasan-DisableRightclickoncontrol972012912161.png" alt="" /&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Download&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;&lt;a href="http://www.aspxtutorial.com/file.axd?file=2012%2f9%2fDisable-Right-ClickonControl.aspx"&gt;Disable-Right-ClickonControl.aspx (888.00 bytes)&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Demo&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;See live &lt;a href="http://aspxtutorial.com/demo/asp.net/Disable-Right-ClickonControl.aspx" target="_blank"&gt;demo&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2012/09/06/Disable-right-click-on-HTML-div.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2012/09/06/Disable-right-click-on-HTML-div.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=20d8149c-368b-488d-9cc5-5931b42b94cc</guid>
      <pubDate>Thu, 06 Sep 2012 19:03:00 -1200</pubDate>
      <category>All</category>
      <category>asp.net</category>
      <category>Javascript</category>
      <dc:publisher>AamirHasan</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=20d8149c-368b-488d-9cc5-5931b42b94cc</pingback:target>
      <slash:comments>9</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=20d8149c-368b-488d-9cc5-5931b42b94cc</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2012/09/06/Disable-right-click-on-HTML-div.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=20d8149c-368b-488d-9cc5-5931b42b94cc</wfw:commentRss>
    <enclosure url="http://www.aspxtutorial.com/file.axd?file=2012%2f9%2fDisable-Right-ClickonControl.aspx" length="888" type="application/octet-stream" /><media:content url="http://www.aspxtutorial.com/file.axd?file=2012%2f9%2fDisable-Right-ClickonControl.aspx" fileSize="888" type="application/octet-stream" /><itunes:explicit>no</itunes:explicit><itunes:subtitle> In this example, you will see how to disable right click on HTML div. To prevent user by right click on HTML div, we can disable right on HTML div by using oncontextmenu event provide to disable right click. Example Normal 0 false false false EN-US X-NON</itunes:subtitle><itunes:summary> In this example, you will see how to disable right click on HTML div. To prevent user by right click on HTML div, we can disable right on HTML div by using oncontextmenu event provide to disable right click. Example Normal 0 false false false EN-US X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin-top:0in; mso-para-margin-right:0in; mso-para-margin-bottom:10.0pt; mso-para-margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:"Times New Roman"; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi;} &amp;lt;!DOCTYPE html&amp;gt; &amp;lt;html&amp;gt; &amp;lt;head runat="server"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;Disable right click on HTML div&amp;lt;/title&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;style&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html, body &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font-family: Arial; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font-size: 90%; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color: #888; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; line-height: 1.5em; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background-color: #FFF5FF; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .secret &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; border: 1pxsolid#aaa; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; display: block; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 200px; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; height: 100px; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; padding: 10px; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background-color: #FFFFCF; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; margin: 10px; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/style&amp;gt; &amp;lt;/head&amp;gt; &amp;lt;body&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;form id="form1" runat="server"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="secret" oncontextmenu="return false;"&amp;gt;Your ASP.NET Control&amp;lt;/div&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="secret" oncontextmenu="return false;"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;p&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:HyperLink ID="HyperLink1" NavigateUrl="http://www.aspxtutorial.com" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; runat="server" Target="_blank"&amp;gt;jquery with asp.net&amp;lt;/asp:HyperLink&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:HyperLink ID="HyperLink2" NavigateUrl="http://www.aspxtutorial.com" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; runat="server" Target="_blank"&amp;gt;asp.net examples&amp;lt;/asp:HyperLink&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/p&amp;gt; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/form&amp;gt; &amp;lt;/body&amp;gt; &amp;lt;/html&amp;gt; &amp;nbsp; Output Download Disable-Right-ClickonControl.aspx (888.00 bytes) Demo &amp;nbsp;See live demo</itunes:summary><itunes:keywords>All, asp.net, Javascript</itunes:keywords></item>
    <item>
      <title>How to add textboxes and button control to asp.net page at runtime</title>
      <description>&lt;p style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 11.0pt; mso-bidi-font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Arial; mso-font-kerning: 0pt; font-weight: normal;"&gt;In this example, you will see how to add textboxes and button control to asp.net page at runtime and fetch all values of dynamic created textboxes and display it on a label by attaching the Click event handler with button. &lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Desgin script&lt;/span&gt;&lt;/h4&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;html&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;head&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt; &lt;span style="color: red;"&gt;runat&lt;/span&gt;&lt;span style="color: blue;"&gt;="server"&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: maroon;"&gt;title&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;How to add textboxes and button control to asp.net page at runtime&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: maroon;"&gt;title&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: maroon;"&gt;style&lt;/span&gt; &lt;span style="color: red;"&gt;type&lt;/span&gt;&lt;span style="color: blue;"&gt;="text/css"&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: maroon;"&gt;body&lt;/span&gt;, &lt;span style="color: maroon;"&gt;html&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;font-family&lt;/span&gt;: &lt;span style="color: blue;"&gt;Verdana.&lt;/span&gt; &lt;span style="color: blue;"&gt;Arial&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;font-size&lt;/span&gt;: &lt;span style="color: blue;"&gt;12px&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;color&lt;/span&gt;: &lt;span style="color: blue;"&gt;#444&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;background-color&lt;/span&gt;: &lt;span style="color: blue;"&gt;#fff&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: maroon;"&gt;#pan&lt;/span&gt; &lt;span style="color: maroon;"&gt;span&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;padding&lt;/span&gt;: &lt;span style="color: blue;"&gt;5px&lt;/span&gt; &lt;span style="color: blue;"&gt;10px&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: maroon;"&gt;#pan&lt;/span&gt; &lt;span style="color: maroon;"&gt;input&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;padding&lt;/span&gt;: &lt;span style="color: blue;"&gt;3px&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;margin&lt;/span&gt;: &lt;span style="color: blue;"&gt;5px&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;color&lt;/span&gt;: &lt;span style="color: blue;"&gt;#ccc&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: maroon;"&gt;#pan&lt;/span&gt; &lt;span style="color: maroon;"&gt;input:hover&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;color&lt;/span&gt;: &lt;span style="color: blue;"&gt;#ccc&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: red;"&gt;background-color&lt;/span&gt;: &lt;span style="color: blue;"&gt;#fafafa&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: maroon;"&gt;style&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;head&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;body&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: maroon;"&gt;form&lt;/span&gt; &lt;span style="color: red;"&gt;id&lt;/span&gt;&lt;span style="color: blue;"&gt;="form1"&lt;/span&gt; &lt;span style="color: red;"&gt;runat&lt;/span&gt;&lt;span style="color: blue;"&gt;="server"&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: maroon;"&gt;div&lt;/span&gt; &lt;span style="color: red;"&gt;id&lt;/span&gt;&lt;span style="color: blue;"&gt;="pan"&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: maroon;"&gt;asp&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: maroon;"&gt;PlaceHolder&lt;/span&gt; &lt;span style="color: red;"&gt;ID&lt;/span&gt;&lt;span style="color: blue;"&gt;="PlaceHolder1"&lt;/span&gt; &lt;span style="color: red;"&gt;runat&lt;/span&gt;&lt;span style="color: blue;"&gt;="server"&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: maroon;"&gt;asp&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: maroon;"&gt;PlaceHolder&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: maroon;"&gt;asp&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: maroon;"&gt;Label&lt;/span&gt; &lt;span style="color: red;"&gt;ID&lt;/span&gt;&lt;span style="color: blue;"&gt;="lbMsg"&lt;/span&gt; &lt;span style="color: red;"&gt;runat&lt;/span&gt;&lt;span style="color: blue;"&gt;="server"&lt;/span&gt; &lt;span style="color: red;"&gt;Text&lt;/span&gt;&lt;span style="color: blue;"&gt;=""&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: maroon;"&gt;asp&lt;/span&gt;&lt;span style="color: blue;"&gt;:&lt;/span&gt;&lt;span style="color: maroon;"&gt;Label&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: maroon;"&gt;div&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: maroon;"&gt;form&lt;/span&gt;&lt;span style="color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;body&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: maroon;"&gt;html&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas; color: blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;h1 style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 11.0pt; mso-bidi-font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Arial; mso-font-kerning: 0pt; font-weight: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/h1&gt;
&lt;h4 style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: small;"&gt;Code behind script&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h1 style="margin: 0in; margin-bottom: .0001pt; background: white; vertical-align: baseline;"&gt;&lt;span style="font-size: 11.0pt; mso-bidi-font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: Arial; mso-font-kerning: 0pt; font-weight: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;protected&lt;/span&gt; &lt;span style="color: blue;"&gt;void&lt;/span&gt; Page_Load(&lt;span style="color: blue;"&gt;object&lt;/span&gt; sender, &lt;span style="color: #2b91af;"&gt;EventArgs&lt;/span&gt; e)&lt;/span&gt;&lt;/h1&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;this&lt;/span&gt;.CreateControl();&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;protected&lt;/span&gt; &lt;span style="color: blue;"&gt;void&lt;/span&gt; CreateControl()&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;for&lt;/span&gt; (&lt;span style="color: blue;"&gt;int&lt;/span&gt; i = 0; i &amp;lt; 5; i++)&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;var&lt;/span&gt; lab = &lt;span style="color: blue;"&gt;new&lt;/span&gt; &lt;span style="color: #2b91af;"&gt;Label&lt;/span&gt; {&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;Text = &lt;span style="color: #2b91af;"&gt;String&lt;/span&gt;.Format(&lt;span style="color: #a31515;"&gt;"TextBox value {0}"&lt;/span&gt;, i),&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;ID = &lt;span style="color: #2b91af;"&gt;String&lt;/span&gt;.Format(&lt;span style="color: #a31515;"&gt;"lb_{0}"&lt;/span&gt;, i)&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;};&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;var&lt;/span&gt; tbox = &lt;span style="color: blue;"&gt;new&lt;/span&gt; &lt;span style="color: #2b91af;"&gt;TextBox&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;Text = &lt;span style="color: #2b91af;"&gt;String&lt;/span&gt;.Format(&lt;span style="color: #a31515;"&gt;"TextBox value {0}"&lt;/span&gt;, i),&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;ID = &lt;span style="color: #2b91af;"&gt;String&lt;/span&gt;.Format(&lt;span style="color: #a31515;"&gt;"TextBox_{0}"&lt;/span&gt;, i)&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;};&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;this&lt;/span&gt;.PlaceHolder1.Controls.Add(lab);&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;this&lt;/span&gt;.PlaceHolder1.Controls.Add(tbox);&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;this&lt;/span&gt;.PlaceHolder1.Controls.Add(&lt;span style="color: blue;"&gt;new&lt;/span&gt; &lt;span style="color: #2b91af;"&gt;LiteralControl&lt;/span&gt;(&lt;span style="color: #a31515;"&gt;"&amp;lt;br&amp;gt;"&lt;/span&gt;));&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: #2b91af;"&gt;Button&lt;/span&gt; btn = &lt;span style="color: blue;"&gt;new&lt;/span&gt; &lt;span style="color: #2b91af;"&gt;Button&lt;/span&gt;();&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;btn.Text = &lt;span style="color: #a31515;"&gt;"Submit"&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;btn.Click += &lt;span style="color: blue;"&gt;new&lt;/span&gt; &lt;span style="color: #2b91af;"&gt;EventHandler&lt;/span&gt;(btn_Click);&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;this&lt;/span&gt;.form1.Controls.Add(btn);&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;void&lt;/span&gt; btn_Click(&lt;span style="color: blue;"&gt;object&lt;/span&gt; sender, &lt;span style="color: #2b91af;"&gt;EventArgs&lt;/span&gt; e)&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;{&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;lbMsg.Text = &lt;span style="color: #a31515;"&gt;""&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;foreach&lt;/span&gt; (&lt;span style="color: #2b91af;"&gt;Control&lt;/span&gt; control &lt;span style="color: blue;"&gt;in&lt;/span&gt; PlaceHolder1.Controls)&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style="color: blue;"&gt;if&lt;/span&gt; (control &lt;span style="color: blue;"&gt;is&lt;/span&gt; &lt;span style="color: #2b91af;"&gt;TextBox&lt;/span&gt;)&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;lbMsg.Text += (control &lt;span style="color: blue;"&gt;as&lt;/span&gt; &lt;span style="color: #2b91af;"&gt;TextBox&lt;/span&gt;).Text+&lt;span style="color: #a31515;"&gt;"&amp;lt;br&amp;gt;"&lt;/span&gt;;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; mso-layout-grid-align: none; text-autospace: none;"&gt;&lt;span style="font-size: 9.5pt; font-family: Consolas;"&gt;&lt;span style="mso-spacerun: yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;}&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="mso-bidi-font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-bidi-font-family: Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="line-height: normal;"&gt;&lt;span style="mso-bidi-font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-bidi-font-family: Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;div style="mso-element: para-border-div; border: solid #595959 1.0pt; mso-border-themecolor: text1; mso-border-themetint: 166; mso-border-alt: solid #595959 .5pt; padding: 1.0pt 4.0pt 1.0pt 4.0pt; background: #FFFFCC;"&gt;
&lt;p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; background: #FFFFCC; border: none; mso-border-alt: solid #595959 .5pt; mso-border-themecolor: text1; mso-border-themetint: 166; padding: 0in; mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;"&gt;&lt;strong style="mso-bidi-font-weight: normal;"&gt;&lt;span style="font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-bidi-font-family: Arial;"&gt;&lt;br /&gt; Note:&lt;/span&gt;&lt;/strong&gt;&lt;span style="font-size: 10.0pt; font-family: 'Verdana','sans-serif'; mso-bidi-font-family: Arial;"&gt; If you have alternative solution, please comments here to share with us.&lt;/span&gt;&lt;/p&gt;
&lt;h4 class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal; background: #FFFFCC; border: none; mso-border-alt: solid #595959 .5pt; mso-border-themecolor: text1; mso-border-themetint: 166; padding: 0in; mso-padding-alt: 1.0pt 4.0pt 1.0pt 4.0pt;"&gt;&lt;span style="font-size: small; font-family: 'Verdana','sans-serif';"&gt;&amp;nbsp;&lt;/span&gt;&lt;/h4&gt;
&lt;/div&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Output&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://www.aspxtutorial.com/image.axd?picture=2012%2f8%2fAamirHasan-runtime-textboxes-button.png" alt="" /&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Demo&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;span style="font-size: small;"&gt;See live &lt;a href="http://aspxtutorial.com/demo/asp.net/create-runtime-textboxes-button.aspx" target="_blank"&gt;demo&lt;/a&gt; &lt;/span&gt;&lt;/p&gt;
&lt;h4&gt;&lt;span style="font-size: small;"&gt;Download&lt;/span&gt;&lt;/h4&gt;
&lt;p&gt;&lt;span style="font-size: small; font-family: verdana, geneva;"&gt;&lt;a href="http://www.aspxtutorial.com/file.axd?file=2012%2f8%2fcreate-runtime-textboxes-button.rar"&gt;Create-runtime-textboxes-button.rar (1.14 kb)&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <link>http://www.aspxtutorial.com/post/2012/08/25/How-to-add-textboxes-and-button-control-to-aspnet-page-at-runtime.aspx</link>
      <comments>http://www.aspxtutorial.com/post/2012/08/25/How-to-add-textboxes-and-button-control-to-aspnet-page-at-runtime.aspx#comment</comments>
      <guid>http://www.aspxtutorial.com/post.aspx?id=257b0afd-7d67-4cdf-84a1-ee13d0ea57c0</guid>
      <pubDate>Sat, 25 Aug 2012 00:59:00 -1200</pubDate>
      <category>All</category>
      <category>asp.net</category>
      <dc:publisher>AamirHasan</dc:publisher>
      <pingback:server>http://www.aspxtutorial.com/pingback.axd</pingback:server>
      <pingback:target>http://www.aspxtutorial.com/post.aspx?id=257b0afd-7d67-4cdf-84a1-ee13d0ea57c0</pingback:target>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://www.aspxtutorial.com/trackback.axd?id=257b0afd-7d67-4cdf-84a1-ee13d0ea57c0</trackback:ping>
      <wfw:comment>http://www.aspxtutorial.com/post/2012/08/25/How-to-add-textboxes-and-button-control-to-aspnet-page-at-runtime.aspx#comment</wfw:comment>
      <wfw:commentRss>http://www.aspxtutorial.com/syndication.axd?post=257b0afd-7d67-4cdf-84a1-ee13d0ea57c0</wfw:commentRss>
    <enclosure url="http://www.aspxtutorial.com/file.axd?file=2012%2f8%2fcreate-runtime-textboxes-button.rar" length="1165" type="application/octet-stream" /><media:content url="http://www.aspxtutorial.com/file.axd?file=2012%2f8%2fcreate-runtime-textboxes-button.rar" fileSize="1165" type="application/octet-stream" /><itunes:explicit>no</itunes:explicit><itunes:subtitle>In this example, you will see how to add textboxes and button control to asp.net page at runtime and fetch all values of dynamic created textboxes and display it on a label by attaching the Click event handler with button. Desgin script &amp;lt;html&amp;gt; &amp;lt;h</itunes:subtitle><itunes:summary>In this example, you will see how to add textboxes and button control to asp.net page at runtime and fetch all values of dynamic created textboxes and display it on a label by attaching the Click event handler with button. Desgin script &amp;lt;html&amp;gt; &amp;lt;head runat="server"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;How to add textboxes and button control to asp.net page at runtime&amp;lt;/title&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;style type="text/css"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; body, html &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font-family: Verdana. Arial; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; font-size: 12px; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color: #444; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background-color: #fff; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #pan span &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; padding: 5px 10px; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #pan input &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; padding: 3px; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; margin: 5px; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color: #ccc; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #pan input:hover &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color: #ccc; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background-color: #fafafa; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/style&amp;gt; &amp;lt;/head&amp;gt; &amp;lt;body&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;form id="form1" runat="server"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="pan"&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:PlaceHolder ID="PlaceHolder1" runat="server"&amp;gt;&amp;lt;/asp:PlaceHolder&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:Label ID="lbMsg" runat="server" Text=""&amp;gt;&amp;lt;/asp:Label&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/form&amp;gt; &amp;lt;/body&amp;gt; &amp;lt;/html&amp;gt; &amp;nbsp; Code behind script &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void Page_Load(object sender, EventArgs e) &amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.CreateControl(); &amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp;&amp;nbsp; protected void CreateControl() &amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (int i = 0; i &amp;lt; 5; i++) &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var lab = new Label { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text = String.Format("TextBox value {0}", i), &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID = String.Format("lb_{0}", i) &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var tbox = new TextBox &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Text = String.Format("TextBox value {0}", i), &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID = String.Format("TextBox_{0}", i) &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.PlaceHolder1.Controls.Add(lab); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.PlaceHolder1.Controls.Add(tbox); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;</itunes:summary><itunes:keywords>All, asp.net</itunes:keywords></item>
  <media:rating>nonadult</media:rating></channel>
</rss>
