Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 ASP.NET
 default startup not coming...

Author  Topic 

jhermiz

3564 Posts

Posted - 2005-02-17 : 15:21:27
Specified in my web config and my solution / project that my startup page should be login.aspx. But everytime I go to http://quikfix.jakah.com it just takes me to the high level "/" showing me all my files in my project allowing me to click on them.

I had originally thought it would go directly to my login.aspx like the other apps I have worked on in the past. Am I forgetting something?

Here's my web.config:


<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- Custom Settings tailored for the QuikFix application
strConn = The Connection string
-->
<appSettings>
<add key="strConn" value="User ID=blahblah;Password=youwantmypassword;Initial Catalog=QuikFix;Data Source=mylovelysqlserver;"/>
<add key="strAttachmentsPath" value="\\jakah-iis-2\QuikFix\attachments\"/>
</appSettings>
<!-- Settings for Web Services Threads
-->
<system.net>
<connectionManagement>
<add address="*" maxconnection="40" />
</connectionManagement>
</system.net>

<system.web>
<!-- DYNAMIC DEBUG COMPILATION
Set compilation debug="true" to insert debugging symbols (.pdb information)
into the compiled page. Because this creates a larger file that executes
more slowly, you should set this value to true only when debugging and to
false at all other times. For more information, refer to the documentation about
debugging ASP.NET files.
-->
<compilation defaultLanguage="vb" debug="true"></compilation>

<!-- CUSTOM ERROR MESSAGES
Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable.
Add <error> tags for each of the errors you want to handle.

"On" Always display custom (friendly) messages.
"Off" Always display detailed ASP.NET error information.
"RemoteOnly" Display custom (friendly) messages only to users not running
on the local Web server. This setting is recommended for security purposes, so
that you do not display application detail information to remote clients.
-->
<customErrors defaultRedirect="quikfixerror.aspx" mode="On" />


<!-- AUTHENTICATION
This section sets the authentication policies of the application. Possible modes are "Windows",
"Forms", "Passport" and "None"

"None" No authentication is performed.
"Windows" IIS performs authentication (Basic, Digest, or Integrated Windows) according to
its settings for the application. Anonymous access must be disabled in IIS.
"Forms" You provide a custom form (Web page) for users to enter their credentials, and then
you authenticate them in your application. A user credential token is stored in a cookie.
"Passport" Authentication is performed via a centralized authentication service provided
by Microsoft that offers a single logon and core profile services for member sites.
-->

<!-- We use Forms authentication to deny anonymous users
only authenticated users allowed to use the application.
If the user is not authenticated he / she is directed to the
'login.aspx' page by using the loginUrl property of the forms tag.
-->
<authentication mode="Forms">
<forms name=".QuikFixCookie" loginUrl="login.aspx" protection="All" path="/" timeout="60" />
</authentication>

<!-- AUTHORIZATION
This section sets the authorization policies of the application. You can allow or deny access
to application resources by user or role. Wildcards: "*" mean everyone, "?" means anonymous
(unauthenticated) users. We DO NOT place an authorization tag in the web.config file on the root
directory (this file) since we do not require end users to authenticate themselves to the files
residing in this directory.
-->
<authorization>
<deny users="?"/>
</authorization>

<!-- APPLICATION-LEVEL TRACE LOGGING
Application-level tracing enables trace log output for every page within an application.
Set trace enabled="true" to enable application trace logging. If pageOutput="true", the
trace information will be displayed at the bottom of each page. Otherwise, you can view the
application trace log by browsing the "trace.axd" page from your web application
root.
-->
<trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true"/>


<!-- SESSION STATE SETTINGS
By default ASP.NET uses cookies to identify which requests belong to a particular session.
If cookies are not available, a session can be tracked by adding a session identifier to the URL.
To disable cookies, set sessionState cookieless="true".
-->
<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="30"/>

<!-- GLOBALIZATION
This section sets the globalization settings of the application.
-->
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>

</system.web>
<!-- Allow all users to see Login.aspx -->
<location path="login.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>

<location path="forgotpwd.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>

<location path="register.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>

<location path="downloads.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>

<location path="quikfixerror.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>



Keeping the web experience alive -- [url]http://www.web-impulse.com[/url]
Imperfection living for perfection --
[url]http://jhermiz.blogspot.com/[/url]

jhermiz

3564 Posts

Posted - 2005-02-17 : 16:19:22
resolved cleared cache on ie arrrrrrrrrrr


Keeping the web experience alive -- [url]http://www.web-impulse.com[/url]
Imperfection living for perfection --
[url]http://jhermiz.blogspot.com/[/url]
Go to Top of Page

ehorn
Master Smack Fu Yak Hacker

1632 Posts

Posted - 2005-02-17 : 19:08:06
In memory of our long lost SQLTeam Poet Laureate:

when web pages seem wacky
and dont seem right
dont get bummed, or fuss or fight
sit back down... on your a$$
just remember... flush the cache

Man - I better not quit my day job..
Go to Top of Page

MichaelP
Jedi Yak

2489 Posts

Posted - 2005-02-17 : 19:26:53
<Yoda>Caching, path to the Dark side it is. Beat with Lightsaber, we must.</Yoda>

Michael

<Yoda>Use the Search page you must. Find the answer you will.</Yoda>
Go to Top of Page
   

- Advertisement -