Questions tagged [aspx-user-control]
94 questions
0
votes
0 answers
Login gets lost with Navigation IE in Powershell aspx
I am trying to automate a website interaction.
I can login programatically without issue.
Once I login I get to a page with a toolbar. When I hover over one of the options of the toolbar, the bottom of the ie screen displays a url that ends with…

Clint Eastwood
- 135
- 1
- 7
0
votes
2 answers
0
votes
0 answers
ReportViewer control not displaying on page
I'm trying to access the SSRS 2017 through an ASP.NET project but getting the below error. I'm facing the issue on ASPX page at line which is in bold below.
Server Error in '/' Application.
The request failed with HTTP status 404: Not Found.…

user13771247
- 1
- 1
0
votes
0 answers
ASP.net C# dropdownlist does not work for chrome and result always return default option
Hi I have few dropdownlist but one of it doest not work properly, when I choose from the list and after submit, it will keeping get the default item value and not record the one I choose from list if I browse from Googlo Chrome. I try to clear cache…

Shi Jie Tio
- 2,479
- 5
- 24
- 41
0
votes
0 answers
asp:TextBox - Is there a way to OnTextChanged working even after setting visible=false?
Is there a way to OnTextChanged working even after setting visible=false? I have a legacy asp page that has a number of postbacks and refreshes. I'm using this text box as a session variable since the equivalent variable in the code behind can get…

Bill
- 915
- 2
- 13
- 23
0
votes
2 answers
Regular expression
I have an aspx:memo control in asp.net page. The control has a regular expression validator. If the text inserted in the memo is different than the regular expression then the validator triggers an error.
So I would like to accept every character…

Kate10
- 53
- 6
0
votes
0 answers
Static asp:CheckBoxList evaluating all checkmarks as false
I have a simple static CheckboxList in my form :
<%@ Page Language="C#" AutoEventWireup="true" EnableEventValidation="false" CodeBehind="Groupes.aspx.cs" MaintainScrollPositionOnPostback="true" Inherits="WebApp.Form" %>

Bellatrix
- 29
- 1
- 8
0
votes
1 answer
How do I bind two elements into a single Link Button ASP.NET
I am trying to bind two elements from a list to a Link Button. The following works separately on two link buttons:

Milan Conhye
- 65
- 7
0
votes
1 answer
How to clear entered date in edge browser when textbox TextMode="Date"?
In ASPX page I have few text boxes which should accept only values in date format. I added TextMode="Date" property to set this, It is working as expected like entering and removing date in Chrome browser but in Microsoft Edge browser I cannot…

Jaggi
- 170
- 2
- 5
- 16
0
votes
1 answer
How can I access the data of a ListviewItem when a button in that Item is clicked?
Need to make changes in my db based on the data of the ListViewItem of the button that is clicked. (i.e, if someone clicked on the button in the first item, that Item's dataSource has a SessionId column/value that I need to access)
I've tried…

Justin
- 89
- 10
0
votes
0 answers
Is it possible to pass object as parameters in a web user control markup?
I am building a web page that lists products, using aspx webform. For that, in a user control corresponding to my list, I am looping over my products and injecting one new user control by product:
foreach (Product p in this.Products)
…

moudug
- 209
- 1
- 3
- 13
0
votes
0 answers
ASP User control: Cannot pass parameter from within a loop
I can't pass a variable to an user control (ascx) from an asp page (aspx) within a loop.
I want to recursively iterate a custom control with a foreach loop (would like to avoid asp:Repeater, but if it's the only solution I'm open to suggestions…

Liquid Core
- 1
- 6
- 27
- 52
0
votes
1 answer
saving the selected option not working with jquery
I need to save the choice of the user.. did it this way:
$(".dateTimeFilterIdentifierCls").change(function () {
debugger;
localStorage.setItem('ChosenDateIndexLS',…

alla fisher
- 1
- 3
0
votes
1 answer
JS Function working on one site, but not on another
I'm working on an old aspx project with Code Behind in VB, with a UserControl that is used on two .aspx sites.
Inside that Control, in Code Behind, is a function called RegisterScript, which creates a JS function and, you guessed it, registers this.…

Guddo
- 1
- 3
0
votes
1 answer
How to FindControl on content page from dynamic User Control
I am getting a null reference exception when trying to FindControl on a button. I have a shopping cart setup where I have a content page (.aspx) based on a master page. On the content page, there is a placeholder control in which I am dynamically…

Just Add Water
- 25
- 6