I have a SQL statement:
var motivo = conexion.Query("SELECT * FROM historialvisitas WHERE idvisita ='"+rgtro+"' ");
This table has several columns, how do I show via RAZOR @ the value of a specific column?
Example:
I want to sh...
Hello, I would like you to help me. I am running this file but I get an error in the web.config. I am using the visual studio 2013 and I think that earlier I would have done it with the visual studio 2005. The error comes to me like the image I...
Good. I'm working with asp.net. It turns out that I have a report that I generate in this way:
private void MostrarReporte()
{
//reset
rptViewerActaVolante.Reset();
//dataSource
int idMateria = Convert.ToInt...
Hello, I am handling the following form in ASP :
<tr>
<td width="20%">
<dx:ASPxLabel runat="server" Text="Documento"></dx:ASPxLabel>
</td>
<td width="20%">
<dx:ASPxComboBox runat...
I have the following definition of list of options:
<% dynamic listItems_Afirmacion = new List<ListItem> {
new ListItem {
Text = "Si",
Value = "S"},...
I create a Button from code c #, now I need to add a method when I click on the ... I did this but it does not work
public void AgregarBoton()
{
Button miBoton = new Button();
miBoton.ID = "BtnCheck";...
I have this
TemplateField imgTemp = new TemplateField();
imgTemp.ItemTemplate = new ColumnaTemplate("Seleccion");
imgTemp.EditItemTemplate = new ElementoTemplate("Seleccion");
imgTemp.HeaderText = "Seleccion";
GridView1.Columns...
I would like to know how to use dependent Dropdownlist, for example that the CITY depends on the REGION, and that of the COUNTRY.
I am currently using this way of working when listing a dropdownlist:
In the controller;
Function Update...
I want to add a map with a mark on my ASP.NET page, this code adds the map but not the point, what will I be doing wrong?
function CreateMapGoogle() {
var atrMap = {
center: new google.maps.LatLng(40.712449, -74...