Step 27
In this step, we will setup aspnet_client files (asp27.jpg).
# Set aspnet_client files
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
Step 28
Finally, we need to set permissions for ASP.net scripts in temp folder, and of course with all options needed to access that temp folder (asp28.jpg).
# Allow asp.net scripts to be executed in the temp folder
Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles"
Step 29
The moment of true, it's time to try out this simple ASP.net script (asp29.jpg).
<% Dim I As Integer
For I = 0 to 7 %>
<font size="<%=I%>"> Simple ASP.NET TEST</font> <br>
<% Next %>