Skip to main content

Posts

Load data dynamically on page scroll using jQuery, AJAX, and ASP.NET

How to fetch database records dynamically on browser page scroll down using jQuery AJAX and ASP.Net.                Source from : http://aspsnippets.com/Articles/Load-data-while-Scrolling-Page-down-with-jQuery-AJAX-and-ASPNet.aspx http://www.codeproject.com/Tips/345388/Load-data-dynamically-on-page-scroll-using-jQuery http://code.msdn.microsoft.com/Load-large-dataset-with-2fc4ab56 http://aspsnippets.com/demos/382/ http://forums.asp.net/p/1891071/5334891.aspx?Re+In+webmatrix+Load+DB+Data+while+page+Scrolling+Page+Down http://aspsnippets.com/Articles/Load-on-demand-data-in-GridView-on-scroll-using-ASPNet-and-jQuery-AJAX.aspx

Bing Code Search Makes Developers More Productive using VS2013

The Bing Code Search add-in for Visual Studio 2013 makes it easier for .NET developers to search for and reuse code samples from across the coding community,  including  MSDN ,  StackOverflow ,  Dotnetperls  and  CSharp411 . Bing Code Search improves developer productivity and speed by bringing the experience of searching for reusable C# code into Visual Studio IDE. Check out this demo video for more info Source From : http://blogs.technet.com/b/inside_microsoft_research/archive/2014/02/17/bing-code-search-makes-developers-more-productive.aspx http://rionscode.wordpress.com/2014/02/17/introducing-bing-code-search-an-easy-way-to-find-code-samples-from-within-visual-studio-2013/

Walk In Interviews For Web Designers In Hyderabad

URGENT WALK – IN – INTERVIEWS FOR WEB DEVELOPERS Vacancy for Web Developers(UI/UX ) Skills Required:    HTML 4/5,   Adobe CS3 and above    JQuery & Java Script,   Adobe Flash    Knowledge on Web Responsive Design, CSS Scripts    Web responsive Design frameworks     Having HTML 5, CSS 6 & Knowledge on Web Responsive Design are added advantage Qualification:  Any Degree Fresher (or) Experienced   Date & time From 06/30/2014 to 07/05/2014  Morning 11Am onwards daily . Venue Details  SYNC APPS ONLINE VENTURES PVT LTD. H.No 8-3-318-11-4B , Jayaprakash Nagar, Ameerpet, Andhra Pradesh , Hyderabad 500073 040-64 61 89 89 - 040-68 68 68 68 , 9703697038 www.easybus.in , www.syncrooms.com . Landmark : Take left beside Value Mart Supermarket Mail your resumes to :  jobs@easybus.in Please attach your des...

How to post data using httpwebrequest in asp.net

How to post data using Httpwebrequest class  in asp.net  - H ow to post data from one website to another site using HttpWebRequest class .... Related posts    How to insert multiple Checkboxlist value into database in asp.net   You need to import the following namespaces C# using System.Text; using System.Net; using System.IO; Sample code refer  protected void SendrequestToBookroom()     {         string URI = "your url ";         System.Net.WebRequest req = System.Net.WebRequest.Create(URI);         //Add these, as we're doing a POST         req.ContentType = "application/x-www-form-urlencoded";         req.Method = "POST";         //We need to count how many bytes we're sending.          //Post'ed  Forms should be name=value& ...

JSON.NET Deserialize objects within object array of objects and objects

Problem  :  I have a situation where an EAN API I'm using is returning inconsistent JSON , which I want to deserialize  using JSON.NET.  In one case, it returns an object that contains objects and another another case returning only one object Related posts  Key Differences between XML and JSON Sample Response : {    "1":{       "0":{          "db_id":"12835424",          "title":"XXX"       },       "1":{          "db_id":"12768978",          "title":"YYY"       },       "2":{          "db_id":"12768980",          "title":"ZZZ"       },     } ...

Key Differences between XML and JSON

Comparing JSON to XML Both JSON and XML can be used to represent native, in-memory objects in a text-based, human-readable, data exchange format. Furthermore, the two data exchange formats are isomorphic—given text in one format, an equivalent one is conceivable in the other. For example, when calling one of web services , you can indicate via a querystring parameter whether the response should be formatted as XML or JSON.     Therefore, when deciding upon a data exchange format, it's not a simple matter of choosing one over the other as a silver bullet, but rather what format has the  characteristics  that make it the best choice for a particular application. For example, XML has its roots in marking-up document text and tends to shine very well in that space (as is evident with XHTML). JSON, on the other hand, has its roots in programming language types and structures and therefore provides a more natural and readily available mapping to exc...

How to alias json response model properties in ASP.Net Web API

If you want to return objects from action methods in Web Api with JSON style lowercase names, is there a way to alias the property names so that the C# object below looks like the JSON object that follows. Sample C# Response Model     public class Account     {         public int Id { get; set; }         public string AccountName { get; set; }         public decimal AccountBalance { get; set; }     } JSON that I'd like to be returned     {         "id" : 12,         "account-name" : "Primary Checking",         "account-balance" : 1000     } Answer  :  Yes   You can use JSON.NET's JsonProperty  public class Account     {         [JsonProperty(PropertyName="id")]         public int Id { get; set; }       ...