Reputation: 4319
I am using webservice.Its working in website.There is a namespace in webservics i.e
using System.Web.Script.Services;
I have started a project in which i am not getting namespace
using System.Web.Script.Services;
So that webservice is not working.Is there any options to get this namespace in project.
Can anybody help?
Upvotes: 0
Views: 63
Reputation: 18381
I believe you need to add a reference to System.Web.Extensions.
Upvotes: 2
Reputation: 82355
You should add a reference at the project level, right click your project file in the solution explorer panel and select add reference. Then browser for the appropriate library.
You can see the msdn on how to add/remove references in visual studio.
Upvotes: 0