16,182 questions
Score of -3
-3
votes
0 answers
0
answers
37 views
37
views
ActiveDirectoryMembershipProvider Authentication Failure with 32-Character Password in .NET Framework 4.0 [closed]
Issue Summary
We are experiencing an authentication issue with the ActiveDirectoryMembershipProvider class in a .NET Framework 4.0 application when users attempt to authenticate using passwords that ...
Score of 0
0
votes
1 answer
1
answer
97 views
97
views
How do I send emails on a timer in an ASP.NET webforms application?
My client is having issues with their legacy system (ASP.NET webforms) sending emails as they are bottlenecking. So I made the code asynchronous (eg. await smtpClient.SendMailAsync(newMail);) and this ...
Advice
0
votes
1
replies
54
views
Modernizing and maintaining a legacy ASP.NET WebForms application in Visual Studio 2022
I have spent the last several years working primarily on modern stacks, building .NET backends paired with ReactJS and Blazor frontends. However, I have recently inherited a legacy ASP.NET WebForms ...
Advice
1
vote
1
replies
75
views
Highsoft.Highcharts .NET wrapper v11.4.6.3 silently drops ChartEvents.Load string handler — worked in v11.0.1.1
I'm using the Highsoft.Highcharts NuGet package in an ASP.NET Web Forms application targeting .NET Framework 4.8.
After upgrading from Highsoft.Highcharts v11.0.1.1 to v11.4.6.3, the ChartEvents.Load ...
Score of 2
2
votes
4 answers
4
answers
174 views
174
views
ASP.NET WebForms: page data not cleared after redirect when returning with browser back
I have an ASP.NET WebForms page where I clear all page data and then redirect the user to another page:
protected void btnNavigate_Click(object sender, EventArgs e)
{
ClearPageData();
Response....
Score of 1
1
vote
1 answer
1
answer
60 views
60
views
Getting the current Windows user in of session_start in IIS of an ASP.NET webforms app
I've got an old ASP.NET webforms app that I need to make some modifications on. The app uses Windows auth, so it doesn't use a standard login page. In the session_start event in global.asax, I need to ...
Score of 0
0
votes
0 answers
0
answers
51 views
51
views
ADFS WS-Federation ignores wreply on signout — redirects to default logout page instead of my app
I have an ASP.NET Web Forms application using OWIN + WS-Federation against an ADFS 2016/2019 server. After signing out, ADFS always shows its own "Déconnexion / Vous vous êtes déconnecté." ...
Score of 0
0
votes
1 answer
1
answer
126 views
126
views
ASP.NET webforms Ajax to pass data from aspx to code behind
I need to pass some data from an .aspx file to its code behind file.
<form id="form1" runat="server">
<div>
Name : <input type="text" id="...
Score of 1
1
vote
1 answer
1
answer
95 views
95
views
Winform loading WebUrl not determine whether is Browser or WinForm
I have an ASP.NET Webforms framework 8.0 that is working fine but I would like to load the Web Url where my webform is hosted in a Winforms app and determine whether the webform url was loaded from ...
Score of 0
0
votes
0 answers
0
answers
39 views
39
views
CCAvenue test simulator not sending encResp to ASP.NET WebForms response page
I'm integrating CCAvenue (test environment) with an ASP.NET webforms app. Payment initiation works, but when the user is redirected back to my response page, the encResp parameter is never received.
...
Score of 0
0
votes
0 answers
0
answers
41 views
41
views
CCAvenue encResp not received in ASP.NET WebForms; POST converted to GET
I'm integrating CCAvenue payment gateway with my ASP.NET WebForms application (.NET 4.8).
The payment request works fine, but when CCAvenue redirects back to my response URL:
https://xyz/...
Score of 0
0
votes
0 answers
0
answers
33 views
33
views
Edit autogenerate columns in telerik UI
I am trying to inline edit multiple rows in autogenerated columns from radgrid below is column created and itemcreated methods I wrote for that.
Here, I created manual templates as you can check in ...
Score of 1
1
vote
2 answers
2
answers
122 views
122
views
How do I refresh an Okta OIDC token in an ASP.NET Web Forms application?
I have .NET Framework 4.8 ASP.NET Web Forms application that is secured by OKTA via OAuth 2.0/OIDC. I used the Okta.AspNet library. And I used this sample app as a guide to integrate Okta into my ...
Score of -1
-1
votes
1 answer
1
answer
179 views
179
views
ASP.NET WebForms still loads old jQuery from ScriptResource.axd after upgrading to jQuery 3.7.1 [closed]
Our security team flagged an issue indicating that an older jQuery version appeared to be loaded in our application.(ScriptResource.axd)
I am working on an ASP.NET WebForms (.NET Framework) ...
Score of 0
0
votes
0 answers
0
answers
110 views
110
views
HttpContext.Current.User.Identity.Name is null sporadically
I'm using .NET 4.7.2, ASP.NET webforms and forms authentication. Everything works fine for the normal forms authentication where the user enters their credentials on the login screen.
However, after ...