Skip to content

Instantly share code, notes, and snippets.

@klpatil
Created October 22, 2019 03:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klpatil/97e85c27066065f20d6940c885f1a369 to your computer and use it in GitHub Desktop.
Save klpatil/97e85c27066065f20d6940c885f1a369 to your computer and use it in GitHub Desktop.
Single File ASPX Page
<%@ Page Language="C#" AutoEventWireup="true" Debug="true" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<%@ Import Namespace="System" %>
<%--Author : Kiran Patil
Version : 1.0.0.0--%>
<script language="C#" runat="server">
private void Page_Load(object sender, EventArgs e)
{
try
{
if (!IsPostBack)
{
//var hotFixData = GetHotFixData();
//ShowHotFixList(hotFixData);
}
}
catch (Exception ex)
{
//litMessage.Text =
// "Something went wrong while loading hotfix checker : " + ex.Message
// + ". Please check log file for more details.";
//Sitecore.Diagnostics.Log.Error(litMessage.Text
// , ex, this);
}
}
</script>
<html>
<head>
<title>Azure Explorer - BETA</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<div>
Hello World!
</div>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment