-
Posted to
IIS 7 - Troubleshooting
by
shailensukul
on
05-10-2008, 7:06 AM
Thank you for the pointer.
Skype was indeed hogging port 80 and turning it off solved my problem as well.
-
Posted to
General
by
shailensukul
on
10-11-2005, 8:06 PM
try :
www.tinyurl.com
www.shrinkster.com
-
Posted to
Classic ASP
by
shailensukul
on
10-08-2005, 7:35 PM
the following *should* work.give it a go and see how it goes:CREATE PROCEDURE usp_GetInfo ( @AccountNumber varchar(20), @PinNumber varchar(4) )ASSET @AccountNumber = '%' + @AccountNumber + '%'SET @PinNumber = '%' + @PinNumber + '%' SELECT * FROM ...
-
Posted to
Classic ASP
by
shailensukul
on
10-07-2005, 12:05 AM
try the following:
replace the exec with:
SELECT *
FROM tblPhone_Numbers
WHERE Client_Phone_Number LIKE '%' + @AccountNumber + '%'
AND Client_Pin_Number LIKE '%' + @PinNumber + '%'