For issues relating to development with ASP.NET, version 1.1.
0
votes
1answer
67 views
How to download a blob of random file type in C# using a generic http handler
My dilemma is that i need to retrieve the blob data stored in a table in oracle. I have created links with the data using jquery that link to a generic http handler blobHandler.ashx where i query the ...
0
votes
0answers
28 views
Automating .Net 1.1 Web Applications deployment
I have been researching for a little bit how to automate VS2003 web application projects. "DevEnv.com" solution via command-line does require IIS and appropriate mapping which is a show stopper for ...
0
votes
1answer
57 views
IIS ASP.NET 1.1 Application - Server Error Page - Abstraction from User
Currently our application gets the following error page.
Server Error in '/' Application
This even in case of a custom errors set to RemoteOnly.
What is the HTTP Error Code of this error? This ...
0
votes
2answers
49 views
Empty TextBox1.Text is giving me an error
I'm getting the following error message on my webform:
Cast from string "" to type 'Date' is not valid.
I'm assuming it's because of this line (but my assumption could be incorrect):
...
0
votes
1answer
42 views
Structure to some sort of .NET Grid (.NET 1.1)
I have the following code:
Public Structure SomeRecords
Public user_id As Integer
Public user_name As String
End Structure
Sub ButtonClick(ByVal Source As Object, ByVal E As EventArgs)
...
0
votes
3answers
91 views
Can a function return more than 1 row of data?
In my code, I have a function, which returns a single row of data from a database. It returns the data using a Structure so I can return more than 1 data.
For example:
Public Structure ...
0
votes
3answers
146 views
Checkbox has values of 0 and -1?
I have some checkboxes on my webapp, and a save button. When I click the save button, I save the checked state of the checkboxes to the database.
When the checkboxes are not checked, I get 0's in ...
0
votes
0answers
162 views
Adding button next to every node in ASP.NET TreeView
I am building an interface which requires two server side button next to every tree node in ASP.NET 1.1.
Please let me know, how to integrate two server side button inside asp.net tree-view ...
0
votes
1answer
49 views
Captcha control for .net 1.1
Please can anyone suggest good free solution for captcha in .net 1.1 ,
Please don't point me to google , asking for checked and tested by you solutions.
Thanks.
0
votes
2answers
48 views
Unable to detect checkbox state
Anyone know why the following always gives me a 0 even if cbEligibleToJoin is Checked?
if (cbEligibleToJoin.Checked = 1) then
objSQLCommand.Parameters.Add("@eligible_to_join", SqlDbType.Int, ...
1
vote
1answer
123 views
ASP.net 1.1 Maintain Value on PostBack when Modified in
I have to support and develop a few features for an old Asp.net 1.1 website. Unfortunately, it was written more like a classic ASP site than ASP.net. They used include files with scriptlets for core ...
1
vote
2answers
175 views
How to rebind datagrid in asp.net 1.1 without postback?
I need to have datagrid(3 columns) to which the values will be added using 3 textboxes and a button(Add) on the same page. If click on Add button the value should append to datagrid without page ...
0
votes
2answers
95 views
Options to Inject HTML into page from another file
I'm trying to find out what my options are to inject a local html file's contents into a webpage. I have a Scheduled task that gets a list of .html files from a remote server and stores them on the ...
0
votes
1answer
581 views
Blank screen when navigating in a .NET 1.1 app in IE10
I have an ASP.NET 1.1 app that does not work in IE10. When I try to navigate anywhere, I get a blank screen. The html of the blank screen looks like this:
<asp_smartnav_rdir ...
0
votes
1answer
110 views
JSON string to XML string
I want to know how can I convert JSON string to XML string in ASP.NET 1.1
I can not use third party library for some restriction.
Any suggestion would be a big help.
0
votes
1answer
63 views
How to traverse this object
I am getting an object from a web service call and I am storing that in a hidden field by serializing the object.
Then I am deserilizing the object and it is coming like the below screenshot :
My ...
0
votes
0answers
92 views
Getting the value of a RadioButton from a Datagrid from a Collection
Getting the radio button value is so fustraitng, does anyone have some simple code to display the value of a radiobutton on AutoPostBack. Using the Text property wont work, I want the assigned value ...
0
votes
2answers
52 views
Fetch Row contents of a table
I am working on ASP.Net 1.1.
In a page I have table as :
<table id="dlInterior" Width="300" Runat="server" CellSpacing="0" CellPadding="0">
<tr>
<td id="inttd" ...
0
votes
1answer
100 views
Datagrid is not keeping to the correct page
Using .NET 1.1's DataGrid, I have it populated with lots of links and it is displaying 10 links per page. I have pagination enabled in the footer of the DataGrid. If I go to page 10 in the datagrid, ...
0
votes
0answers
161 views
How to properly dispose of shared resources and SQL connections
I have an ASP.NET 1.1 website with fairly heavy traffic. I have a class in this website project that handles all my database access called DBWrapper:
Public Class dbWrapper
Implements IDisposable
' ...
1
vote
1answer
116 views
call ASP.net 1.1 service in asp.net using Jquery
I am trying to call ASP.net 1.1 service in asp.net using Jquery, can't figure put what I am doing wrong here, Pleaseeeee help
Javascript Method
function YesCheckChanged(vSRID) {
var para = {
...
0
votes
1answer
95 views
Filtering Filtered DataView
I have a DataSet which will be filtered twice like the following.
How can I set the RowFilter property of the DataView twice?
Or is there any other better implementation than the one below?
DataView ...
0
votes
1answer
83 views
Efficient way to store current URL
I am working on a legacy ASP.NET 1.1 application which doesn't have linkified bread crumb navigation. By this I mean, the bread crumbs exist, but are not hyperlinked.
One of the current ...
2
votes
2answers
2k views
Creating a back button in ASP.NET
I have an old application which has numerous webforms. On every aspx page there is a designated back button, which takes the user to the previous page. All the buttons have the javascript onclick ...
2
votes
4answers
96 views
Business case to upgrade from .NET 1.1 [closed]
I am trying to build a business case for a client to upgrade from old legacy .NET 1.1 ASP.Net solution to .NET 4.0. The customer will like the application to be HTML5 future proof, adhere to W3C ...
0
votes
3answers
483 views
How to Register and Use DLL files in ASP.NET 1.1
I have moved a couple of DLL files in the BIN folder but Visual Studio is not picking these up. Do I need to manually register them for 1.1?
I know in later frameworks, it is as easy as moving DLL ...
0
votes
1answer
215 views
Can I remove multiple items from a DropDownList based on match to partial text
I have a drop down list with contents similar to:
City1
City1_SearchCriteria
City2
City3
City3_SearchCriteria
City4
City4_SearchCriteria
I'm wondering if its possible to remove the items in this ...
13
votes
3answers
793 views
ASP.NET 1.1 to 4.0 migration: events not working
I've recently begun migrating an ASP.NET project from .NET version 1.1 to 4.0. This system currently runs on customer site and works.
When I migrate the solution via the VS wizard, I don't get any ...
0
votes
1answer
241 views
File or assembly name ImageHandler, or one of its dependencies, was not found
Tool: Visual Studio 2003 Enterprise Architect , ASP.net WebForms 1.1
Language: C#
Hello Guys,
I'm trying to implement IHttpHandler for the first time ,I thought I was going ok,but it's not.
My ...
0
votes
2answers
316 views
Debug error in HTTPHandler : Server side-error occured on sending debug HTTP request
Tool: Visual Studio 2003 Enterprise Architect , ASP.net WebForms
Language: C#
Hello Guys,
I have just implemented HttpHandler for the first time ,I thought I was going ok ,but I'm facing this error
...
0
votes
0answers
81 views
asp.net 1.1 forms authentication - once signed-on, users can get to the app in a new browser window or tab
Web application using asp.net 1.1 with code behind written in VB, and forms based authentication, with MSSQL server 2000 as the back end for user's information.
I had found that users are able to ...
0
votes
1answer
366 views
how to use json in asp.net 2003
I am using the JSON object with jquery in asp.net application. The code is working with VS2008 but when i moved sam code in VS2003 then it is showing the JSON is undefined. Code is following
var mes ...
0
votes
1answer
139 views
ASP.NET 1.1 Transaction Spanning Two Databases
How can I use an ADO.NET Manual Transaction to remove records across two databases (on same server)?
I came across this:
TransactionScope in .NET 1.1
But would still like to use .NET 1.1 Manual ...
0
votes
0answers
382 views
How to read xml from sharepoint list in c# asp.net 1.1
Can anyone help me how to read a xml accessign the sharepoint url in c# asp.net v1.1. Please find below the contents of the xml file. This is to provide information and updates on system related ...
1
vote
2answers
2k views
Writing DataReader Rows to Excel File
I've got data in SQL Server 2000 and have a HyperLink that goes to a pass-through form whose code-behind will output the data to an Excel file. I've been following this tutorial:
...
1
vote
1answer
703 views
AjaxPro for .NET
I am new to Ajax .I have used AjaxPro In ASPX page for executing method .I have used below code for .NET 2.0
In ASPX:
$(function() {
$( "#sortable" ).sortable({
placeholder: ...
0
votes
3answers
456 views
How do I add an onclick event to the OK button of the Javascript confirm box?
I am working with a .Net 1.1 web application. There is a Save button that, when clicked, will pop up the Javascript confirm box. Once the user clicks OK a long running process is kicked off. We ...
0
votes
0answers
129 views
Website becomes non-responsive
We recently shifted our web app to new server and after moving into the new server we are facing a weird issue where the web app hangs and we have to recycle the application pool after few hours to ...
0
votes
1answer
222 views
doc file from asp.net / vb with header
I would like to create a doc file (MS Word 2003) from a page asp.net / vb (dotnet 1.1) that contains a header and footer.
I have managed to create the doc but how to set a header and a footer?
Is ...
3
votes
2answers
72 views
Mono ASP.NET 1.1 Support
I haven't found anything about it on the web, does mono support ASP.NET 1.1
Thanks!
0
votes
1answer
308 views
Link button click event to get popup
Need a advise. I have a page, main.aspx page. I need to add a link to the main.aspx page. So that when employees clicks on the link, I have to show the employee profile (profile.aspx) page as a pop ...
1
vote
1answer
77 views
Advice for upgrading of website with ASP.NET 1.1 and CGI-BIN code
I am maintaining an internal website for handling our business. The website is running on a Windows 2003 server that is five+ years old and is using both ASP.NET 1.1 and even older CGI-BIN code ...
0
votes
1answer
336 views
ASPX input type - getting value
I want to populate my textbox with value from an element.
Perhaps my code will explain better:
This is in header.ascx
<form method="get" action="/_apps/results.aspx" ...
0
votes
1answer
41 views
To stop asp.net looking for assemblies in GAC
I have started working on a legacy project (ASP.NET 1.1) which was done in an old machine (which I dont have access to). And I am unaware of the development environment settings used for building this ...
0
votes
0answers
106 views
Multiple users cannot be allowed to download the same file and throws Exception in .Net 1.1
I am working on website which is based on .net framework 1.1 and C#. I want to download a file by multiple users and I am using this code:
Response.ContentType = MIME;
...
0
votes
1answer
158 views
Script Error on aspx page: running .NET 1.1 on 64
I have a namespace like this in one of my aspx pages (.NET 1.1)
<%@ Register TagPrefix="jwg" Namespace="Janus.Web.GridEX" Assembly="Janus.Web.GridEX" %>
This code used to run alright in .Net ...
1
vote
0answers
152 views
ASP.NET 1.1 - XPathNavigator OuterXml equivalent
I'm working with the Google Maps API to do GeoCode lookups in 1.1 and I'm running into a brick wall with the XPathNavigator object.
I need to create a "sub-navigator" so that we can perform global ...
3
votes
2answers
351 views
Explicitly define control prefix in ASP.NET 1.1?
I've got some (badly written) legacy code that I have to modify but I'm having an odd problem with the prefixing of the controls.
The main page has several include files, including cpct_cost.aspx.
...
2
votes
1answer
237 views
My asp.net 1.1 site will not refresh
I have an ASP.NET 1.1 site and I'm uploading a small change, but the page will not refresh. The page was changed 2.5 hours ago. I have tried loading the page in 3 different browsers, so I know the ...
3
votes
1answer
1k views
change the name of output dll
I am working on .net 1.1 legacy system and need to change the name of outputted dll.
When I go to change the "output file" under project property it's greyed out and won't let me change it.
How do ...
