<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2977332893095670102</id><updated>2011-11-07T12:14:23.824-05:00</updated><category term='Austin Atlanta Moving Steers Queers'/><category term='C#'/><category term='T-SQL find keyword tables'/><category term='delete'/><category term='DateTime format'/><category term='internet explorer'/><category term='patterns'/><category term='shortcuts'/><category term='Samba Fedora 7 samba_share_t'/><category term='NAS Freenas'/><category term='IP ADDRESS FIND NETWORK BATCH'/><category term='DataFormatString GridView dateformat'/><category term='SVN Server Windows Install Setp-by-step'/><category term='image cache browser refresh fileupload Response.Cache.SetCacheability OutputCache'/><category term='all'/><category term='command line'/><category term='div center alignment safari ie7 Firefox'/><category term='hibernate windows vista not showing'/><category term='Panel DefaultButton LinkButton Ajax Safari Firefox'/><category term='repository'/><category term='switch'/><category term='svn'/><category term='ASP.NET'/><title type='text'>Day-By-Day Computer Tricks</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>16</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-2303662436199590977</id><published>2011-11-07T11:58:00.006-05:00</published><updated>2011-11-07T12:14:23.953-05:00</updated><title type='text'>T-SQL Generic Select</title><content type='html'>&lt;span style="font-family:courier new;font-size:85%;"&gt;&lt;br /&gt;When you have a table and wants to create a Stored Procedure that selects records on that table passing one or various fields as a filter, you can use the sample code below to create a SP to deal with that.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-- #############################&lt;br /&gt;&lt;br /&gt;DECLARE @Name VARCHAR(200), @Abbr VARCHAR(2), @Active CHAR(1), @DivisionId INT&lt;br /&gt;&lt;br /&gt;SET @Name = 'Pan'&lt;br /&gt;&lt;br /&gt;SET @Abbr = NULL&lt;br /&gt;&lt;br /&gt;SET @Active = NULL&lt;br /&gt;&lt;br /&gt;SET @DivisionId = NULL&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SELECT * &lt;/br&gt;&lt;br /&gt;FROM MOE_Division&lt;br /&gt;&lt;br /&gt;WHERE (Division_Name LIKE '%' + @Name + '%' OR ISNULL(@Name, '') = '') AND (@Abbr = Division_Abbrev OR ISNULL(@Abbr, '') = '')&lt;br /&gt;&lt;br /&gt;AND (@Active = Active_Status OR ISNULL(@Active, '') = '')&lt;br /&gt;&lt;br /&gt;AND (@Active = Active_Status OR ISNULL(@Active, '') = '')&lt;br /&gt;&lt;br /&gt;AND (@DivisionId = Division_Id OR ISNULL(@DivisionId, '') = '')&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-- #############################&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CREATE PROCEDURE GET_MOE_Division&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@Division_Id int,&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@Division_Name varchar(50),&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@Division_Abbrev varchar(10),&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;@Active_Status varchar(1)&lt;br /&gt;&lt;br /&gt;AS&lt;br /&gt;&lt;br /&gt;SELECT * FROM MOE_Division&lt;br /&gt;&lt;br /&gt;WHERE (Division_Name LIKE '%' + @Name + '%' OR ISNULL(@Name, '') = '')AND (@Division_Abbrev = Division_Abbrev OR ISNULL(@Abbr, '') = '')&lt;br /&gt;&lt;br /&gt;AND (@Active_Status = Active_Status OR ISNULL(@Active, '') = '')&lt;br /&gt;&lt;br /&gt;AND (@Division_Id = Division_Id OR ISNULL(@DivisionId, '') = '')&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-- #############################&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-- It will return all records&lt;br /&gt;&lt;br /&gt;SELECT * FROM GET_MOE_Division(NULL, NULL, NULL, NULL)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-- It will return all records where Division_Abbrev = 'SP'&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SELECT * FROM GET_MOE_Division(NULL, NULL, 'SP', NULL)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;-- It will return all records that are Active and part of the name is 'Pan'&lt;br /&gt;&lt;br /&gt;SELECT * FROM GET_MOE_Division(NULL, 'Pan', NULL, 'A')&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-2303662436199590977?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/2303662436199590977/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=2303662436199590977' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/2303662436199590977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/2303662436199590977'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2011/11/t-sql-generic-select.html' title='T-SQL Generic Select'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-2678916822330720327</id><published>2010-11-11T17:26:00.003-05:00</published><updated>2010-11-11T17:31:45.800-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='T-SQL find keyword tables'/><title type='text'>How to search all columns of all tables in a database for a keyword?</title><content type='html'>&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span"&gt;Nice script from &lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; "&gt;Narayana Vyas Kondreddi to deal with finding content on SQL tables.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span"&gt;&lt;a href="http://vyaskn.tripod.com/search_all_columns_in_all_tables.htm"&gt;http://vyaskn.tripod.com/search_all_columns_in_all_tables.htm&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;;-)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-2678916822330720327?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/2678916822330720327/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=2678916822330720327' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/2678916822330720327'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/2678916822330720327'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2010/11/how-to-search-all-columns-of-all-tables.html' title='How to search all columns of all tables in a database for a keyword?'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-2355976853044102603</id><published>2010-06-13T18:06:00.003-05:00</published><updated>2010-06-13T19:14:59.894-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SVN Server Windows Install Setp-by-step'/><title type='text'>Quick Subversion Setup</title><content type='html'>&lt;span class="Apple-style-span"   style="  line-height: 21px; font-family:Georgia, Verdana, Arial, Helvetica, sans-serif;font-size:15px;"&gt;&lt;h3  style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;  font-size:1em;"&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;Download SVN at &lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;a href="http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=8100"&gt;http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=8100&lt;/a&gt;.&lt;/span&gt;&lt;/h3&gt;&lt;h3  style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px;  font-size:1em;"&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;I download and copy the svn setup file onto my DEV-SOURCE machine then run the install and complete the wizard. I used all the default settings except I unchecked the desktop and quick launch icons.&lt;/span&gt;&lt;/h3&gt;&lt;div class="console" style="border-top-width: 4px; border-right-width: 4px; border-bottom-width: 4px; border-left-width: 4px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); line-height: 15px; overflow-x: hidden; overflow-y: hidden; background-color: rgb(0, 0, 0); padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 5pt; margin-bottom: 7pt; "&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;C:\Users\Administrator&gt;cd installs&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; &lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;C:\Users\Administrator\Installs&gt;svn-1.4.6-setup.exe&lt;/pre&gt;&lt;/div&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;Once completed subversion is installed at &lt;em&gt;C:\Program Files (x86)\Subversion&lt;/em&gt;.&lt;/p&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;To make using subversion easier I set it on the PATH using the setx tool. You need to log out and log back in so that the PATH environment variable is updated.&lt;/p&gt;&lt;div class="console" style="border-top-width: 4px; border-right-width: 4px; border-bottom-width: 4px; border-left-width: 4px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); line-height: 15px; overflow-x: hidden; overflow-y: hidden; background-color: rgb(0, 0, 0); padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 5pt; margin-bottom: 7pt; "&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;c:\Users\Administrator&gt;setx PATH "%PATH%;C:\Program Files (x86)\Subversion\bin"&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; &lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;SUCCESS: Specified value was saved.&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;c:\Users\Administrator&gt;shutdown /l&lt;/pre&gt;&lt;/div&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;Creating the source code repository can be done with the svnadmin create command. I then change to the new repository to make sure all went well.&lt;/p&gt;&lt;div class="console" style="border-top-width: 4px; border-right-width: 4px; border-bottom-width: 4px; border-left-width: 4px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); line-height: 15px; overflow-x: hidden; overflow-y: hidden; background-color: rgb(0, 0, 0); padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 5pt; margin-bottom: 7pt; "&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;C:\Users\Administrator&gt;svnadmin create c:\svn_repository&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; &lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;C:\Users\Administrator&gt;cd c:\svn_repository&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; &lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;c:\svn_repository&gt;dir&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; &lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; Directory of c:\svn_repository&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; &lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;05/01/2008  04:32 PM    &lt;dir&gt;          .&lt;/dir&gt;&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;05/01/2008  04:32 PM    &lt;dir&gt;          ..&lt;/dir&gt;&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;05/01/2008  04:32 PM    &lt;dir&gt;          conf&lt;/dir&gt;&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;05/01/2008  04:32 PM    &lt;dir&gt;          dav&lt;/dir&gt;&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;05/01/2008  04:32 PM    &lt;dir&gt;          db&lt;/dir&gt;&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;05/01/2008  04:32 PM                 2 format&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;05/01/2008  04:32 PM    &lt;dir&gt;          hooks&lt;/dir&gt;&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;05/01/2008  04:32 PM    &lt;dir&gt;          locks&lt;/dir&gt;&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;05/01/2008  04:32 PM               234 README.txt&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;               2 File(s)            236 bytes&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;              7 Dir(s)  132,327,505,920 bytes free&lt;/pre&gt;&lt;/div&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;To configure subversion I set the authorization and passwords as follows:&lt;/p&gt;&lt;div class="console" style="border-top-width: 4px; border-right-width: 4px; border-bottom-width: 4px; border-left-width: 4px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); line-height: 15px; overflow-x: hidden; overflow-y: hidden; background-color: rgb(0, 0, 0); padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 5pt; margin-bottom: 7pt; "&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;c:\svn_repository&gt;notepad conf\svnserve.conf&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; &lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Add these lines to the bottom:&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;anon-access = none&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;auth-access = write&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;password-db = passwd&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; &lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;c:\svn_repository&gt;notepad conf\passwd&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Add your user name and password:&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;evan = *****&lt;/pre&gt;&lt;/div&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;Then I create the subversion service and start it.&lt;/p&gt;&lt;div class="console" style="border-top-width: 4px; border-right-width: 4px; border-bottom-width: 4px; border-left-width: 4px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); line-height: 15px; overflow-x: hidden; overflow-y: hidden; background-color: rgb(0, 0, 0); padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 5pt; margin-bottom: 7pt; "&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;c:\Users\Administrator&gt;sc create svnserver binpath= "C:\Program Files (x86)\Subversion\bin\svnserv&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;e.exe --service -r c:\svn_repository" DisplayName= "Subversion" depend= tcpip start= auto&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;[SC] CreateService SUCCESS&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt; &lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;c:\Users\Administrator&gt;net start svnserver&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;The Subversion service is starting.&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;The Subversion service was started successfully.&lt;/pre&gt;&lt;/div&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;Finally you will need to open up the subversion port 3690 in windows firewall for remote access.&lt;/p&gt;&lt;div class="console" style="border-top-width: 4px; border-right-width: 4px; border-bottom-width: 4px; border-left-width: 4px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); line-height: 15px; overflow-x: hidden; overflow-y: hidden; background-color: rgb(0, 0, 0); padding-top: 2px; padding-right: 2px; padding-bottom: 2px; padding-left: 2px; margin-top: 5pt; margin-bottom: 7pt; "&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;c:\Users\Administrator&gt;netsh advfirewall firewall add rule name="Subversion" dir=in action=allow&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;protocol=TCP localport=3690&lt;/pre&gt;&lt;pre style="font-size: 0.8em; color: rgb(255, 255, 255); font-family: Consolas, 'Courier New', Courier, monospace; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Ok.&lt;/pre&gt;&lt;/div&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;To test this out download and install &lt;a href="http://tortoisesvn.tigris.org/" title="TortoiseSVN"&gt;tortoise svn&lt;/a&gt; on your client machine. Right click in a directory and go to TortoiseSVN -&gt; Repo-browser. Connect to the server in my case DEV-SOURCE and make sure you can create a few folders. Happy coding!&lt;/p&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;In Time:&lt;/p&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;If you want to generate a unique passwd file for different repositories, you can edit svnserve.conf on each repository to point to that generic passwd file - you can only use relative paths (ex.: SVN -&gt; c:\SVN, repositories -&gt; c:\repos, repository named CE -&gt; c:\repos\ce2, passwd file -&gt; c:\SVN\passwd, CE repository svnserve.conf file -&gt; c:\repos\ce2\svnserve.conf, info for password-db on svnserve.conf -&gt; password-db = //.C:/SVN/passwd)&lt;/p&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-top: 5pt; margin-right: 0px; margin-bottom: 7pt; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-indent: 0px; text-align: justify; "&gt;(extracted from &lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;a href="http://www.evanclosson.com/devlog/subversiononservercore"&gt;http://www.evanclosson.com/devlog/subversiononservercore&lt;/a&gt;)&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-2355976853044102603?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/2355976853044102603/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=2355976853044102603' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/2355976853044102603'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/2355976853044102603'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2010/06/quick-subversion-setup.html' title='Quick Subversion Setup'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-3412092929339836733</id><published>2009-10-30T17:27:00.002-05:00</published><updated>2009-10-30T17:31:27.084-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='all'/><category scheme='http://www.blogger.com/atom/ns#' term='delete'/><category scheme='http://www.blogger.com/atom/ns#' term='repository'/><category scheme='http://www.blogger.com/atom/ns#' term='svn'/><title type='text'>How to remove all the svn hidden folders and their content from your local folder</title><content type='html'>Create a bat file like delete_svn.bat with the following content:&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-style: italic; "&gt;for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do (&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-style: italic; "&gt;rd /s /q "%%i"&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="font-style: italic; "&gt;)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Remark: "%%i" is all together&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-3412092929339836733?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/3412092929339836733/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=3412092929339836733' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/3412092929339836733'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/3412092929339836733'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2009/10/how-to-remove-all-svn-hidden-folders.html' title='How to remove all the svn hidden folders and their content from your local folder'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-7822360101305623666</id><published>2009-10-26T13:36:00.001-05:00</published><updated>2009-10-26T13:37:51.504-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='patterns'/><category scheme='http://www.blogger.com/atom/ns#' term='ASP.NET'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='DateTime format'/><title type='text'>Nice article with DateTime patterns for .NET</title><content type='html'>&lt;a href="http://www.geekzilla.co.uk/View00FF7904-B510-468C-A2C8-F859AA20581F.htm"&gt;http://www.geekzilla.co.uk/View00FF7904-B510-468C-A2C8-F859AA20581F.htm&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-7822360101305623666?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/7822360101305623666/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=7822360101305623666' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/7822360101305623666'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/7822360101305623666'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2009/10/nice-article-with-datetime-patterns-for.html' title='Nice article with DateTime patterns for .NET'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-4420042992482444196</id><published>2009-10-26T13:14:00.004-05:00</published><updated>2009-10-26T13:19:42.994-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='internet explorer'/><category scheme='http://www.blogger.com/atom/ns#' term='command line'/><category scheme='http://www.blogger.com/atom/ns#' term='switch'/><category scheme='http://www.blogger.com/atom/ns#' term='shortcuts'/><title type='text'>IE Command Line Switches</title><content type='html'>Kiosk Mode: -k&lt;br /&gt;(ex.: iexplorer -k &lt;a href="http://www.centralequine.com/"&gt;http://www.centralequine.com/&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;Turn off add-ons: -extoff&lt;br /&gt;(ex.: iexplore -extoff &lt;a href="http://www.centralequine.com/"&gt;http://www.centralequine.com/&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;Remark: To get off kiosk mode, ALT+F4&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-4420042992482444196?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/4420042992482444196/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=4420042992482444196' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/4420042992482444196'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/4420042992482444196'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2009/10/ie-command-line-switches.html' title='IE Command Line Switches'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-2649283383358893120</id><published>2009-07-29T19:21:00.000-05:00</published><updated>2009-07-29T19:23:24.210-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='IP ADDRESS FIND NETWORK BATCH'/><title type='text'>Quickly Find Used IP Addresses on Your Network</title><content type='html'>Instead of manually pinging all IP addresses on your LAN you can use this nice command:&lt;br /&gt;&lt;br /&gt;FOR /L %i IN (1,1,254) DO ping -n 1 192.168.0.%i | FIND /i "Reply" &gt;&gt; c:\ipaddresses.txt&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-2649283383358893120?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='enclosure' type='' href='http://www.petri.co.il/quickly_find_used_ip_addresses.htm' length='0'/><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/2649283383358893120/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=2649283383358893120' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/2649283383358893120'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/2649283383358893120'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2009/07/quickly-find-used-ip-addresses-on-your.html' title='Quickly Find Used IP Addresses on Your Network'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-5429153724933419815</id><published>2008-08-20T17:41:00.003-05:00</published><updated>2008-08-20T17:54:38.350-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Panel DefaultButton LinkButton Ajax Safari Firefox'/><title type='text'>Using DefaultButton property of Panel with LinkButton control in ASP.NET</title><content type='html'>DefaultButton works fine on IE browsers but they don't act the they should on Firefox or Safari.&lt;br /&gt;&lt;br /&gt;After some research and tests, I've found very easy solution for the problem without a need of complicated Javascript or Custom Controls.&lt;br /&gt;&lt;br /&gt;The secret is create an asp:Button that will be the target of the DefaultButton and set a style "display:none" for it. Then, you have to add that control event:click to use the same event:click of the LinkButton that you are using to submit/post the content of the Panel.&lt;br /&gt;&lt;br /&gt;Let me show an example:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;HTML&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;asp:Panel ID="panel1" runat="server" DefaultButton="btnHiddenSubmit"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  New Status:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;  &amp;lt;asp:TextBox ID="txbNewStatus" runat="server" /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;  &amp;lt;asp:LinkButton ID="lnkBtnNewStatusCancel" runat="server" Text="Cancel" /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;  &amp;lt;asp:LinkButton ID="lnkBtnNewStatusSubmit" runat="server" Text="Submit" /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;  &amp;lt;asp:Button ID="btnHiddenSubmit" runat="server" /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;/asp:Panel&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CODE BEHIND:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:courier new;"&gt;Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;   btnHiddenSubmit.Attributes.Add("style", "display:none;")&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;br /&gt;End Sub&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Protected Sub lnkBtnNewStatusSubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles lnkBtnNewStatusSubmit.Click, btnHiddenSubmit.Click&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;  &lt;br /&gt;'Do what you need to do when you click the submit button&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;br /&gt;End Sub&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I hope that is clear enough...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-5429153724933419815?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/5429153724933419815/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=5429153724933419815' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/5429153724933419815'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/5429153724933419815'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2008/08/using-defaultbutton-property-of-panel.html' title='Using DefaultButton property of Panel with LinkButton control in ASP.NET'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-5154003336176360964</id><published>2008-01-29T23:14:00.000-05:00</published><updated>2008-01-29T23:17:14.578-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='NAS Freenas'/><title type='text'>NAS Software</title><content type='html'>One link: www.freenas.org.&lt;br /&gt;This is one of the best products that I have used in a long time. Very easy to install and setup and works like a charm and guess what? Totally free...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-5154003336176360964?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/5154003336176360964/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=5154003336176360964' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/5154003336176360964'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/5154003336176360964'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2008/01/nas-software.html' title='NAS Software'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-7093955615061661371</id><published>2007-12-04T19:11:00.000-05:00</published><updated>2007-12-04T19:23:14.910-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='DataFormatString GridView dateformat'/><title type='text'>DataFormatString inside GridView</title><content type='html'>If you are having problems formating dates inside a gridview, I have the solution. After some research, i've found this post on Microsoft Forums: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=475524&amp;SiteID=1.&lt;br /&gt;&lt;br /&gt;To format a date (or any other format for that matter) you have to turn-off the HtmlEncode for that bound. Ex.:&lt;br /&gt;&lt;br /&gt;&lt; asp:BoundField DataField="&lt;em&gt;fieldname&lt;/em&gt;" DataFormatString="{0:dd/MM/yy hh:mm tt}" HeaderText="&lt;em&gt;header&lt;/em&gt;" SortExpression="&lt;em&gt;sortexpression&lt;/em&gt;" /&gt;&lt;br /&gt;&lt;br /&gt;change to:&lt;br /&gt;&lt;br /&gt;&lt; asp:BoundField DataField="&lt;em&gt;fieldname&lt;/em&gt;" DataFormatString="{0:dd/MM/yy hh:mm tt}" &lt;b&gt;HtmlEncode="false"&lt;/b&gt; HeaderText="&lt;em&gt;header&lt;/em&gt;" SortExpression="&lt;em&gt;sortexpression&lt;/em&gt;" /&gt;&lt;br /&gt;&lt;br /&gt;That's it: HtmlEncode="false" is the secret.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-7093955615061661371?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/7093955615061661371/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=7093955615061661371' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/7093955615061661371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/7093955615061661371'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2007/12/dataformatstring-inside-gridview.html' title='DataFormatString inside GridView'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-3752234194268590456</id><published>2007-08-22T14:10:00.000-05:00</published><updated>2007-08-22T14:22:10.356-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='image cache browser refresh fileupload Response.Cache.SetCacheability OutputCache'/><title type='text'>Trick to not cache images for ASP.net</title><content type='html'>If you have a page which contains a image control for displaying a .gif or .jpeg file and you have an upload control to update this picture and after the postback you still have the old image displaying, you are been victim of browser caching controls. The imediate solution is refresh the browser to get the new picture.&lt;br /&gt;This happend because the browser things that the file/image is the same and doesn't refresh/reload the image to save processing/transfer time.&lt;br /&gt;&lt;br /&gt;The solution is add a param to the end of the image URL.&lt;br /&gt;&lt;br /&gt;I normally use (in VB):&lt;br /&gt;&lt;br /&gt;Dim mTimeStamp As DateTime = now&lt;br /&gt;image1.ImageUrl = "imagename.jpg" + "?" + mTimeStamp.Ticks.ToString&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-3752234194268590456?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/3752234194268590456/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=3752234194268590456' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/3752234194268590456'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/3752234194268590456'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2007/08/trick-to-not-cache-images-for-aspnet.html' title='Trick to not cache images for ASP.net'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-4370971501501968244</id><published>2007-08-11T15:26:00.000-05:00</published><updated>2007-08-11T15:36:43.111-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='div center alignment safari ie7 Firefox'/><title type='text'>DIV center alignment behaviour</title><content type='html'>Center alignment for DIV and browser &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_0"&gt;behaviour&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;IE works with just text-alignment: center&lt;br /&gt;For Safari and Firefox: position:relative; white-space: normal; text-align: center;&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;div style="float: left; margin: 10px; width:522px; position:relative; white-space: normal; text-align: center;"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-4370971501501968244?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/4370971501501968244/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=4370971501501968244' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/4370971501501968244'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/4370971501501968244'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2007/08/div-center-alignment-behaviour.html' title='DIV center alignment behaviour'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-4670286915803197408</id><published>2007-07-19T11:58:00.000-05:00</published><updated>2008-01-29T23:14:41.266-05:00</updated><title type='text'>Vista and Samba NAS Devices</title><content type='html'>If any of you are having problems with Vista logon to NAS devices running Samba, try:&lt;br /&gt;&lt;br /&gt;Run secpol.msc&lt;br /&gt;&lt;br /&gt;Go to: Local Policies &gt; Security Options&lt;br /&gt;&lt;br /&gt;Find "Network Security: LAN Manager authentication level"&lt;br /&gt;&lt;br /&gt;Change Setting from "Send NTLMv2 response only" to "Send LM &amp; NTLM - use NTLMv2 session security if negotiated"&lt;br /&gt;&lt;br /&gt;Vista defaults to only send the more secure NTLMv2 protocol, which these NAS devices / Samba do not support.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;(Quoted from: &lt;/span&gt;&lt;a href="https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=660925&amp;SiteID=1"&gt;&lt;span style="font-size:78%;"&gt;https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=660925&amp;amp;SiteID=1&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size:78%;"&gt;)&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-4670286915803197408?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/4670286915803197408/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=4670286915803197408' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/4670286915803197408'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/4670286915803197408'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2007/07/vista-and-samba-nas-devices.html' title='Vista and Samba NAS Devices'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-8696528281628083171</id><published>2007-07-17T23:27:00.001-05:00</published><updated>2007-07-17T23:32:31.367-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Samba Fedora 7 samba_share_t'/><title type='text'>Samba on Fedora</title><content type='html'>After suffering a bit installing Fedora 7, it came time to setup the Samba. This is the scenario: 2 Mac Minis, 4 iMacs, 1 Vista Pc, 1 MacBook, 1 Toshiba running XP Professional and a Fedora 7 running on a Core 2 Duo. After a lot of research, this line has saved me:&lt;br /&gt;&lt;strong&gt;chcon   -R   -t   samba_share_t   &lt;em&gt;/folder-that-you-are-sharing&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;After, of course, the proper setup of smb.conf under /etc/samba&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-8696528281628083171?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/8696528281628083171/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=8696528281628083171' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/8696528281628083171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/8696528281628083171'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2007/07/samba-on-fedora.html' title='Samba on Fedora'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-7252977771039280927</id><published>2007-07-17T23:18:00.000-05:00</published><updated>2007-07-17T23:25:08.265-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Austin Atlanta Moving Steers Queers'/><title type='text'>Steers and Queers (Not)</title><content type='html'>Finnaly we have arrived in Austin. Everything is going smoothly and we already have a home. Kelli got a new job and I'm still following the plans to come to Atlanta every couple weeks.&lt;br /&gt;I am happy that people believes on the saying "Texas has only steers and queers". That makes me believe that all this people that have not been in Austin doesn't know what they are talking about (and, therefore, not likely to overpopulate this fine and pleasant town).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-7252977771039280927?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/7252977771039280927/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=7252977771039280927' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/7252977771039280927'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/7252977771039280927'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2007/07/steers-and-queers-not.html' title='Steers and Queers (Not)'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2977332893095670102.post-5034710480073918838</id><published>2007-05-21T01:04:00.000-05:00</published><updated>2007-05-21T01:07:58.457-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hibernate windows vista not showing'/><title type='text'>Windows Vista Annoyances - Hibernate Not Working</title><content type='html'>If your hibernate mode is not showing as an option anymore, go to command prompt (or Start, Run) e type "&lt;em&gt;powercfg.exe /hibernate on&lt;/em&gt;".&lt;br /&gt;That will fix the problem.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2977332893095670102-5034710480073918838?l=ramphastos.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ramphastos.blogspot.com/feeds/5034710480073918838/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2977332893095670102&amp;postID=5034710480073918838' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/5034710480073918838'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2977332893095670102/posts/default/5034710480073918838'/><link rel='alternate' type='text/html' href='http://ramphastos.blogspot.com/2007/05/windows-vista-annoyances-hibernate-not.html' title='Windows Vista Annoyances - Hibernate Not Working'/><author><name>Fernando Agostini</name><uri>http://www.blogger.com/profile/00174663129251140982</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
