Issue I have followed the approximate steps of this video in an attempt to create an ASP.NET Web Form. Inside the video, the programmer was able to directly edit text within the designer view, as well as right click to
Continue readingTag: webforms
[SOLVED] "The report definition for report 'xxx' has not been specified."
Issue I’m trying out SSRS for the first time with an ASP.Net web form. I created a local RDLC report and used a ReportViewer in the “Default” web form. Under the smart tag I chose “Choose Report” and selected the
Continue reading[SOLVED] Azure B2C authentication screen does not show up
Issue I have an Asp.Net 4.7 WebForms legacy application written in vb.net. I need to add Azure B2C authentication. So I registred an app with Azure, and added OWIN middleware NuGet packages, and made all necessary configuration changes. I expect
Continue reading[SOLVED] How to edit CSV data in C# like 1234567 to 123-4567?
Issue Im trying to edit a postcode data which comes as for example 1234567 and i want to put a dash between 123 and 4567 (e.g 123-4567) is it possible to do this within C# without editing the csv file
Continue reading[SOLVED] Making pages that can be displayed only if logged in – ASP.NET Core MVC
Issue I have always been programming with ASP.NET Web Forms. Everything was simpler but now for having better performance and modern software, I decided to switch to ASP.NET MVC. I managed to understand most of the concepts but due to
Continue reading[SOLVED] Properly aligning Bootstrap form elements
Issue I have a form in my ASP.NET web application that uses Bootstrap and contains the following section of code: <div class="row mb-2"> <div class="col-sm-4"> <label><input type="checkbox" class="align-middle" value="1" name="Credit_Pulled" id="Credit_Pulled">Credit Pulled</label> </div> <div class="col-sm-4"> <label><input type="checkbox" class="align-middle" value="1" name="Is_On_Terms"
Continue reading[SOLVED] balloon popup extender inside gridview header displays on every postback
Issue I am new to balloon popup extender. I am giving a balloon popup extender for Gridview header, This is my code. I don’t know where I am going wrong. When I click a button on the page, the balloon
Continue reading[SOLVED] Web-Form not accepting responses(Asp.net)
Issue Recently i am working on a web-form written in asp.net framework. I have kept in mind to include !IsPostBack() but yet my form is not accepting the responses and updating the database accordingly. The body of the .aspx code
Continue reading[SOLVED] Get the post method payload in asp.net webforms
Issue I need to get the payload sent by the post method in an asp.net webform. I have a login.aspx page called by another site as the post method like this: https://example.com/Login/Login.aspx How can I get the value of SAMLResponse
Continue reading[SOLVED] Send mail on session_start
Issue I want to invoke method (to sending a mail) in session_start. This is my task function: Public Shared Async Function SendEmailMessage(ByVal MailFrom As String, ByVal MailTo As String, ByVal Subject As String, ByVal HtmlMessage As String) As Task Dim
Continue reading