Questions tagged as 'webforms'

1
answer

Web Forms for MVC 5

I joined a company, where we have an application running in Web Forms, and we are developing new applications with Asp.Net MVC. However, I was asked to supplement an application with Web Forms using MVC. Is it possible to do this kind of integra...
asked by 15.01.2015 / 19:49
1
answer

GridView with one line only - Asp.Net C #

I have a column in the GridView with Schedules, I made a schematic that picks up such a time at such an hour for example: 8:00 to 8:30 and so goes to other lines. In all, until 6:00 p.m., it gives 20 lines. How do I put this all in one line? Som...
asked by 26.05.2015 / 14:33
4
answers

Loading values from a select in my GridView

My DAL that does Select and saves it in type list using System; using System.Data; using System.Collections.Generic; using System.Linq; using System.Web; using MySql.Data; using MySql.Data.MySqlClient; using Geax1.Model; namesp...
asked by 24.09.2014 / 17:41
1
answer

Convert string into parameter for arrayToDataTable (varString)

Hello, I'm starting to use ajax and the Google API (chart) to create charts. I use a Generic Handler that I called 'EmployeesCompany.ashx', in it I make a query in the database and return a string in this way; context.Response.Write(valores...
asked by 13.11.2014 / 12:55
1
answer

How to get data from a BulletedList in CodeBehind ASP.NET?

I have a list of items set through a BulletedList in an Asp.net page. This list is populated with multiple items through the DataSource , DataTextField , DataValueField , and DataBind() attributes in CodeBehind in C #....
asked by 16.04.2014 / 01:05
1
answer

How to declare a method to be executed from time to time in an ASP.NET application?

I have an ASP.NET WebForms application and I need to create an event to run on specific times. The event is about sending emails. I think I read somewhere about IIS to download the application from memory when it reaches certain tim...
asked by 10.06.2014 / 20:25
1
answer

How to get the values from a list of inputs with the same ID by WebForms?

I have a list of inputs that are automatically generated by script and they are inserted into a form getting like this: <input type="text" id="txtValue" name="txtValue" /> <input type="text" id="txtValue" name="txtValue" /> <inp...
asked by 07.10.2014 / 17:03
1
answer

Print Report Reporter directly, without preview

I need to send a report directly to the printer, without preview or PDF generation. The problem is that the application is Web Forms and all the solutions I've found so far only support Windows Forms, that is, the application ends up search...
asked by 10.12.2014 / 17:36
0
answers

Open PDF in a new browser window

Implemented a functionality in the system to generate a PDF file using iTextSharp, however it is opening in the same tab, I would like it to be opened in a new browser tab. I tried to use Response.Redirect Response.Write I tried to use...
asked by 02.02.2018 / 18:45
1
answer

How to Include and Refer. .JS in my project?

Well it's the following, I have a .JS file in my project. I'm calling it in HEAD SO: <script type ="text/javascript" src="~/JS/validacao.js"></script> within this validation. JS has a masquerade function. and put the f...
asked by 08.12.2017 / 13:04