Click here to Skip to main content
15,921,062 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how can i login into yahoo by using asp.net code Pin
N a v a n e e t h24-Feb-08 20:00
N a v a n e e t h24-Feb-08 20:00 
Questionprompt by date in asp.net Pin
roysudipta24-Feb-08 19:26
roysudipta24-Feb-08 19:26 
GeneralRe: prompt by date in asp.net Pin
N a v a n e e t h24-Feb-08 19:32
N a v a n e e t h24-Feb-08 19:32 
GeneralJavascript Problem. Pin
Khan.Bangash24-Feb-08 19:22
Khan.Bangash24-Feb-08 19:22 
GeneralRe: Javascript Problem. Pin
N a v a n e e t h24-Feb-08 19:30
N a v a n e e t h24-Feb-08 19:30 
GeneralRe: Javascript Problem. Pin
Khan.Bangash24-Feb-08 19:42
Khan.Bangash24-Feb-08 19:42 
GeneralRe: Javascript Problem. Pin
N a v a n e e t h24-Feb-08 19:50
N a v a n e e t h24-Feb-08 19:50 
Generalthat assembly does not allow partially filled callers Pin
Nishad24-Feb-08 19:05
Nishad24-Feb-08 19:05 
Hi,
i have uploaded my sit to web server goddady.com
i have a button to download dyanmically generated excel file.This button is ajax enabled.....When i am click on this button it will popup a message like

"That assembly does not allow partially trusted callers"
This is my web.config file Please help me on this issue?


<?xml version="1.0"?>

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">

<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>

<appSettings>

</appSettings>
<connectionStrings/>
<system.web>

<compilation debug="false">
<assemblies>
<add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Messaging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="Microsoft.Office.Interop.Excel, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"/>
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</assemblies>
<buildProviders>
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</buildProviders>
</compilation>

<authentication mode="Windows"/>

<pages styleSheetTheme="Smoke">
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</controls>
</pages>

<customErrors mode="Off" defaultRedirect="Error.aspx">
</customErrors>

<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>
<identity impersonate="true" />

</system.web>

<system.web.extensions>
<scripting>
<webServices>

</webServices>

</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> Cool | :cool:
QuestionHow to disable viewstate of textbox. Pin
Nagraj Naik24-Feb-08 18:47
Nagraj Naik24-Feb-08 18:47 
AnswerRe: How to disable viewstate of textbox. Pin
Christian Graus24-Feb-08 18:48
protectorChristian Graus24-Feb-08 18:48 
GeneralRe: How to disable viewstate of textbox. Pin
Nagraj Naik24-Feb-08 21:57
Nagraj Naik24-Feb-08 21:57 
QuestionCan webpage contains more than one language? Pin
Satish - Developer24-Feb-08 18:45
Satish - Developer24-Feb-08 18:45 
AnswerRe: Can webpage contains more than one language? Pin
Christian Graus24-Feb-08 18:50
protectorChristian Graus24-Feb-08 18:50 
AnswerRe: Can webpage contains more than one language? Pin
Sandeep Akhare24-Feb-08 18:52
Sandeep Akhare24-Feb-08 18:52 
GeneralDataList [modified] Pin
.NET- India 24-Feb-08 18:30
.NET- India 24-Feb-08 18:30 
GeneralRe: DataList Pin
Christian Graus24-Feb-08 18:38
protectorChristian Graus24-Feb-08 18:38 
GeneralRe: DataList Pin
.NET- India 24-Feb-08 18:46
.NET- India 24-Feb-08 18:46 
GeneralRe: DataList Pin
Christian Graus24-Feb-08 18:58
protectorChristian Graus24-Feb-08 18:58 
GeneralAJAX Pin
Usharva24-Feb-08 18:08
Usharva24-Feb-08 18:08 
GeneralRe: AJAX Pin
Christian Graus24-Feb-08 18:15
protectorChristian Graus24-Feb-08 18:15 
GeneralRe: AJAX Pin
Usharva24-Feb-08 19:20
Usharva24-Feb-08 19:20 
GeneralRe: AJAX Pin
Christian Graus24-Feb-08 19:34
protectorChristian Graus24-Feb-08 19:34 
Questionhow to get value of the string Pin
Member 387988124-Feb-08 17:58
Member 387988124-Feb-08 17:58 
AnswerRe: how to get value of the string Pin
Usharva24-Feb-08 18:13
Usharva24-Feb-08 18:13 
QuestionHi friends.. please help me waiting or loading pages problem Pin
G Nathan24-Feb-08 17:57
G Nathan24-Feb-08 17:57 

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.