FineUI/FineUI.Examples/other/authentication_timeout_async.aspx.cs
三生石上 79ad9e6bc2 v4.2.3
2016-01-10 01:19:30 -05:00

24 lines
564 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUI.Examples.other
{
public partial class authentication_timeout_async : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button2_Click(object sender, EventArgs e)
{
Response.Redirect(ResolveUrl("~/default.aspx?ReturnUrl=%2fother%2fauthentication_timeout_async.aspx"));
}
}
}