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
1
vote
1 answer

How to pass array with ajax

I need to fill my array with info when I drag item to cart zone sow in drag even ti put this function var ProductInfo=new Array(); myGlobalArray=GetProductById(iProductId); that call this Ajax function function GetProductById(iProductId) { var…
Vladimir Potapov
  • 2,347
  • 7
  • 44
  • 71
1
vote
1 answer

Asp.net Dynamic Controls - Name Attribute of HtmlInput object

Project - ASP.Net 1.1 Website I am creating dynamic HtmlInput controls and adding class, id and name attribute to it. Example - HtmlInput obj = new HtmlInput obj.Attributes.Add("id", "A1"); obj.Attributes.Add("name",…
CıPhEr
  • 49
  • 1
  • 7
1
vote
2 answers

How to create an Input Button in ASP.NET 1.1

I'm trying to create a generic button in ASP.Net using an ASP.Net control and I'm unfortunately stuck using ASP.Net 1.1 right now. I know you can use the UseSubmitBehavior="False" attribute in later versions of ASP.Net but I…
Shawn Steward
  • 6,773
  • 3
  • 24
  • 45
1
vote
0 answers

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 control. Thanks in advance.
Aditya Singh
  • 9,512
  • 5
  • 32
  • 55
1
vote
1 answer

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 logic. This means all the core logic runs on…
Sam
  • 9,933
  • 12
  • 68
  • 104
1
vote
2 answers

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 refresh/reload? Please guide me with your approaches…
MduSenthil
  • 2,019
  • 3
  • 18
  • 39
1
vote
1 answer

Dropdownlist with s for version 1.1 of asp.net?

Is it possible to create a select box containing optgroups with asp:DropDownList in version 1.1 of asp.net? Similar question has been asked here and elsewhere for newer versions of asp.net with solutions involving ControlAdapters or custom controls…
Bjorn Thor Jonsson
  • 827
  • 1
  • 10
  • 21
1
vote
1 answer

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 = { SRID: vSRID }; jQuery.ajax({ …
Hemant.Gupta
  • 147
  • 1
  • 13
1
vote
3 answers

How to change the Page Title in ASP.Net 1.1?

With ASP.Net 2.0 you can use the Title property to change the page title : Page.Title = "New Title"; But since in ASP.Net 1.1 there isn't a Title property in the Page class, how can I change the page's title from the code-behind ?
Andreas Grech
  • 105,982
  • 98
  • 297
  • 360
0
votes
1 answer

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 Transaction if possible.
IrishChieftain
  • 15,108
  • 7
  • 50
  • 91
0
votes
3 answers

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 would like to show a busy indicator when the user…
swolff1978
  • 1,845
  • 7
  • 28
  • 44
0
votes
1 answer

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 there any other solution? Like using…
mehdouch
  • 423
  • 1
  • 8
  • 20
0
votes
3 answers

ASP.NET 1.1 Page_ClientValidate Debugging

I have an ASP.NET 1.1 application, and on my local machine the submit button on my page works fine, but when I deploy it to our development application server, I click on Submit and nothing happens.. I'm assuming that the Page_Validate() function is…
user7243
  • 41
  • 1
  • 5
0
votes
1 answer

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 up. In order to do this can I use link button. I am…
user993935
  • 3,563
  • 4
  • 18
  • 15
0
votes
1 answer

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
xt_20
  • 1,406
  • 3
  • 13
  • 27