Posts tagged “ASP.Net”
IIS 7 ApplicationPoolIdentity and SQL Server
IIS 7 introduced a new way to secure application pool processes from tampering with other application pools. It does this by using windows Virtual Accounts, something that isn’t used very often and most people aren’t famaliar with. To learn more about it, take a look at http://learn.iis.net/page.aspx/624/application-pool-identities More importantly, if you want to use Windows [...]
ASP.Net Data Controls + JavaScript Hell
Either my Google skills are considerably lacking tonight, or very few people have tried to do what I am. I have a web form that contains a DataRepeater, each ItemTemplate containing three textboxes (Quantity, Price, Total), and a DropDownList. All these are easily manipulated using the DataRepeater’s Items property, and they’re all easily assigned to [...]