By Matthew Hunt on
10/9/2008 11:23 AM
After many failed attempts to install both the .Net Framework 3.0 and/or 3.5 standalone it kept failing on my development machine, it installed with no problems on all of my other computers. I tried many different resolutions that I found all over the internet, from changing registry permissions to uninstalling the .Net Fr
Read More »
|
By MattHunt on
8/6/2008 12:25 PM
If your drop down menu disappears behind your flash file in either Internet Explorer or Mozilla Firefox, there is an easy fix for this. In your html code, add the following code to your flash file. < name="wmode" value="transparent"> Before Fix
 After Fix
 This will make the flash file transparent and your menu will be seen. Code Example : < src="http://www.website/flashfile.swf" width="500" height="333" scale="ShowAll" play="true" loop="true" menu="true" ...
Read More »
|
By MattHunt on
8/6/2008 12:19 PM
It is not possible to run two different versions of ASP.NET in the same IIS process. Please use the IIS Administration Tool to reconfigure your server to run the application in a separate process.
Read More »
|
By MattHunt on
8/6/2008 12:11 PM
When recently upgrading a server from Windows 2000 to Windows Server 2003 it was noticed that the the Application Pool option was not available. After fishing around for a while it was found that IIS was running under IIS 5.0 Isolation mode. To resolve issue here are the steps that were followed:
- Right click on "Websites" and click on "Properties".
- Click on "Service" tab, uncheck the isolation mode check box.
- You will be asked Do you want to restart your IIS now?, Click Yes.
...
Read More »
|
By MattHunt on
8/5/2008 12:46 PM
This is a web.config configuration that allows you to customize the database you are using for your User Role management provider in asp.net 2.0.
<!-- ============================================= -->
<?xml version="1.0" encoding="UTF-8" ?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<connectionStrings>
<remove name="DBWinAuth"/>
<add name="DBWinAuth" connectionString="Data Source=YourDS_ADDRESS;Initial Catalog=YOURDBNAME;Integrated Security=SSPI"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<roleManager enabled="true" ...
Read More »
|
By Matthew Hunt on
8/5/2008 12:20 PM
Constant Hard Disk Paging in Vista Ultimate "wermgr.exe"
Read More »
|
By Matthew Hunt on
8/5/2008 12:16 PM
With the advent of recent security breaches and loss of millions of private data records stored on government and corporate computers, along with an ever growing list of federal and corporate regulations to enforce compliance; there has become an ever increasing requirement to secure access to the data that is stored on electronic devices, while assuring that users whom have access to these computers are who they say they are, and enforcing policies on securing organizational infrastructures.
|
By Matthew Hunt on
8/5/2008 12:15 PM
Access 2003 Runtime Error 429 - ActiveX Component Can't Create Object
Read More »
|
By MattHunt on
7/14/2008 1:14 PM
Simple ASP.NET 2.0 Web Form to Email
Uses
System.Net.Mail
Full Source Code Available
Read More »
|