Questions tagged [asp.net-1.1]

For issues relating to development with ASP.NET, version 1.1.

ASP.NET is a web application framework developed by Microsoft to allow programmers to build dynamic web sites and web applications.

115 questions
0
votes
1 answer

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 because, we can add it under Custom Errors on InetMgr…
tempidope
  • 823
  • 1
  • 12
  • 29
0
votes
2 answers

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): command.Parameters.Add(New SqlParameter("col3",…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
0
votes
3 answers

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 structure_name Public column1 as integer Public column2…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
0
votes
3 answers

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 the database. However, when they are checked, I get…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
0
votes
1 answer

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.
StringBuilder
  • 1,619
  • 4
  • 32
  • 52
0
votes
2 answers

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, 4).Value = ctype(1, integer) else …
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
0
votes
2 answers

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 local webserver, this I can't change. How can I…
MisterIsaak
  • 3,882
  • 6
  • 32
  • 55
0
votes
1 answer

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: I have seen the fixes for what sounds like a…
egbrad
  • 2,387
  • 2
  • 23
  • 27
0
votes
1 answer

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.
James
  • 2,136
  • 3
  • 23
  • 42
0
votes
1 answer

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 problem is when I am trying to access the below…
James
  • 2,136
  • 3
  • 23
  • 42
0
votes
2 answers

HttpHeaders in ASP.NET 1.1

How do I read the Response Headers that are being sent down in a page ? I want to be able to read the header values and modify some of them. This is for an ASP.NET 1.1 application but I would be curious to know if it can done in any version of…
Nikhil
  • 3,590
  • 2
  • 22
  • 31
0
votes
2 answers

Fetch Row contents of a table

I am working on ASP.Net 1.1. In a page I have table as :
On Page…
James
  • 2,136
  • 3
  • 23
  • 42
0
votes
1 answer

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, and click on a link in the DataGrid, the correct…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
0
votes
0 answers

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 ' the private _connVSC2000 property is used for all…
Will Russell
  • 324
  • 2
  • 11
0
votes
1 answer

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 dv = new…
artsylar
  • 2,648
  • 4
  • 34
  • 51