Click here to Skip to main content
15,886,789 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: dropdown Pin
Ashutosh Phoujdar29-Jan-09 22:09
Ashutosh Phoujdar29-Jan-09 22:09 
QuestionRegistry access Pin
siva45529-Jan-09 19:02
siva45529-Jan-09 19:02 
AnswerRe: Registry access Pin
N a v a n e e t h29-Jan-09 19:20
N a v a n e e t h29-Jan-09 19:20 
GeneralRe: Registry access Pin
siva45529-Jan-09 19:40
siva45529-Jan-09 19:40 
GeneralRe: Registry access Pin
N a v a n e e t h29-Jan-09 21:09
N a v a n e e t h29-Jan-09 21:09 
GeneralRe: Registry access Pin
siva45529-Jan-09 21:30
siva45529-Jan-09 21:30 
AnswerRe: Registry access Pin
Ashutosh Phoujdar29-Jan-09 22:14
Ashutosh Phoujdar29-Jan-09 22:14 
GeneralRe: Registry access [modified] Pin
siva45529-Jan-09 22:24
siva45529-Jan-09 22:24 
Hi ,
The below is my web.config... please have a look
Actually the below is web.config for AJAX ENabled ASP.net web application
It"s a plain application ie no code wa written in cs file...
Really im struggling frm 2 days please try to help me out...


below is web.config...


<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>

<system.web>
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</controls>
</pages>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<trust level="Full" originUrl="" processRequestInApplicationTrust="false"/>
<compilation debug="false">
<assemblies>
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</assemblies>
</compilation>

<httpHandlers>
<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
</httpHandlers>

<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</httpModules>
</system.web>

<system.web.extensions>
<scripting>
<webServices>
<!-- Uncomment this line to customize maxJsonLength and add a custom converter -->
<!--
<jsonSerialization maxJsonLength="500">
<converters>
<add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/>
</converters>
</jsonSerialization>
-->
<!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. -->
<!--
<authenticationService enabled="true" requireSSL = "true|false"/>
-->

<!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved
and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and
writeAccessProperties attributes. -->
<!--
<profileService enabled="true"
readAccessProperties="propertyname1,propertyname2"
writeAccessProperties="propertyname1,propertyname2" />
-->
</webServices>
<!--
<scriptResourceHandler enableCompression="true" enableCaching="true" />
-->
</scripting>
</system.web.extensions>

<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules>
<add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</modules>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated" />
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode"
type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode"
type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
</configuration>

modified on Friday, January 30, 2009 4:30 AM

GeneralRe: Registry access Pin
Ashutosh Phoujdar29-Jan-09 23:13
Ashutosh Phoujdar29-Jan-09 23:13 
GeneralRe: Registry access Pin
siva45529-Jan-09 23:55
siva45529-Jan-09 23:55 
QuestionHow to access a control of a Master Page? Pin
zinzil29-Jan-09 18:22
zinzil29-Jan-09 18:22 
AnswerRe: How to access a control of a Master Page? Pin
Spunky Coder29-Jan-09 18:56
Spunky Coder29-Jan-09 18:56 
QuestionCreating a Search Control Pin
scotchy2hotty2k229-Jan-09 18:19
scotchy2hotty2k229-Jan-09 18:19 
QuestionClick Once - Publish.html - not recognizing framework 2.2.30729 Pin
N.Surendra Prasad29-Jan-09 17:58
N.Surendra Prasad29-Jan-09 17:58 
QuestionHiding WebForm in ASP.NET Pin
siddisagar29-Jan-09 17:05
siddisagar29-Jan-09 17:05 
AnswerRe: Hiding WebForm in ASP.NET Pin
N a v a n e e t h29-Jan-09 17:42
N a v a n e e t h29-Jan-09 17:42 
QuestionHow to make a post to page with href url Pin
papy-boom29-Jan-09 13:22
papy-boom29-Jan-09 13:22 
AnswerRe: How to make a post to page with href url Pin
Tad McClellan29-Jan-09 17:12
professionalTad McClellan29-Jan-09 17:12 
QuestionApplication_End () problem Pin
sana1729-Jan-09 9:53
sana1729-Jan-09 9:53 
AnswerRe: Application_End () problem Pin
Steven James Gray29-Jan-09 10:37
Steven James Gray29-Jan-09 10:37 
AnswerRe: Application_End () problem Pin
Tad McClellan29-Jan-09 11:01
professionalTad McClellan29-Jan-09 11:01 
GeneralRe: Application_End () problem Pin
sana1729-Jan-09 11:12
sana1729-Jan-09 11:12 
AnswerRe: Application_End () problem Pin
N a v a n e e t h29-Jan-09 15:01
N a v a n e e t h29-Jan-09 15:01 
Questionchanging property of some other form's control? Pin
Tarun.Suneja29-Jan-09 7:38
Tarun.Suneja29-Jan-09 7:38 
AnswerRe: changing property of some other form's control? Pin
ToddHileHoffer29-Jan-09 7:48
ToddHileHoffer29-Jan-09 7:48 

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.