Ajax.aspx.cs
345 Bytes
using System;
namespace Quiz.WebSite.Common
{
public partial class Ajax : SiteBase.VerifyAjax
{
protected void Page_Load(object sender, EventArgs e)
{
string action = Request["action"];
if (!string.IsNullOrEmpty(action)) action = action.ToLower();
Verify(action);
}
}
}