i want to read appsetting from web.config file on my aspx page but this is not success that i try . What i doing wrong here
Below is my web.config setting
<appSettings>
<add key="SECURE_URL" value="https://wwww.astrick.com"/>
</appSettings>
And Below is aspx page part where want to read this
<form action="<%=System.Configuration.ConfigurationManager.AppSettings("SECURE_URL")%>/park/notice/payment.asp"
method="post">
<div>
<ul>
<li><strong>Search By Parking Violation Number</strong>
<ul>
<li>
<div style="width: 200px; float: left;">
Parking Violation Number</div>
<div style="width: 200px; float: left;">
<input type="text" class="input1" name="Parking_Ticket_Number" size="15" maxlength="255" /></div>
<div style="width: 150px; float: left;">
<input type="submit" class="submit1" value="Search " /></div>
<br style="clear: both;" />
</li>
</ul>
</li>
</ul>
</div>
</form>
i also import the <%@ Import Namespace="System.Configuration" %>
on my page. Here i want to say that i am using inline code on my page . Thanks to read question and give me help .