asp.net-1.1

Using SSRS in ASP.NET 1.1

孤者浪人 提交于 2019-12-24 03:15:57
问题 Is it possible to use SSRS for reports in an ASP.NET 1.1 application? Is there a report viewer control for ASP.NET 1.1? If not is there any workaround for this? 回答1: One way you can get around it is to use the querystring commands that Reporting Services makes available and serve up the reports in PDF format (or in any of the other deliverable formats to the end user). Reporting Services itself requires .NET 2.0 to run on its own, so there is no actual controller for displaying the reports

Why would upgrading from SQL Server 2000 to 2005 result in slower queries?

吃可爱长大的小学妹 提交于 2019-12-24 00:15:51
问题 Are there any common reasons why upgrading a database from SQL Server 2000 to SQL Server 2005 would result in slower queries? This is coming from an ASP.NET 1.1 application with hundred of tables, everything is indexed and seems to run well on the older version. 回答1: After the upgrade first thing you need to do is update the statistics with full scan and rebuild the indexes or you will get suboptimal plans 回答2: Are you certain that all of your indexes survived the upgrade? Are there any

using dot net 1.1 on IIS 7.5 (windows 7 - 32 bit)

梦想与她 提交于 2019-12-21 23:14:52
问题 Getting a lot of problems when I am trying to run a .NET 1.1 solution on IIS7.5 (on windows 7, 32 bit system). When I add the virtual directory in IIS and provide it with an ASP 1.1 application pool and try to browse the site, it adds events to to the event log with event id 5009 and 1000 and stops the application pool. I dont know what is probably going wring here and have been unable to find anything on net. I am thinking to install IIS 5.1 instead (sinse the same project on a xp machine

.NET Framework 1.1 on IIS 7

放肆的年华 提交于 2019-12-19 18:59:08
问题 I have inherited a .NET Framework 1.1 web site that I must host with IIS 7 on Windows Server 2008. I'm having some trouble. 1. Installation I installed .NET Framework 1.1 following these instructions. The installation automatically created a new Application Pool "ASP.NET 1.1". I use that. 2. Trouble When I launch the web site I see web.config runtime errors: The tag contains an invalid value for the 'culture' attribute. I fix that one and then see: Child nodes are not allowed. I don't want to

window.showModalDialog Page Load not being executed

限于喜欢 提交于 2019-12-12 17:37:36
问题 I am actually loading a page as a modal dialog box as window.showModalDialog("url.aspx"). The first time the modal dialog is poped up the page load event gets called. When i close it and call the same again, the Control does not come to the PageLoad. Instead the page pops up with the previous values in all its controls. I actually want the PageLoad to be triggered everytime the modal dialog pops up. 回答1: ok....you do know showModalDialog is an proprietary IE only feature? As long as you are

web Application in 1.1 is not runing

旧时模样 提交于 2019-12-12 05:09:26
问题 We have a application in .net farmework 1.1 and i have made it build successfuly, now when tried to run this application i am getting the following error: I have googled and found some settings in IE, i have checked it in IE settings that windows authenticatiuon is enabled there. but i dont know why i am getting this, please help as i am totally new to VS 2003, We will convert this web application to 4.5 soon but before that we need to some specific task. please help me as soon as possible,

Compatibility problems with Internet Explorer 10/11 and an old .net framework 1.1 website

£可爱£侵袭症+ 提交于 2019-12-10 09:47:33
问题 The Scenario I have a very old website developed in .net (framework 1.1). The site has several problems with Internet Explorer 10/11 that can be fixed using compatibility view. The Problem Problem is that framework 1.1 doesn't recognize Internet Explorer 10/11 as an advanced capability browser, so a lot of features (for example javascript code) are disabled when a user with Internet Explorer 10/11 accesses the website. Microsoft released patches to fix this problem for .net framework versions

Disable ASP.NET 1.1 Validator using JavaScript - Not Working in Firefox

别说谁变了你拦得住时间么 提交于 2019-12-08 07:51:10
问题 The following attempt works in IE8 but not in Firefox (cannot use JQuery for this): case 'Template:templateControl:residenceRBL2': if (selected.value == 'Within USA') { /* Enable zip textbox and validator */ document.getElementById("Template_templateControl_zipTxt1").disabled=false; ValidatorEnable(document.getElementById('<%=firstPersonZipReqVal.ClientID%>'), true); ... } else if (selected.value == 'Outside USA') { /* Disable zip textbox and validator */ document.getElementById("Template

Compatibility problems with Internet Explorer 10/11 and an old .net framework 1.1 website

别等时光非礼了梦想. 提交于 2019-12-06 00:40:46
The Scenario I have a very old website developed in .net (framework 1.1). The site has several problems with Internet Explorer 10/11 that can be fixed using compatibility view. The Problem Problem is that framework 1.1 doesn't recognize Internet Explorer 10/11 as an advanced capability browser, so a lot of features (for example javascript code) are disabled when a user with Internet Explorer 10/11 accesses the website. Microsoft released patches to fix this problem for .net framework versions >=2.0 but not for framework 1.1. What I already tried I tried forcing IE7 Compatibility Mode in web

using dot net 1.1 on IIS 7.5 (windows 7 - 32 bit)

♀尐吖头ヾ 提交于 2019-12-04 19:06:15
Getting a lot of problems when I am trying to run a .NET 1.1 solution on IIS7.5 (on windows 7, 32 bit system). When I add the virtual directory in IIS and provide it with an ASP 1.1 application pool and try to browse the site, it adds events to to the event log with event id 5009 and 1000 and stops the application pool. I dont know what is probably going wring here and have been unable to find anything on net. I am thinking to install IIS 5.1 instead (sinse the same project on a xp machine with iis 5.1 works alright). Is it even possible to install IIS 5.1 on windows 7 32 bit system? OR if