Here is a link where Javascript Object Notation (JSON) is explained well. Also, it has a good collection of related links. Cheers!
Monthly Archives: August 2008
Simple Cascading Drop Down List using ASP.Net AJAX – Part 2
Earlier post we saw, how to do a simple cascaded dop down using ASP.Net AJAX. In this post we will modify that code to use JSON to pass objects back from server side to client side. (Read more about JSON )here.) Here is the server side code (explanations inline), public partial class _Default : System.Web.UI.Page { /* This is our entity object. IComparable implementation helps me to * sort the list of cars using …
Update to post: HOWTO: Get rid of ” Could Not Establish Trust Relationship with Remote Server” error
Read original post here.Older methods are now obselete. Use the following… ……System.Net.ServicePointManager.ServerCertificateValidationCallback += new System.Net.Security.RemoteCertificateValidationCallback(RemoteCertValidateCallback);… and callback method… public static bool RemoteCertValidateCallback(object sender, X509Certificate cert, X509Chain chain, System.Net.Security.SslPolicyErrors error) { return true; } or you can simply use (in c# only) anonnymous method, System.Net.ServicePointManager.ServerCertificateValidationCallback += delegate ( object sender, X509Certificate cert, X509Chain chain, System.Net.Security.SslPolicyErrors error ) { return (true); };

Recent Comments