How to format text in <asp:TextBox>
Is there any way to make words bold, when using asp:TextBox? I know I can use html markup with asp:Label but I'm still hoping I can figure something out for the textbox. Can it be done?
How do I become a back-end developer?
I want to become a back-end developer with ASP.NET. How do I do that? I have some knowledge of C#. What should I do after that? What should I study? What types are there with ASP.NET?
ASP.NET Gridview Header column not freezing properly
I'm using gridview with freezing header in ASP.NET application. But, freezing is not showing while running the application. what is the issue in the below code...? <%@ Page Language="C#" AutoEventWireup="true"…
String is converted into invalid UTF-8 characters when passed into model from controller
Controller: DataTable dtt = new CommonModel().ManualQuerySelect("select isnull(ReportTitle,'Journal Voucher') from gen_VoucherTypes where VoucherType = 6 and LogSourceID = 0", clsCommon.AccountsnewConnectionString).Tables[0]; Model: public…
Attempting to align contents of GridView cells on ASP.NET Web Forms
Hello, I am attempting to align the contents of GridView cells on ASP.NET Web Forms, but I am encountering an issue where the GridView header is not aligning as expected. Here is how it looks in the image below What steps can be taken to resolve this,…
Error when try read data from Excel File in ASP.NET MVC
In an ASP.NET MVC app, I am trying to read data from Excel file but I get this error: The error appears in production mode, but in development mode there's no problem. I am making host on Local Host on my computer Microsoft Excel cannot access the file…
Unknown .jsp file creation and deletion inside ApplicationInsights service of my .Net application
We have a very old .Net web application deployed in IIS. Its written in VB.Net and has Application Insights reference. We have notuced a strange file being created in one of the folders and the file being deleted on its own as well. The name of the file…
asp.net gridview data insert two times how to avoid repeate
Hello This is my gridview data on button click i have foreach insert query most of them time it insert only one time but sometime it insert like this how to avoid duplicate insert
How to troubleshot HttpWebRequest if X509Certificate is not added properly
Hello all, I am adding a X509Certificate to the HttpRequest like the following: HttpWebRequest request = (HttpWebRequest)WebRequest.Create("webserviceurl"); request.ClientCertificates.Clear(); X509Certificate certificate = new…
How to Freeze Header in ASP.NET Gridview using C#
I am developing ASP.NET application. I have been using gridview for adding/editing/deleting records for most of the forms. some of the gridview will have more than 1000 rows. for temporary, i have used CSS overflow to freeze the records. But, it will…
ASP.Net Web Forms: Error when javascript function executed, Bootstrap integrated.
Hello All, I have an issue with the ASP.Net Web Forms application that is returning an AJAX error when the javascript function is executed. Below is the explanation and code bits to reproduce the error. Created a Web Forms application with…
403 Forbidden Error while trying to access authorized routes in a .NetCore 8 WebAPI -
Hi All, Let me discuss my problem in clear detail. I am trying to build a backend webAPI for an app using .NetCore 8. I created the database for my webapi by using code-first migrations on AspNet Identity. The respective tables have been created. In…
Button not working asp.net core mvc net 8
Hello, I'm having a big problem in the admin product view, specifically my button doesn't work (details below the image) I can move to the <a> tag but it's not green (so when pressed it will go to another page) although in views/shared I've added…
Program Install and Uninstall troubeshooter not working
I cannot uninstall any of the .NET or Runtime programs listed below using this tool because I get this error
Is it possible to forcibly define the action for all forms in IIS 10?
When submitting a form defined within an ASP page on a site registered in IIS, it doesn't navigate to the action URL you specified. Instead, it redirects to a different page. The redirected URL matches your defined action location, but the content…
Excel not downloading from asp.net application
I am developing asp.net application and download excel file not working recently in Local and IIS Website. The same was working last week. Below is my code and tell me what is the problem and how to solve this.. This is very urgent using Excel =…
How to eliminate if end user open the same ASP.NET page in another tab
This is simple question. I am developing ASP.NET application and sharing the hosted URL to end user. some times end user opens the same page in multiple tab. i want to control, either should not allow the same page in another tab or redirect some…
Model Popup showing as blank when click view button in gridview C#
I am using ASP.NET application and i used Gridview to show the PDF file. when i click the view button in the gridview, the file will be opening is perfect. I am using some search button outside the gridview for filter records in gridview. Whenever i am…
could not load file or assembly'Microsoft.data.sqlclient'
how to solve this error
Why do we get this error "Reading the request body timed out due to data arriving too slowly. See MinRequestBodyDataRate." if we have not configured MinRequestBodyDataRate??
Our system utilizes ASP.NET Core 6.0.10 and HTTP/2. There is no specific configuration for the MinRequestBodyDataRate in our program, indicating that it likely uses the default value of 240 bytes per second. During our investigation, we have confirmed…