ASPX code too run query
- by Akoori
I have web.config like below :
</appSettings>
<authentication mode="Windows" />
<authorization>
<allow users="*" /> <!-- Allow all users -->
</authorization>
<trace
enabled="false"
requestLimit="10"
pageOutput="false"
traceMode="SortByTime"
localOnly="true"
/>
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
****ieless="false"
timeout="30"
/>
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
/
I need an aspx code to run query with this connection string that there in this web.config
Regards