Questions tagged as 'asp.net'

0
answers

Call web service via Ajax with focusout function

$("#<%=txtProduto.ClientID%>").on("focusout", function (event) { event.preventDefault(); $.post(AjaxService.Pessoa(<%=txtProduto.ClientID%>), function (data) { $("#<%=txtPrecoUnitario.Client...
asked by 27.03.2015 / 13:23
0
answers

Difficulty in calculating with jquery

A jquery function was done by a fellow designer to meet the following need. I have a table, which works inside a repeater, which works like a grid. This table has 4 <TD> . There is TD that I bring from the database, a value I...
asked by 30.01.2015 / 18:10
1
answer

How to set a default page?

I downloaded a project, which when I run from this: The Web server is configured not to list the contents of this directory. I'm new to this environment, what do I have to configure? Note: Visual Studio 2013 Ultimate     
asked by 18.01.2015 / 19:07
1
answer

Error with webforms "Process with an Id of is not running"

I'm trying to run a .Net 4.5 webforms application, however the error: "Process with an Id of XXXX is not running." is displayed each time I try to run the application, where XXXX is variable, every attempt to execute the number is changed. Has a...
asked by 15.02.2015 / 17:47
1
answer

Storing DataView values in a List [closed]

I'm maintaining a discount system for a customer, it was ready but not functional, I just applied discount validation if there was a single item. What I need is to build a list that will be used by a query to query the database. Dim produ...
asked by 27.10.2014 / 18:03
0
answers

How to save the state of a TreeView in ASP.NET / C #?

I have a treeview that is persisted in Database, and from the application, you can add or remove items from both the TV and the BD. Big problem is that I can not find a simple way to save the user's "use" status (ExpandedNodes) to improve the us...
asked by 03.09.2014 / 15:01
2
answers

Redirect ASP NET

How can I redirect the page I encounter via an html inputButton in ASP NET WEB FORMS the code of my button : <input id="ButtonD" style="width: 169px" type="button" value="D" /><br />     
asked by 03.04.2014 / 14:27
2
answers

Closing modalpopupextender on button click

I'm using a modalpopupextender with C # .NET. When I click the button in my gridview, it calls the popup to edit the required information. When I click on the update or cancel, nothing happens! It's like he does not see codebehind!     
asked by 06.03.2014 / 15:08
3
answers

Repeater OnItemCommand event does not work

I'm having trouble with a Repeater in the webform, where the OnItemCommand event is not working. It should be triggered when I click the linkbutton. Aspx code: <asp:Repeater ID="repeaterImagens" runat="server" OnItemCommand="rep...
asked by 23.05.2014 / 13:58
1
answer

ASP.NET - Get selected value from Dropdownlist on my Controller

I have a dropdownlist that is defined in my view as follows: @Html.DropDownList("Exame", ViewBag.Exame as SelectList, "Escolha uma opção...", new { @class = "form-control", @name="ExameARegistar" }) This dropdownlist should allow a regist...
asked by 19.08.2018 / 23:01