Posted on: 1/19/2015 6:41:22 PM | Views : 512

Is there a way with the below code that I can pass certain parameters based the end of the "url: "TestJQueryListaspx.aspx/GetAllTimeZones" on the $.ajax call to this page to pull a specific value from the database via json?
Code below:
.Aspx Code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestJQueryListaspx.aspx.cs" Inherits="TestJQueryListaspx" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title></title> <script src="../Scripts/jquery-1.7.1.min.js" type="text/javascript"></script> <script type="text/javascript"> ...

Go to the complete details ...