using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class int_2020_testing : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { string gotoUrl = Server.UrlEncode(url.Text); string testLink = "https://cluster.awmserve.com/int_2020/toptest.html?title=Testing&goto=" + gotoUrl; string testLink2 = "https://cluster.awmserve.com/int_2020/top-xframe.html?title=Testing&goto=" + gotoUrl; string testLink3 = "https://cluster.awmserve.com/int_2020/toptest-viewport.html?title=Testing&goto=" + gotoUrl; string testLink4 = "https://cluster.awmserve.com/int_2020/toptest-viewport-sm.html?title=Testing&goto=" + gotoUrl; HyperLink1.Text = "Click To Test If Website Can be Framed"; HyperLink1.NavigateUrl = testLink; HyperLink1.Target = "_blank"; HyperLink1.Visible = true; HyperLink2.Text = "Click To Test With IFRAME Buster Disabled"; HyperLink2.NavigateUrl = testLink2; HyperLink2.Target = "_blank"; HyperLink2.Visible = true; HyperLink3.Text = "Click To Test Website with Viewport On"; HyperLink3.NavigateUrl = testLink3; HyperLink3.Target = "_blank"; HyperLink3.Visible = true; HyperLink4.Text = "Click To Test Website with Viewport On Scaled 2.0"; HyperLink4.NavigateUrl = testLink4; HyperLink4.Target = "_blank"; HyperLink4.Visible = true; } }