Although I have only dabbled in ASP.NET for simple tasks recently, I am eager to tackle a more challenging project.
My goal is to utilize ASP.NET and Javascript to:
- Create a web page, such as Default.aspx, that calls a web service
- The web service (possibly SOAP) will return a series of integers in JSON format (e.g. 1,2,3,4,7,9)
- Javascript will then iterate through all child div elements within a wrapper div and verify that divs with id 1, 2, 3, 4, 7, and 9 exist; removing any that do not.
While my usual approach involves REST web services and jQuery, I understand that SOAP is the preferred method in ASP.NET.