Questions tagged as 'asp'

1
answer

What the setCell command does in javascript

By the name implies that this command configures a cell in a table / grid. But I'm having trouble understanding its syntax mixed with asp . <%If col_cod <> "" Then %> oGrid.setCell(<%=linha%>,'<%=col_cod%>',co...
asked by 20.08.2015 / 13:32
1
answer

List C # losing what has already been added

I'm a beginner and I'm developing a shopping cart. The routine I thought was: Every click on the add button, the product is sent to the controller via ajax request. There I already have a list created. So, I add the product in the list and save...
asked by 07.05.2018 / 20:13
1
answer

Is it possible to use MVC with VB and ASP?

Is there a framework or way to work with MVC in ASP + VB? Correct me if I'm wrong, but I'm thinking of working this way: View -> .ASP Controller -> .ASP.VB MODELO/DAO -> .VB     
asked by 21.08.2017 / 19:07
2
answers

Double quotes in URL

I'm using the <button class="button button1" value="janeiro" onclick="location.href= 'escolha_dia.php?inst=<?=$acao;?>&sala=<?=$acao2;?>&ano=<?=$acao3;?>&mes=janeiro';"> Janeiro</button> but t...
asked by 07.04.2016 / 01:15
2
answers

Encoding ASP Classic

I have an application in .asp and I was having problems with special characters, they were printed on screen in a totally unconfigured way. To solve the problem, I applied: Response.CharSet = "ISO-8859-1" Response.CodePage = 28591...
asked by 14.08.2015 / 22:03
2
answers

Asp Classic - Keep option select post on page

People need help. I have the following ceiling of select HTML <select id="lstTransacao" name="lstTransacao"> <option value="null">Todos</option> <option value="1">Confirmados</option> <option...
asked by 26.01.2015 / 13:26
1
answer

Problem with HTML link with classic ASP [closed]

The following code snippet is giving me problems: While not rsQuery.EOF If vStrCurso <> rsQuery("SIGLA") Then ind = ind & "<p></p>" ind = ind & "<span><b><a...
asked by 15.06.2015 / 15:11
2
answers

Send DropDown value to Iframe

How do I send a value from a Drop Down to an [ IFRAME ]? I'm recovering the value like this: function mandaIframe() { pai = parent.document.form1; // especifica o elemento de id="formularioX", dentro do documento que é pai da página....
asked by 03.07.2018 / 16:59
1
answer

Asp Net Core MVC - Create Multiple Form

It's the first time I ask a question, and I'm getting used to the page, so forgive me if I make a mistake. I'm new to Asp Net Core MVC and I'm getting a lot to understand some things. The one that is preventing me from continuing my work the...
asked by 06.07.2018 / 00:10
1
answer

How to receive a formData with file and form in the controller? W #

So I get the form: public JsonResult Import(**FormCollection** form) So I get the file: public JsonResult Import(**HttpPostedFileBase** file) $.ajax({ url: urlImport, method: 'post', data: new FormData($('#for...
asked by 22.08.2018 / 15:28