Click here to Skip to main content
15,896,111 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How create .css file or .txt file dynamically Pin
Christian Graus15-May-08 20:48
protectorChristian Graus15-May-08 20:48 
QuestionERROR [S1000] [Microsoft][ODBC Visual FoxPro Driver]Cannot update the cursor Pin
wongeva15-May-08 19:27
wongeva15-May-08 19:27 
AnswerRe: ERROR [S1000] [Microsoft][ODBC Visual FoxPro Driver]Cannot update the cursor Pin
eyeseetee15-May-08 21:20
eyeseetee15-May-08 21:20 
Questionpointing to the wrong DB Pin
zaimah15-May-08 16:06
zaimah15-May-08 16:06 
AnswerNote to CP members Pin
leckey15-May-08 16:53
leckey15-May-08 16:53 
GeneralRe: Note to CP members Pin
Christian Graus15-May-08 16:55
protectorChristian Graus15-May-08 16:55 
QuestionRe: Note to CP members Pin
zaimah15-May-08 17:04
zaimah15-May-08 17:04 
Questionthis is my web.config Pin
zaimah15-May-08 17:08
zaimah15-May-08 17:08 
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="strConn" value="data source=MISKPI;User ID=sysadm;Password=sysadm;Initial Catalog=SPGALatihan;Persist Security Info=True;"/>
</appSettings>
<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"><assemblies><add assembly="CrystalDecisions.CrystalReports.Engine, Version=9.1.5000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportSource, Version=9.1.5000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Shared, Version=9.1.5000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Web, Version=9.1.5000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/></assemblies></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 mode="RemoteOnly"/>

<!-- 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.
-->
<authentication mode="Windows"/>


<!-- 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.
-->
<authorization>
<allow users="*"/> <!-- Allow all users -->

<!-- <allow users="[comma separated list of users]"
roles="[comma separated list of roles]"/>
<deny users="[comma separated list of users]"
roles="[comma separated list of roles]"/>
-->
</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="20"/>

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

</system.web>

</configuration>
AnswerRe: this is my web.config Pin
Christian Graus15-May-08 17:21
protectorChristian Graus15-May-08 17:21 
QuestionRe: this is my web.config Pin
zaimah15-May-08 17:25
zaimah15-May-08 17:25 
AnswerRe: this is my web.config Pin
Christian Graus15-May-08 17:35
protectorChristian Graus15-May-08 17:35 
QuestionRe: this is my web.config Pin
zaimah15-May-08 17:59
zaimah15-May-08 17:59 
AnswerRe: this is my web.config Pin
Christian Graus15-May-08 18:12
protectorChristian Graus15-May-08 18:12 
QuestionRe: this is my web.config Pin
zaimah15-May-08 20:36
zaimah15-May-08 20:36 
AnswerRe: this is my web.config [modified] Pin
eyeseetee15-May-08 21:19
eyeseetee15-May-08 21:19 
GeneralRe: this is my web.config Pin
zaimah15-May-08 21:26
zaimah15-May-08 21:26 
GeneralRe: this is my web.config Pin
Blue_Boy15-May-08 21:41
Blue_Boy15-May-08 21:41 
GeneralRe: this is my web.config Pin
Christian Graus15-May-08 23:02
protectorChristian Graus15-May-08 23:02 
GeneralRe: this is my web.config Pin
eyeseetee15-May-08 23:46
eyeseetee15-May-08 23:46 
QuestionASP.NET Editable Drop Down List Pin
J Liang15-May-08 15:58
J Liang15-May-08 15:58 
AnswerRe: ASP.NET Editable Drop Down List Pin
Christian Graus15-May-08 16:00
protectorChristian Graus15-May-08 16:00 
AnswerRe: ASP.NET Editable Drop Down List Pin
Laddie15-May-08 19:43
Laddie15-May-08 19:43 
GeneralRe: ASP.NET Editable Drop Down List Pin
J Liang15-May-08 22:10
J Liang15-May-08 22:10 
QuestionHelp me in choosing the VB.Net Software Pin
avin200315-May-08 8:05
avin200315-May-08 8:05 
AnswerRe: Help me in choosing the VB.Net Software Pin
Blue_Boy15-May-08 10:10
Blue_Boy15-May-08 10:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.