Posts by user1953491 • 1 point
2 posts
-
0
votes1
answer279
viewsA: How to create a TRIGGER for an INSERT event without causing a lock in the Sqlserver table
One option would be to use the NOLOCK command. It warns the SQL Server processor to avoid using locks (LOCK) while reading data. However, SQL Server keeps using locks during data modification…
-
0
votes2
answers747
viewsA: Webmethod is not called (fired) through the Pagemethod
Buddy, the problem wasn’t because of System.Web.Optimization. Actually, the problem is because of why To make this Pagemethod call work in your Webforms application you need to change the…