D
Darrel
I'd like to use the jquery datepicker.
I have a asp.net 1.1 application set up with forms authentication protecting
an admin directory:
<location path="admin">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
All works just fine.
I'm now trying to add the jquery.js file:
<script src="jquery-ui.min.js"></script>
as soon as I do that, when I try and run my application, I get the windows
authentication pop-up dialog box.
Why?
I thought maybe it was because I was accessing the .js file in my admin
folder (though that's odd, as I'm using TinyMCE, which also has .js files in
my admin folder) so I tried moving it outside my admin folder:
<script src="../js/jquery-ui.min.js"></script>
Still, same problem. Anyone know why this is happening? I thought ASP.net
1.1 ignored authentication on any non-.aspx files.
-Darrel
I have a asp.net 1.1 application set up with forms authentication protecting
an admin directory:
<location path="admin">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
All works just fine.
I'm now trying to add the jquery.js file:
<script src="jquery-ui.min.js"></script>
as soon as I do that, when I try and run my application, I get the windows
authentication pop-up dialog box.
Why?
I thought maybe it was because I was accessing the .js file in my admin
folder (though that's odd, as I'm using TinyMCE, which also has .js files in
my admin folder) so I tried moving it outside my admin folder:
<script src="../js/jquery-ui.min.js"></script>
Still, same problem. Anyone know why this is happening? I thought ASP.net
1.1 ignored authentication on any non-.aspx files.
-Darrel