0

I need to use System.Web.Script.Serialization which is located at System.Web.Extensions assembly. but in my vs 13 environment reference>assembly>framework the System.Web.Extensions is not showing. what is my project missing?

Raihan Ridoy
  • 678
  • 8
  • 18

2 Answers2

2

You can get from this location

C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Web.Extensions.dll

Reference

https://stackoverflow.com/questions/4520569/where-can-i-find-the-assembly-system-web-extensions-dll
Noor All Safaet
  • 438
  • 6
  • 19
2

Do these step by step

  1. Right Click you project Select Properties
  2. Change your Target Framework to ".NET Framework 4"
  3. Do whatever you need to do to save the changes and close the preferences tab
  4. Right click on the References item in your Solution Explorer
  5. Choose Add Reference...
  6. In the .NET tab, scroll down to System.Web.Extensions and add it.