a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
14 lines
239 B
Plaintext
14 lines
239 B
Plaintext
<%@ Page Language="C#" %>
|
|
<%@ Import namespace="System.Web.Configuration" %>
|
|
|
|
<script runat="server">
|
|
|
|
void Page_Load ()
|
|
{
|
|
lbl.Text = WebConfigurationManager.AppSettings["testSetting"];
|
|
}
|
|
|
|
</script>
|
|
|
|
<asp:Label id="lbl" runat="server" />
|