Dot Net Archive

0

ASP.NET 2.0 MasterPages and FindControl() – Rick Strahl’s Web Log

ASP.NET 2.0 MasterPages and FindControl() – Rick Strahl’s Web Log
ASP.NET 2.0 MasterPages and FindControl()

0

ASP.NET AJAX Control Toolkit

ASP.NET AJAX Control Toolkit
Welcome to the ASP.NET AJAX Control Toolkit sample website. Please choose from any of the samples on the left.

0

API Listing – ProgrammableWeb

API Listing – ProgrammableWeb

A complete list of API’s

0

Enable Broker on SQL 2005

ALTER DATABASE XXXX SET NEW_BROKER WITH ROLLBACK IMMEDIATE

0

Master Page & Find Control

How to find a control on a Master Page
ContentPlaceHolder cph = this.Form.FindControl(“ContentPlaceHolder1″) as ContentPlaceHolder;

TextBox ctrlInput = (TextBox)cph.FindControl(“mycontrol”);

0

ReSharper on Visual Studio 2008

How to add resharper to Visual Studio 2008 Team Suite :
Run at the Command Prompt
msiexec /i ReSharperSetup.3.0.1.msi VSVERSION=9.0

0

HowTo: Create a SQL Server Reporting Services Report from a Stored Procedure

When creating the report with the wizard, if this parameter has no default value, you’ll have to do something like this: EXEC usp_MyStoredProcedure ‘Value Name’ in order to get through the wizard.

It will pre-populate the Data Values for you.