Replace "Search_String", below, with the string you want to find.
SELECT ROUTINE_NAME, ROUTINE_DEFINITION
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_DEFINITION LIKE '%Search_String%'
AND ROUTINE_TYPE='PROCEDURE'
Thursday, October 08, 2009
My test project will not build and it indicates that the proper reference is not set. So where is "Microsoft.VisualStudio.QualityTools.UnitTestFrameWork.dll" and how do I get it? You already have it.
...%VSINSTALLDIR%\Common7\IDE\PublicAssemblies
Add the reference to the bin directory and you're all set.
...%VSINSTALLDIR%\Common7\IDE\PublicAssemblies
Add the reference to the bin directory and you're all set.
Tuesday, October 06, 2009
If you get this error message "Only one instance of a ScriptManager can be added to the page.", make sure you have a .aspx page set as "start page" before wasting a lot of valuable time searching for an answer. I unfortunately did waste the time to look up the error with no one knowing the cause.
At first glance, it appears that you put a "ScriptManager" control on two pages like master page as well as .aspx page. After seaching high and low, I figured out the problem. Cheers!
At first glance, it appears that you put a "ScriptManager" control on two pages like master page as well as .aspx page. After seaching high and low, I figured out the problem. Cheers!
Subscribe to:
Posts (Atom)