Add Hyperlinks to an ASP.Net BulletList CapturedTech - Technology - Patrick Stevens Mar 04 2009 318 0 Add Hyperlinks to an ASP.Net BulletList I had the need to add hyperlinks to an asp.net server bulletlist today and found some very good examples online including the following example. This example defines a datasetdatasource as an xml file and them loads the values of the xml file into the bulletlist with hyperlinks included. Easy implementation and clear separation of the control and the data to be displayed by the control. Read more ...
BizSpark from Microsoft CapturedTech - Technology - Patrick Stevens Feb 24 2009 476 1 BizSpark from Microsoft If you are starting an online software development company or considering starting one, Microsoft has developed a program that will allow your small company to use their exceptional tools and grow quicker than otherwise possible. Through the companies Startup Zone at www.microsoftstartupzone.com, you can participate in their BizSpark program for up to three years annually renewed. Read more ...
Overwriting the NoFollow Tag with DoFollow CapturedTech - Technology - Patrick Stevens Feb 13 2009 273 28 Overwriting the NoFollow Tag with DoFollow DotNetNuke is the platform that 6 blogs are developed with that I am the administrator for. But the more I use Wordpress, the more I think I should convert them because of the great SEO and free plugin availability. With Wordpress there's a simple plugin that will change the default NoFollow rel tag on comments to DoFollow. This provides your readers the ability to gain links with Google and other search engines when they comment. Read more ...
Reindexing SQL Server Tables CapturedTech - Technology - Patrick Stevens Feb 13 2009 237 3 I had the need to reindex all the tables in a SQL Server 2005 database this week and found some very good scripts that loop through the list of user tables using a cursor and reindex each table to improve performance and reduce the size of the data file. In addition I used the dbcc command to shrink the database after the reindexing had completed. Below is the code used. Read more ...
Darksma Trojan and Other Bugs CapturedTech - Technology - Patrick Stevens Feb 04 2009 930 1 Darksma Trojan and Other Bugs I recently found the Darksma Trojan and other similar viruses on one of my home computers and spent a number of weeks cleaning the system. I found three tools to be very helpful in removing these difficult to delete bugs; CA Yahoo! Anti-Spy, Malwarebytes, and ComboFix. Read more ...
Export and ADO Recordset to Excel CapturedTech - Technology - Patrick Stevens Jan 29 2009 263 0 Export and ADO Recordset to Excel If you're in need to taking an ADO Recordset from an Access Database of a .Net Application and saving that data programmatically to an Excel file, the following procedure will do a very good job of completing the conversion. By Steve Patterson You can modify the SaveAs command towards the end of the function to save the file in a different location with a different name or you can add the value as a parameter to the subroutine. There is also a Visible flag near the end of the procedure which will show the Excel file after it is created. This would also be a very good value to pass into the subroutine. Read more ...
Finding Good Video Content as Easy as Channel 9 CapturedTech - Technology - Patrick Stevens Jan 22 2009 155 0 Finding Good Video Content as Easy as Channel 9 I often go to the Central Ohio .Net Developers Group at a Microsoft Office here in Central Ohio. But when I am sometimes unable to go due to schedule I try to read the presenter's blog or find similar content online as to what I would have found at the meeting. Channel9.msdn.com is a great resource from Microsoft with video from Microsoft presenters and Microsoft employees on all topics Microsoft. Read more ...
Subtext and Koders.com CapturedTech - Technology - Patrick Stevens Jan 14 2009 167 0 Subtext and Koders.com I was listening to DotNet Rocks show 261 Phil Haack on Subtext and Open Source about Subtext and www.Koders.com. Give the podcast a listen if you get the chance as it is worth the time in the car or on the train. Subtext is an open source CMS framework similar to DotNetNuke, Wordpress, Joomla, etc. The three frameworks just mentioned are the three that I have built sites with and www.CapturedTech.com is built with DotNetNuke using 95% of the default modules. Read more ...
Clearing a text box in ASP.Net using Javascript CapturedTech - Technology - Patrick Stevens Jan 13 2009 193 0 Clearing a text box in ASP.Net using Javascript I was looking for a way to clear a textbox on focus in an ASP.Net application today and found some Microsoft examples using scripts in the Markup language and then referencing the script using the old onfocus="SomeFunction();". But then I found the best way that works easily and keeps the code in the code behind. Read more ...
Testing a SQL Server Connection on a Remote Server CapturedTech - Technology - Patrick Stevens Jan 02 2009 183 1 If you are establishing a web server or an application server and need to test the database connectivity from the new server back to the database server, writing a quick visual basic script that produces the feedback needed is an easy solution. Below is the code from a vbs file with the connection information left out. Just complete the connection information and run the script from the new remote server. Read more ...