Questions tagged as 'webforms'

1
answer

Google Chrome sandbox

On some pages of a system where I work (I'm not the only developer) a message appears in Google Chrome like the image below: This only happens in Google Chrome, Firefox works normally. The test server also works, including in Google...
asked by 21.09.2015 / 17:01
1
answer

Parameterizing DataSet in C #

I created a search screen with textbox , button and gridview . I would like the search results to appear in this Gridview but I can only do this with a Dataset . In this case, I needed to find a way to pass parame...
asked by 19.06.2016 / 18:32
1
answer

How to remove xml encapsulation in json returned by WebService

I created the following method: [WebService(Namespace = "http://myDomain.com.br/PublicacaoService")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] [System.Web.Script.Services.ScriptSer...
asked by 12.08.2014 / 18:49
2
answers

Difference between button types

What's the difference between the following components? <button type="button">Click Me!</button> <asp:button ID="cmdAvancar" runat="server" >Click Me!</asp:button> <input type="submit" value="Submit"> I say for...
asked by 09.02.2017 / 19:02
2
answers

Asp.net WebForms. Timeout error exceeded in SQL Server. How to solve?

In an ASP.NET WebForms application that uses SQL Server 2008 a search field that works with AJAX requests method asmx . To avoid mass requests I added a delay method in the keyup method of input $("#txtPes...
asked by 20.08.2014 / 22:19
3
answers

Enter page using the bank ID in ASP.NET

I need to make a page that can be accessed in the following format: www.exemplo.com/id/123qwe This 123qwe is the ID of a line in the database, where I will get all the data to fill the page. So far I've been able to...
asked by 24.02.2014 / 14:15
1
answer

Difficulties writing a friendly url (global) in web config

I asked the same question in the English version but I did not succeed! I have an application that will be translated into three languages pt / en / es. So far I'm going to use GlobalResources, I have no problems with this, but I'm having a l...
asked by 18.07.2014 / 16:09
1
answer

What are the good points of using View Engine Aspx instead of Razor?

When I search on ASP.Net MVC , I always find all examples of views with Razor (I do not remember exactly if I saw any in aspx) and in the past I remember that I could select this View Engine when creating a new one web applic...
asked by 05.03.2015 / 18:03
2
answers

What is the equivalent of UserControl in ASP.NET MVC?

In Web Forms we have UserControl . These controls have a code-behind and a layout. They can be used in different projects / solutions without depending on other things. I want to create a control that displays multiple elements and so...
asked by 22.12.2013 / 01:30
1
answer

What are and how the following statements work on Web Forms pages:%%,% #%, and%:%

I do not know what they are, nor how to call them. Are tags, statements? What are they? In practice, I noticed some features. <% %> This statement accepts executable code, but does not return anything to the webpage....
asked by 18.02.2015 / 04:07