Questions tagged as 'asp.net'

1
answer

Error loading multiple swf in html

I've created a report in ASP.NET and HTML which loads swf files into a for . The problem is when the for is large and it needs to load several .swf files in the same report the flash simply does not run and gets marked with an exclamat...
asked by 19.12.2014 / 15:30
1
answer

Can Entity Framework not map a table in MVC?

I added a new table in Model.edmx, but was not created in Model.Context.cs or public DbSet<informacoes> informacoes { get; set; } is also not created in the Model.tt class of this table. how to solve this?     
asked by 08.04.2015 / 20:09
2
answers

How to debug to know which procedure or table is running with Asp.Net

I've been in the new job for 10 days, and I'm having some difficulties - which is normal depending on the difficulty. I have a Table inside a Repeater, which is fed by a Procedure. How do I do with Debug, to find the Procedure that is runn...
asked by 21.11.2014 / 18:42
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

How to pass a QueryString using RegisterStartupScript in ASP.NET?

I have this code in my code behind: ScriptManager.RegisterStartupScript(this, typeof(string), Guid.NewGuid().ToString().Replace("-", ""), "window.setTimeout(\" $('#" + calendar.ID + "').fullCalendar({header: {left: 'prev,next today',center: 't...
asked by 07.08.2014 / 16:36
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 display two pages of the same GridView side by side?

I'd like to know how to display two pages of the same GridView side by side, if possible by keeping the pagination on both pages at the same time. For example, if I have GridView like this: Num Produto -------------- 1 Banan...
asked by 02.04.2014 / 22:22
1
answer

Compare different columns

Is it possible to generate the pie chart by comparing different columns of a DataTable ? That is, I have a DataTable with 2 columns of values and wanted to create a pie chart for each line of DataTable , thus comparing the...
asked by 28.11.2014 / 18:39