|
Browse by Tags
All Tags » asp.net ( RSS)
-
|
This blog author has moved to iheartpowershell.com
|
-
|
If you have an IIS site that has a mixture of ASP.NET 1.1 and 2.0 virtual directories below it, changing the root site ASP.NET settings could affect the virtual directory ASP.NET settings as well since IIS inherits except for explicit overrides. This...
|
-
|
Extending on the small proof-of-concept I mentioned yesterday I created this simple data source control that lets you bind a Repeater or DataGrid to it like an ObjectDataSource control but it executes a PowerShell script to retrieve the results. <asp...
|
-
|
This is just a little concept project I am working on so I can run PowerShell scripts within my ASP.NET applications. As I am a server administrator, I love PowerShell + WMI, and bringing this power into ASP.NET my automation capabilities are being greatly...
|
-
|
using System; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Globalization; using System.IO; using System.Web; using System.Web.UI; using System.Web.UI.HtmlControls; public class SqlViewStatePage : Page { private...
|
-
|
USE ASPState GO DECLARE @jobID BINARY (16) SELECT @jobID = job_id FROM msdb.dbo.sysjobs WHERE name = N'ASPState_Job_ExpireViewState' IF (@JobID IS NOT NULL ) BEGIN IF EXISTS ( SELECT * FROM msdb.dbo.sysjobservers WHERE job_id = @JobID AND server_id...
|
-
|
A while ago, several colleges of mine were having a terrible time with the loading times of some pages of their web application. Come to find out, they were suffering from ViewState bloat. ViewState was something I always tried to stay away from in the...
|
More Posts
|
|
|