Solucion inicial

git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C549
This commit is contained in:
asaenz 2022-06-16 14:35:51 +00:00
parent 33ab58fcd7
commit d1acfe3500
184 changed files with 13267 additions and 0 deletions

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Gestion.BL
{
class AgenciaBL
{
}
}

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D6DDA1CB-6F0A-4B25-9EA2-7ED4F43D4C51}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Gestion.BL</RootNamespace>
<AssemblyName>Gestion.BL</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AgenciaBL.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RecaudadorBL.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Gestion.DAL\Gestion.DAL.csproj">
<Project>{b74a6306-4912-4a5a-884e-82ffefe0c23e}</Project>
<Name>Gestion.DAL</Name>
</ProjectReference>
<ProjectReference Include="..\Gestion.ET\Gestion.ET.csproj">
<Project>{d0bde1c2-6d3f-48aa-a2df-4881f33a83b9}</Project>
<Name>Gestion.ET</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View file

@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// La información general de un ensamblado se controla mediante el siguiente
// conjunto de atributos. Cambie estos valores de atributo para modificar la información
// asociada con un ensamblado.
[assembly: AssemblyTitle("Gestion.BL")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Gestion.BL")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Si establece ComVisible en false, los tipos de este ensamblado no estarán visibles
// para los componentes COM. Si es necesario obtener acceso a un tipo en este ensamblado desde
// COM, establezca el atributo ComVisible en true en este tipo.
[assembly: ComVisible(false)]
// El siguiente GUID sirve como id. de typelib si este proyecto se expone a COM.
[assembly: Guid("d6dda1cb-6f0a-4b25-9ea2-7ed4f43d4c51")]
// La información de versión de un ensamblado consta de los cuatro valores siguientes:
//
// Versión principal
// Versión secundaria
// Número de compilación
// Revisión
//
// Puede especificar todos los valores o usar los valores predeterminados de número de compilación y de revisión
// utilizando el carácter "*", como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Gestion.BL
{
class RecaudadorBL
{
}
}

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Gestion.DAL
{
class AgenciaDAL
{
}
}

View file

@ -0,0 +1,53 @@
using Oracle.DataAccess.Client;
using Oracle.DataAccess;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Text;
namespace Gestion.DAL
{
public class Conexion
{
public static OracleConnection conexion
{
get
{
return new OracleConnection(ConfigurationManager.ConnectionStrings["MTX"].ConnectionString);
}
}
public DataSet getDataSet(string spName, List<OracleParameter> parameters)
{
try
{
using (conexion)
{
conexion.Open();
using (Oracle.DataAccess.Client.OracleCommand Command = new Oracle.DataAccess.Client.OracleCommand(spName, conexion))
{
if (parameters != null && parameters.Count > 0)
{
Command.CommandType = CommandType.StoredProcedure;
foreach (var p in parameters)
{
Command.Parameters.Add(p);
}
}
OracleDataAdapter da = new OracleDataAdapter(Command);
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
}
}
catch (Exception ex)
{
throw new Exception("No hay conexion");
}
}
}
}

View file

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B74A6306-4912-4A5A-884E-82FFEFE0C23E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Gestion.DAL</RootNamespace>
<AssemblyName>Gestion.DAL</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Oracle.DataAccess, Version=10.2.0.100, Culture=neutral, PublicKeyToken=89b483f429c47342">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\oraclexe\app\oracle\product\10.2.0\server\BIN\Oracle.DataAccess.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AgenciaDAL.cs" />
<Compile Include="Conexion.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RecaudadorDAL.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Gestion.ET\Gestion.ET.csproj">
<Project>{d0bde1c2-6d3f-48aa-a2df-4881f33a83b9}</Project>
<Name>Gestion.ET</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View file

@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// La información general de un ensamblado se controla mediante el siguiente
// conjunto de atributos. Cambie estos valores de atributo para modificar la información
// asociada con un ensamblado.
[assembly: AssemblyTitle("Gestion.DAL")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Gestion.DAL")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Si establece ComVisible en false, los tipos de este ensamblado no estarán visibles
// para los componentes COM. Si es necesario obtener acceso a un tipo en este ensamblado desde
// COM, establezca el atributo ComVisible en true en este tipo.
[assembly: ComVisible(false)]
// El siguiente GUID sirve como id. de typelib si este proyecto se expone a COM.
[assembly: Guid("b74a6306-4912-4a5a-884e-82ffefe0c23e")]
// La información de versión de un ensamblado consta de los cuatro valores siguientes:
//
// Versión principal
// Versión secundaria
// Número de compilación
// Revisión
//
// Puede especificar todos los valores o usar los valores predeterminados de número de compilación y de revisión
// utilizando el carácter "*", como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Gestion.DAL
{
class RecaudadorDAL
{
}
}

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Gestion.ET
{
class Agencia
{
}
}

View file

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D0BDE1C2-6D3F-48AA-A2DF-4881F33A83B9}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Gestion.ET</RootNamespace>
<AssemblyName>Gestion.ET</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Agencia.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Recaudador.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View file

@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// La información general de un ensamblado se controla mediante el siguiente
// conjunto de atributos. Cambie estos valores de atributo para modificar la información
// asociada con un ensamblado.
[assembly: AssemblyTitle("Gestion.ET")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Gestion.ET")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Si establece ComVisible en false, los tipos de este ensamblado no estarán visibles
// para los componentes COM. Si es necesario obtener acceso a un tipo en este ensamblado desde
// COM, establezca el atributo ComVisible en true en este tipo.
[assembly: ComVisible(false)]
// El siguiente GUID sirve como id. de typelib si este proyecto se expone a COM.
[assembly: Guid("d0bde1c2-6d3f-48aa-a2df-4881f33a83b9")]
// La información de versión de un ensamblado consta de los cuatro valores siguientes:
//
// Versión principal
// Versión secundaria
// Número de compilación
// Revisión
//
// Puede especificar todos los valores o usar los valores predeterminados de número de compilación y de revisión
// utilizando el carácter "*", como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Gestion.ET
{
class Recaudador
{
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 745 B

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 838 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,006 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,702 @@
/*BEGIN Principal LAYOUT*/
#contenedor
{
min-width:774px;
background:#FFFFFF;
border:0px solid #000000;
}
#encabezado
{
height:85px;
max-width:1600px;
text-align:center;
background-image:url('_imagenes/encabezado.jpg');
background-repeat:no-repeat;
background-position: center;
}
#fecha
{
position:relative;
height:15px;
max-width:100px;
text-align:center;
left:62%;
top:65px;
}
/*Soluciona BUG de IE7*/
*+html #encabezado #fecha
{
left:18%;
}
/*Soluciona BUG de IE6*/
*html #encabezado #fecha
{
left:18%;
}
#infogeneral
{
position:relative;
height:12px;
margin-left:auto;
margin-right:auto;
top:65px;
}
#cuerpoCentro
{
background-position: center;
display:block;
height:auto;
min-height:200px;
max-width:775px;
text-align:center;
margin-top:20px;
margin-bottom:20px;
margin-left:auto;
margin-right:auto;
background-repeat:no-repeat;
border:1px solid #CBDFE4;
}
/*Soluciona BUG de IE6*/
*html #cuerpoCentro
{
width:775px;
margin-left:auto;
margin-right:auto;
}
#cuerpoCentro #contenidosContenedor
{
border:0px none;
margin-left:10px;
margin-right:10px;
width:750px;
}
#izquierda
{
margin-left:60px;
margin-top:20px;
width:170px;
}
/*Soluciona BUG de IE7*/
*+html #izquierda
{
margin-left:-460px;
}
/*Soluciona BUG de IE6*/
*html #izquierda
{
margin-left:-460px;
}
#menu
{
background-position: left;
display:block;
height:auto;
min-height:200px;
max-width:145px;
margin-top:5px;
margin-bottom:0px;
margin-left:0px;
background-repeat:no-repeat;
margin-left:5px;
margin-top:5px;
width:170px;
}
/*Soluciona BUG de IE7*/
*+html #menu
{
margin-left:-610px;
}
/*Soluciona BUG de IE6*/
*html #menu
{
margin-left:-610px;
}
/*Descarta IE6 e IE7*/
*|html #menu
{
margin-top:8px;
}
#contenidosContenedor #centro
{
margin-left:285px;
margin-top:-190px;
width:400px;
}
#contenidosContenedor #centroPrincipal
{
margin-left:180px;
margin-top:-200px;
width:560px;
}
#contenidosContenedor #centroPrincipal #icono
{
margin-left:-20px;
margin-top:0px;
width:140px;
height:120px;
}
/*Soluciona BUG de IE7*/
*+html #contenidosContenedor #centroPrincipal #icono
{
margin-left:-450px;
margin-top:10px;
}
/*Soluciona BUG de IE6*/
*html #contenidosContenedor #centroPrincipal #icono
{
margin-left:-450px;
margin-top:10px;
}
#contenidosContenedor #centroPrincipal #titulo
{
margin-left:100px;
margin-top:-100px;
width:420px;
}
/*Soluciona BUG de IE7*/
*+html #contenidosContenedor #centroPrincipal #titulo
{
margin-left:70px;
margin-top:-100px;
}
/*Soluciona BUG de IE6*/
*html #contenidosContenedor #centroPrincipal #titulo
{
margin-left:70px;
margin-top:-100px;
}
#contenidosContenedor #centroPrincipal #separador
{
height:1px;
width:420px;
margin-left:110px;
margin-top:20px;
background-color:#A6998E;
}
/*Soluciona BUG de IE7*/
*+html #contenidosContenedor #centroPrincipal #separador
{
margin-left:90px;
margin-top:20px;
}
/*Soluciona BUG de IE6*/
*html #contenidosContenedor #centroPrincipal #separador
{
height:1px;
margin-left:90px;
margin-top:20px;
}
#contenidosContenedor #centroPrincipal #instrucciones
{
text-align:left;
margin-left:5px;
margin-top:20px;
width:420px;
}
/*Soluciona BUG de IE7*/
*+html #contenidosContenedor #centroPrincipal #instrucciones
{
margin-left:-125px;
margin-top:20px;
}
/*Soluciona BUG de IE6*/
*html #contenidosContenedor #centroPrincipal #instrucciones
{
margin-left:-125px;
margin-top:20px;
}
#contenidosContenedor #centroPrincipal #mensajes
{
text-align:left;
margin-left:5px;
margin-top:10px;
width:420px;
}
/*Soluciona BUG de IE7*/
*+html #contenidosContenedor #centroPrincipal #mensajes
{
margin-left:-125px;
margin-top:5px;
}
/*Soluciona BUG de IE6*/
*html #contenidosContenedor #centroPrincipal #mensajes
{
margin-left:-125px;
margin-top:5px;
}
#contenidosContenedor #centroPrincipal #controles
{
text-align:left;
}
#contenidosContenedor #centroPrincipal #controles #repetidor
{
color:#01657D;
font-family:Verdana;
font-size:10px;
}
#centro #inicio
{
padding-top:20px;
padding-bottom:20px;
margin-left:auto;
margin-right:auto;
width:280px;
}
#centro #contenidos
{
padding-top:20px;
padding-bottom:20px;
margin-left:auto;
margin-right:auto;
width:280px;
}
#centroPrincipal #contenidos
{
padding-top:20px;
padding-bottom:20px;
margin-left:auto;
margin-right:auto;
width:545px;
}
#pie
{
height:70px;
max-width:1600px;
text-align:center;
background-image:url('_imagenes/pie.jpg');
background-repeat:no-repeat;
background-position: center;
}
.titulo
{
font-family:Verdana;
font-size:25px;
color:#333333;
}
.instrucciones
{
font-family:Verdana;
font-size:12px;
font-weight:bold;
color:#333333;
}
.mensajes
{
font-family:Verdana;
font-size:11px;
color:#FF0000;
}
.infogeneral
{
font-family:Verdana;
font-size:11px;
color:#03667E;
font-weight:bold;
}
/*END Principal LAYOUT*/
/* acordion */
.acordionEncabezado
{
border: 1px solid #2F4F4F;
color: #FFFFFF;
background-color: #2E4d7B;
font-family: Arial, Sans-Serif;
font-size: 12px;
font-weight: bold;
padding: 5px;
margin-top: 5px;
cursor: pointer;
}
#contenido_maestro .acordionEncabezado a
{
color: #FFFFFF;
background: none;
text-decoration: none;
}
#contenido_maestro .acordionEncabezado a:hover
{
color: #FFFFFF;
background: none;
text-decoration: underline;
}
.acordionEncabezadoSeleccionado
{
border: 1px solid #2F4F4F;
color: #FFFFFF;
background-color: #5078B3;
font-family: Arial, Sans-Serif;
font-size: 12px;
font-weight: bold;
padding: 5px;
margin-top: 5px;
cursor: pointer;
}
#contenido_maestro .acordionEncabezadoSeleccionado a
{
color: #FFFFFF;
background: none;
text-decoration: none;
}
#contenido_maestro .acordionEncabezadoSeleccionado a:hover
{
background: none;
text-decoration: underline;
}
.contenidoAcordion
{
background-color: #FFFFFF;
border: 1px dashed #2F4F4F;
border-top: none;
padding: 5px;
padding-top: 10px;
min-height:470px;
}
.escondeColumnas
{
display:none;
}
.lblLabel
{
font-family:Verdana;
font-size:10px;
font-weight:bold;
}
.calendario .ajax__calendar_container
{
border:1px solid #646464;
background-color:#C5DEE5;
color: Blue;
}
/*BEGIN SECONDARY LAYOUT*/
/* mac hide and combat ie's 3 pixel jog \*/
* html#font-family #centro{overflow:hidden;float:left;width:100%}
* html #middle-home {height:1%;position:relative}
/* end hide*/
/*END SECONDARY LAYOUT*/
/*BEGIN SECONDARY II LAYOUT*/
/* mac hide and combat ie's 3 pixel jog \*/
* html #centre2{overflow:hidden;float:left;width:100%}
* html #middle2 {height:1%;position:relative}
/* end hide*/
/************** DO NOT REMOVE THIS CODE BELOW *****************/
/* mac hide and combat ie's 3 pixel jog \*/
* html #centre{overflow:hidden;float:left;width:100%}
* html #middle {height:1%;position:relative}
/* end hide*/
.clearer
{
height:1px;
overflow:hidden;
margin-top:-1px;
clear:both;
}
/*END SECONDARY II LAYOUT*/
body
{
margin:10px 1%;
padding:0;
background:#FFFFFF;
font-family: Verdana, Arial, "Times New Roman", serif;
font-size: 100%;
color:#000000;
}
td
{
font-family: Verdana, Arial, "Times New Roman", serif;
font-size: 100%;
text-align:left;
vertical-align:top;
line-height:200%;
}
hr
{
color: #004070;
}
p
{
text-align: justify;
font-family: Verdana, Arial, "Times New Roman", serif;
font-size: 80%;
color: #000000;
margin:15px 15px 15px 15px;
}
.break
{
line-height: 120%;
margin:10px 5px 10px 0;
padding-left:5px;
}
.breakr
{
text-align: right;
line-height: 120%;
margin:10px 5px 10px 0;
padding-left:5px;
}
.floatleft
{ float: left;
margin: 5px 0 0px 10px;
padding: 2px;
}
.floatright
{
float: right;
margin: 0px 5px 5px 0;
padding: 2px;
}
.pad
{
padding-right: 15px;
}
p.righttext
{
text-align: right;
margin-top: -10px;
margin-right: 50px;
font-style:italic
}
p.slanted
{
text-align: center;
font-style:italic;
}
p.right
{ padding: 0px;
display: block;
}
p.poem
{
margin-bottom:5px;
}
p.center
{ text-align: center;
font-size: 60%;
font-weight: bold;
}
p.centero2
{
text-align: center;
font-size: 100%;
}
p.center3
{ text-align: center;
padding: 3px;
font-size: 70%;
font-weight: bold;
margin-bottom: 0px;
}
p.center4
{
text-align: left;
padding: 3px;
font-size: 70%;
line-height: 100%;
margin-bottom: 0px;
}
p.left
{ text-align: left;
margin-top: 0;
margin-bottom: 0;
}
p.left2
{
text-align: left;
padding: 3px;
font-size: 70%;
line-height: 100%;
margin-bottom: 0px;
}
p.center6
{
text-align: center;
font-size: 150%;
color: #F2F2F2;
}
ul
{
margin-top: 5px;
}
li
{
text-align: left;
font-size: 80%;
margin-top: -15px;
margin-left: -45px;
margin-bottom: -10px;
padding: 5px;
list-style-type:none;
}
h1
{ padding-top: 10px;
font-family: Arial, Verdana, "Times New Roman", serif;
font-size: 200%;
text-align: center;
font-weight:bold;
color:#000000;
}
h2
{
font-family: Arial, Verdana, "Times New Roman", serif;
font-size: 110%;
color: #000000;
text-align: center;
font-weight:bold;
}
h3
{
text-align:center;
padding: 5px;
font-family: Arial, Verdana, "Times New Roman", serif;
font-size: 85%;
color: #000000;
font-weight: bold;
}
h4
{
text-align:center;
padding: 5px;
font-family: Arial, Verdana, "Times New Roman", serif;
font-size: 70%;
color: #000000;
}
h1.smallh1
{
font-size: 90%;
font-family:Verdana;
color:Navy;
}
h1.smallh2
{
margin-top:20px;
font-size: 125%;
}
h2.space
{
margin-bottom: 0px;
}
h3.hleft
{
text-align: left;
}
.centro
{
text-align:center;
font-size: 85%;
}
.centro img
{
margin: 5px;
border:3px solid #FFFFFF;
}
h1,h3,p
{
margin-top:0;
}
img
{
text-align:left;
}
.img-border
{
border:3px solid #FFFFFF;
}

View file

@ -0,0 +1,20 @@
<%--
basico skin template. The following skins are provided as examples only.
1. Named control skin. The SkinId should be uniquely defined because
duplicate SkinId's per control type are not allowed in the same theme.
<asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
<AlternatingRowStyle BackColor="Blue" />
</asp:GridView>
2. basico skin. The SkinId is not defined. Only one basico
control skin per control type is allowed in the same theme.
<asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
--%>
<asp:Panel runat="server"
Width="250px" ForeColor="DarkBlue"
BorderStyle="None" Font="Verdana" Font-Size="10px" style="z-index: 1;">
</asp:Panel>

View file

@ -0,0 +1,29 @@
.tablaPrinc
{
background-color:#C5DDE4;
font-size:11px;
font-family:Arial;
width: 604px;
}
.titleTablaPrinc
{
font-size: 16pt;
font-weight:bold;
color: #ffffff;
text-align:center;
}
.ayudaPag
{
text-align:right;
}
.formatoGrid
{
font-size: 11px;
font-family: Arial;
text-align: center;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</configuration>

View file

@ -0,0 +1,675 @@
/*BEGIN MAIN LAYOUT*/
#container
{
min-width:774px;
background:#FFFFFF;
border:0px solid #000000;
}
#header
{
height:85px;
max-width:1600px;
text-align:center;
background-image:url('_images/header.jpg');
background-repeat:no-repeat;
background-position: center;
}
#date
{
position:relative;
height:15px;
max-width:100px;
text-align:center;
left:62%;
top:65px;
}
/*Soluciona BUG de IE7*/
*+html #header #date
{
left:18%;
}
/*Soluciona BUG de IE6*/
*html #header #date
{
left:18%;
}
#body
{
background-position: center;
display:block;
height:auto;
min-height:200px;
max-width:775px;
text-align:center;
margin-top:20px;
margin-bottom:20px;
margin-left:auto;
margin-right:auto;
background-repeat:no-repeat;
border:1px solid #CBDFE4;
}
/*Soluciona BUG de IE6*/
*html #body
{
width:775px;
margin-left:auto;
margin-right:auto;
}
#body #contentsContainer
{
border:0px none;
margin-left:10px;
margin-right:10px;
width:750px;
}
#contentsContainer #left
{
margin-left:60px;
margin-top:20px;
width:170px;
}
/*Soluciona BUG de IE7*/
*+html #contentsContainer #left
{
margin-left:-460px;
}
/*Soluciona BUG de IE6*/
*html #contentsContainer #left
{
margin-left:-460px;
}
#contentsContainer #menu
{
margin-left:0px;
margin-top:-18px;
width:170px;
}
/*Soluciona BUG de IE7*/
*+html #contentsContainer #menu
{
margin-left:-610px;
}
/*Soluciona BUG de IE6*/
*html #contentsContainer #menu
{
margin-left:-610px;
}
/*Descarta IE6 e IE7*/
*|html #contentsContainer #menu
{
margin-top:-15px;
}
#contentsContainer #center
{
margin-left:285px;
margin-top:-190px;
width:400px;
}
#contentsContainer #centerMain
{
margin-left:180px;
margin-top:-155px;
width:560px;
}
#contentsContainer #centerMain #icon
{
margin-left:-20px;
margin-top:0px;
width:140px;
height:120px;
}
/*Soluciona BUG de IE7*/
*+html #contentsContainer #centerMain #icon
{
margin-left:-450px;
margin-top:10px;
}
/*Soluciona BUG de IE6*/
*html #contentsContainer #centerMain #icon
{
margin-left:-450px;
margin-top:10px;
}
#contentsContainer #centerMain #title
{
margin-left:100px;
margin-top:-100px;
width:420px;
}
/*Soluciona BUG de IE7*/
*+html #contentsContainer #centerMain #title
{
margin-left:70px;
margin-top:-100px;
}
/*Soluciona BUG de IE6*/
*html #contentsContainer #centerMain #title
{
margin-left:70px;
margin-top:-100px;
}
#contentsContainer #centerMain #separator
{
height:1px;
width:420px;
margin-left:110px;
margin-top:20px;
background-color:#A6998E;
}
/*Soluciona BUG de IE7*/
*+html #contentsContainer #centerMain #separator
{
margin-left:90px;
margin-top:20px;
}
/*Soluciona BUG de IE6*/
*html #contentsContainer #centerMain #separator
{
height:1px;
margin-left:90px;
margin-top:20px;
}
#contentsContainer #centerMain #instructions
{
text-align:left;
margin-left:5px;
margin-top:20px;
width:420px;
}
/*Soluciona BUG de IE7*/
*+html #contentsContainer #centerMain #instructions
{
margin-left:-125px;
margin-top:20px;
}
/*Soluciona BUG de IE6*/
*html #contentsContainer #centerMain #instructions
{
margin-left:-125px;
margin-top:20px;
}
#contentsContainer #centerMain #messages
{
text-align:left;
margin-left:5px;
margin-top:10px;
width:420px;
}
/*Soluciona BUG de IE7*/
*+html #contentsContainer #centerMain #messages
{
margin-left:-125px;
margin-top:5px;
}
/*Soluciona BUG de IE6*/
*html #contentsContainer #centerMain #messages
{
margin-left:-125px;
margin-top:5px;
}
#contentsContainer #centerMain #controls
{
text-align:left;
}
#center #login
{
padding-top:20px;
padding-bottom:20px;
margin-left:auto;
margin-right:auto;
width:280px;
}
#center #contents
{
padding-top:20px;
padding-bottom:20px;
margin-left:auto;
margin-right:auto;
width:280px;
}
#centerMain #contents
{
padding-top:20px;
padding-bottom:20px;
margin-left:auto;
margin-right:auto;
width:545px;
}
#footer
{
height:85px;
max-width:1600px;
text-align:center;
background-image:url('_images/header.jpg');
background-repeat:no-repeat;
background-position: center;
}
.Title
{
font-family:Verdana;
font-size:25px;
color:#333333;
}
.Instructions
{
font-family:Verdana;
font-size:12px;
font-weight:bold;
color:#333333;
}
.Messages
{
font-family:Verdana;
font-size:11px;
color:#FF0000;
}
/*END MAIN LAYOUT*/
/*BEGIN SECONDARY LAYOUT*/
/* mac hide and combat ie's 3 pixel jog \*/
* html#font-family #center{overflow:hidden;float:left;width:100%}
* html #middle-home {height:1%;position:relative}
/* end hide*/
/*END SECONDARY LAYOUT*/
/*BEGIN SECONDARY II LAYOUT*/
/* mac hide and combat ie's 3 pixel jog \*/
* html #centre2{overflow:hidden;float:left;width:100%}
* html #middle2 {height:1%;position:relative}
/* end hide*/
/************** DO NOT REMOVE THIS CODE BELOW *****************/
/* mac hide and combat ie's 3 pixel jog \*/
* html #centre{overflow:hidden;float:left;width:100%}
* html #middle {height:1%;position:relative}
/* end hide*/
.clearer
{
height:1px;
overflow:hidden;
margin-top:-1px;
clear:both;
}
a.redbold
{
color: #800000;
font-weight: bold;
}
span
{
color: #800000;
}
/*END SECONDARY II LAYOUT*/
body
{
margin:10px 1%;
padding:0;
background:#FFFFFF;
font-family: Verdana, Arial, "Times New Roman", serif;
font-size: 100%;
color:#000000;
}
td
{
font-family: Verdana, Arial, "Times New Roman", serif;
font-size: 100%;
text-align:center;
vertical-align:top;
line-height:200%;
}
hr
{
color: #004070;
}
p
{
text-align: justify;
font-family: Verdana, Arial, "Times New Roman", serif;
font-size: 80%;
color: #000000;
margin:15px 15px 15px 15px;
}
.break
{
line-height: 120%;
margin:10px 5px 10px 0;
padding-left:5px;
}
.breakr
{
text-align: right;
line-height: 120%;
margin:10px 5px 10px 0;
padding-left:5px;
}
.floatleft
{ float: left;
margin: 5px 0 0px 10px;
padding: 2px;
}
.floatright
{
float: right;
margin: 0px 5px 5px 0;
padding: 2px;
}
.pad
{
padding-right: 15px;
}
p.righttext
{
text-align: right;
margin-top: -10px;
margin-right: 50px;
font-style:italic
}
p.slanted
{
text-align: center;
font-style:italic;
}
p.right
{ padding: 0px;
display: block;
}
p.poem
{
margin-bottom:5px;
}
p.center
{ text-align: center;
font-size: 60%;
font-weight: bold;
}
p.center2
{
text-align: center;
font-size: 100%;
}
p.center3
{ text-align: center;
padding: 3px;
font-size: 70%;
font-weight: bold;
margin-bottom: 0px;
}
p.center4
{
text-align: left;
padding: 3px;
font-size: 70%;
line-height: 100%;
margin-bottom: 0px;
}
p.left
{ text-align: left;
margin-top: 0;
margin-bottom: 0;
}
p.left2
{
text-align: left;
padding: 3px;
font-size: 70%;
line-height: 100%;
margin-bottom: 0px;
}
p.center6
{
text-align: center;
font-size: 150%;
color: #F2F2F2;
}
ul
{
margin-top: 5px;
}
li
{
text-align: left;
font-size: 80%;
margin-top: -15px;
margin-left: -45px;
margin-bottom: -10px;
padding: 5px;
list-style-type:none;
}
h1
{ padding-top: 10px;
font-family: Arial, Verdana, "Times New Roman", serif;
font-size: 200%;
text-align: center;
font-weight:bold;
color:#000000;
}
h2
{
font-family: Arial, Verdana, "Times New Roman", serif;
font-size: 110%;
color: #000000;
text-align: center;
font-weight:bold;
}
h3
{
text-align:center;
padding: 5px;
font-family: Arial, Verdana, "Times New Roman", serif;
font-size: 85%;
color: #000000;
font-weight: bold;
}
h4
{
text-align:center;
padding: 5px;
font-family: Arial, Verdana, "Times New Roman", serif;
font-size: 70%;
color: #000000;
}
h1.smallh1
{
font-size: 90%;
font-family:Verdana;
color:Navy;
}
h1.smallh2
{
margin-top:20px;
font-size: 125%;
}
h2.space
{
margin-bottom: 0px;
}
h3.hleft
{
text-align: left;
}
.center
{
text-align:center;
font-size: 85%;
}
.center img
{
margin: 5px;
border:3px solid #FFFFFF;
}
h1,h3,p
{
margin-top:0;
}
img
{
text-align:center;
}
.img-border
{
border:3px solid #FFFFFF;
}
/******* hyperlink and anchor tag styles *******/
a:link, a:visited
{
padding: 5px;
font-size: 80%;
line-height: 125%;
color: #004782;
text-decoration: none;
}
a:hover
{
padding: 5px;
font-size: 80%;
line-height: 125%;
text-decoration: underline;
}
a:link.text-menu, a:visited.text-menu, a:hover.text-menu
{
padding: 0px;
font-size:100%;
font-weight: bold;
}
a:link.alumni-menu, a:visited.alumni-menu, a:hover.alumni-menu
{
padding: 0px;
line-height:200%;
font-size:100%;
font-weight: bold;
}
/******************** END **************************/
.left a
{
display: block;
margin-left: 5px;
}
.right a
{
display: block;
margin-left: 15px;
}
.right-col
{
text-align: justify;
padding: 7px;
font-size: 80%;
line-height: 100%;
}
.tfooter
{
text-align: center;
display: block;
clear: both;
border-top: 8px solid #FFFFFF;
font-size: 75%;
color: #cccccc;
}
.watermark
{
background-position: center;
margin: 20px;
text-align: center;
background-image:url('images/sna-collage-3-t.jpg');
background-repeat:repeat;
/*background-attachment:fixed;*/
}

View file

@ -0,0 +1,20 @@
<%--
Default skin template. The following skins are provided as examples only.
1. Named control skin. The SkinId should be uniquely defined because
duplicate SkinId's per control type are not allowed in the same theme.
<asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
<AlternatingRowStyle BackColor="Blue" />
</asp:GridView>
2. Default skin. The SkinId is not defined. Only one default
control skin per control type is allowed in the same theme.
<asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
--%>
<asp:Panel runat="server"
Width="250px" ForeColor="DarkBlue"
BorderStyle="None" Font="Verdana" Font-Size="10px" style="z-index: 1;">
</asp:Panel>

View file

@ -0,0 +1,516 @@
/*BEGIN MAIN LAYOUT*/
#container
{
min-width:774px;
background:#FFFFFF;
border:0px solid #000000;
}
#header
{
height: 85px;
max-width: 1600px;
text-align: center;
background-image:url('_images/header.jpg');
background-repeat:no-repeat;
background-position: center;
}
#date
{
position:relative;
height: 55px;
max-width: 100px;
text-align: center;
left:63%;
}
#contentsContainer
{
background-position: center;
display:block;
height:auto;
min-height:200px;
max-width: 775px;
text-align: center;
margin-top:10px;
margin-bottom:20px;
margin-left:auto;
margin-right:auto;
background-repeat:no-repeat;
border:1px solid #CBDFE4;
}
#header-image
{
height: 180px;
text-align:center;
background-position: center;
background-image:url('_images/header.jpg');
background-repeat:no-repeat;
}
#left-menu
{
margin-left:-159px;/* must be 1 pixel less than width*/
float:left;
width:156px;/* must be same as left margin on #middle*/
position:relative;
left:-2px;/* line up exactly */
display:inline;
background-color:#FFFFFF;
}
#right-col
{
margin-right:-159px;/* must be 1 pixel less than width*/
float:right;
width:156px;/* must be same as right margin on #middle*/
position:relative;
right:-3px;/* line up */
display:inline;/* ie fix*/
background-color:#FFFFFF;
}
* html #left-menu{margin-right:-3px;}/* 3 pixel jog*/
* html #right-col{margin-left:-3px; border-left:5px solid #FFFFFF;}/* 3 pixel jog*/
#middle
{
border-left:5px solid #FFFFFF;
border-right:5px solid #FFFFFF;
background:#FFFFFF;
margin-left:156px;
margin-right:156px;
}
/*END MAIN LAYOUT*/
/*BEGIN SECONDARY LAYOUT*/
#left-menu-home
{
margin-left:15px;/* must be 1 pixel less than width*/
float:left;
width:156px;/* must be same as left margin on #middle*/
position:relative;
left:-2px;/* line up exactly */
display:inline;
background-color:#FFFFFF;
}
#right-col-home
{
margin-right:-0px;/* must be 1 pixel less than width*/
float:right;
width:0px;/* must be same as right margin on #middle*/
position:relative;
right:-0px;/* line up */
display:inline;/* ie fix*/
background-color:#FFFFFF;
}
* html #left-menu-home{margin-right:-3px;}/* 3 pixel jog*/
* html #right-col-home{margin-left:-3px; border-left:5px solid #FFFFFF;}/* 3 pixel jog*/
#middle-home
{
border-left:5px solid #FFFFFF;
border-right:0px solid #FFFFFF;
background:#FFFFFF;
margin-left:156px;
margin-right:0px;
}
/* mac hide and combat ie's 3 pixel jog \*/
* html#font-family #centre{overflow:hidden;float:left;width:100%}
* html #middle-home {height:1%;position:relative}
/* end hide*/
/*END SECONDARY LAYOUT*/
/*BEGIN SECONDARY II LAYOUT*/
#middle2
{
border-left:5px solid #FFFFFF;
border-right:5px solid #FFFFFF;
background:#FFFFFF;
margin-left:156px;
margin-right:156px;
background-image:url('images/sna-collage-3-w.jpg');
background-repeat:repeat;
}
/* mac hide and combat ie's 3 pixel jog \*/
* html #centre2{overflow:hidden;float:left;width:100%}
* html #middle2 {height:1%;position:relative}
/* end hide*/
/************** DO NOT REMOVE THIS CODE BELOW *****************/
/* mac hide and combat ie's 3 pixel jog \*/
* html #centre{overflow:hidden;float:left;width:100%}
* html #middle {height:1%;position:relative}
/* end hide*/
#login
{
padding-top:20px;
margin-left:20px;
width:280px;
}
#footer
{
clear:both;
border-top:1px solid #FFFFFF;
border-bottom:1px solid #FFFFFF;
height: 35px;
background:#FFFFFF;
text-align:center
}
.clearer
{
height:1px;
overflow:hidden;
margin-top:-1px;
clear:both;
}
a.redbold
{
color: #800000;
font-weight: bold;
}
span
{
color: #800000;
}
/*END SECONDARY II LAYOUT*/
body
{
margin:10px 1%;
padding:0;
background:#FFFFFF;
font-family: Arial, "Times New Roman", serif;
font-size: 10px 100%;
color:#000000;
}
td
{
font-family: Arial, "Times New Roman", serif;
font-size: 10px 100%;
text-align:center;
vertical-align:top;
line-height:200%;
}
hr
{
color: #004070;
}
p
{
text-align: justify;
font-family: Arial, "Times New Roman", serif;
font-size: 10px 80%;
color: #000000;
margin:15px 15px 15px 15px;
}
.break
{
line-height: 120%;
margin:10px 5px 10px 0;
padding-left:5px;
}
.breakr
{
text-align: right;
line-height: 120%;
margin:10px 5px 10px 0;
padding-left:5px;
}
.floatleft
{ float: left;
margin: 5px 0 0px 10px;
padding: 2px;
}
.floatright
{
float: right;
margin: 0px 5px 5px 0;
padding: 2px;
}
.pad
{
padding-right: 15px;
}
p.righttext
{
text-align: right;
margin-top: -10px;
margin-right: 50px;
font-style:italic
}
p.slanted
{
text-align: center;
font-style:italic;
}
p.right
{ padding: 0px;
display: block;
}
p.poem
{
margin-bottom:5px;
}
p.center
{ text-align: center;
font-size: 60%;
font-weight: bold;
}
p.center2
{
text-align: center;
font-size: 100%;
}
p.center3
{ text-align: center;
padding: 3px;
font-size: 70%;
font-weight: bold;
margin-bottom: 0px;
}
p.center4
{
text-align: left;
padding: 3px;
font-size: 70%;
line-height: 100%;
margin-bottom: 0px;
}
p.left
{ text-align: left;
margin-top: 0;
margin-bottom: 0;
}
p.left2
{
text-align: left;
padding: 3px;
font-size: 70%;
line-height: 100%;
margin-bottom: 0px;
}
p.center6
{
text-align: center;
font-size: 150%;
color: #F2F2F2;
}
ul
{
margin-top: 5px;
}
li
{
text-align: left;
font-size: 80%;
margin-top: -15px;
margin-left: -45px;
margin-bottom: -10px;
padding: 5px;
list-style-type:none;
}
h1
{ padding-top: 10px;
font-family: Arial, "Times New Roman", serif;
font-size: 10px 200%;
text-align: center;
font-weight:bold;
color:#000000;
}
h2
{
font-family: Arial, "Times New Roman", serif;
font-size: 110%;
color: #000000;
text-align: center;
font-weight:bold;
}
h3
{
text-align:center;
padding: 5px;
font-family: Arial, "Times New Roman", serif;
font-size: 10px 85%;
color: #000000;
font-weight: bold;
}
h4
{
text-align:center;
padding: 5px;
font-family: Arial, "Times New Roman", serif;
font-size: 10px 70%;
color: #000000;
}
h1.smallh1
{
font-size: 90%;
font-family:Verdana;
color:Navy;
}
h1.smallh2
{
margin-top:20px;
font-size: 125%;
}
h2.space
{
margin-bottom: 0px;
}
h3.hleft
{
text-align: left;
}
.center
{
text-align:center;
font-size: 10px 85%;
}
.center img
{
margin: 5px;
border:3px solid #FFFFFF;
}
h1,h3,p
{
margin-top:0;
}
img
{
text-align:center;
}
.img-border
{
border:3px solid #FFFFFF;
}
/******* hyperlink and anchor tag styles *******/
a:link, a:visited
{
padding: 5px;
font-size: 80%;
line-height: 125%;
color: #004782;
text-decoration: none;
}
a:hover
{
padding: 5px;
font-size: 80%;
line-height: 125%;
text-decoration: underline;
}
a:link.text-menu, a:visited.text-menu, a:hover.text-menu
{
padding: 0px;
font-size:100%;
font-weight: bold;
}
a:link.alumni-menu, a:visited.alumni-menu, a:hover.alumni-menu
{
padding: 0px;
line-height:200%;
font-size:100%;
font-weight: bold;
}
/******************** END **************************/
.left a
{
display: block;
margin-left: 5px;
}
.right a
{
display: block;
margin-left: 15px;
}
.right-col
{
text-align: justify;
padding: 7px;
font-size: 10px 80%;
line-height: 100%;
}
.tfooter
{
text-align: center;
display: block;
clear: both;
border-top: 8px solid #FFFFFF;
font-size: 10px 75%;
color: #cccccc;
}
.watermark
{
background-position: center;
margin: 20px;
text-align: center;
background-image:url('images/sna-collage-3-t.jpg');
background-repeat:repeat;
/*background-attachment:fixed;*/
}

View file

@ -0,0 +1,2 @@
cuerpo {
}

View file

@ -0,0 +1,15 @@
<%--
basico skin template. The following skins are provided as examples only.
1. Named control skin. The SkinId should be uniquely defined because
duplicate SkinId's per control type are not allowed in the same theme.
<asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
<AlternatingRowStyle BackColor="Blue" />
</asp:GridView>
2. basico skin. The SkinId is not defined. Only one basico
control skin per control type is allowed in the same theme.
<asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
--%>

View file

@ -0,0 +1,74 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Conectarse.aspx.cs" Inherits="Conectarse" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Agencia Web - Ventanilla Electrónica de Pagos</title>
</head>
<body runat="server" id="img1" >
<form id="form1" runat="server" enableviewstate="true" >
<div id="DIV1" runat="server" >
<br />
<br />
<br />
<br />
<br />
<br />
<table style="width: 607px" align="center">
<tr>
<td style="width: 3px; height: 22px;">
</td>
<td align="center" style="width: 592px; height: 22px;"><asp:Image ID="imagen1" runat="server" ImageUrl="~/App_Themes/_default/_images/header.jpg" /><br />
<asp:Label ID="Label3" runat="server" Font-Names="Arial" Font-Size="Large" ForeColor="#B5C7DE"
Height="24px" Text="Control de Gestión autenticación" Width="564px"></asp:Label><br />
</td>
</tr>
<tr>
<td style="height: 114px; width: 3px;">
</td>
<td align="center" style="width: 592px; height: 114px">
&nbsp;<asp:Login ID="Login1" runat="server" BackColor="#EFF3FB" BorderColor="#B5C7DE"
BorderPadding="4" BorderStyle="Solid" BorderWidth="1px" DisplayRememberMe="False"
Font-Names="Verdana" Font-Size="0.8em" ForeColor="#333333" LoginButtonImageUrl="~/App_Themes/_default/_images/login.jpg"
LoginButtonText="Ingresar" LoginButtonType="Image" OnAuthenticate="Login1_Authenticate1"
PasswordLabelText="Contraseña:" TitleText="Validación de credenciales" UserNameLabelText="Usuario:"
UserNameRequiredErrorMessage="Usuario es requerido." FailureText="Usuario o contraseña incorrectos" PasswordRequiredErrorMessage="Contraseña es requerida" OnLoggedIn="Login1_LoggedIn">
<TitleTextStyle BackColor="#507CD1" BorderWidth="3px" Font-Bold="True" Font-Size="0.9em"
ForeColor="White" />
<InstructionTextStyle Font-Italic="True" ForeColor="Black" />
<TextBoxStyle Font-Size="0.8em" />
<LoginButtonStyle BackColor="White" BorderColor="#507CD1" BorderStyle="None" BorderWidth="1px"
Font-Names="Verdana" Font-Size="0.8em" ForeColor="#284E98" />
</asp:Login>
</td>
</tr>
<tr>
<td style="width: 3px">
</td>
<td align="center" style="width: 592px">
</td>
</tr>
<tr>
<td style="width: 3px">
</td>
<td align="center" style="width: 592px">
<asp:Image ID="imagen2" runat="server" ImageUrl="~/App_Themes/_default/_images/footer.jpg" /></td>
</tr>
</table>
<br />
<br />
<br />
&nbsp;<br />
<br />
<br />
&nbsp;</div>
</form>
</body>
</html>

View file

@ -0,0 +1,151 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.OracleClient;
using System.Xml;
using System.IO;
//using AyA.WSAgente;
using System.Text;
using System.Xml;
//using Tools;
public partial class Conectarse : System.Web.UI.Page
{
//static AgenciaWeb AgenteAyA;
private bool autenticado = false;
protected void Page_Load(object sender, EventArgs e)
{
// if (Page.IsPostBack == false) {
//// AgenteAyA = new AgenciaWeb();
// try
// {
// //ForceSSL();
// }
// catch {
// }
// }
// Session["CambiarContrasena"] = false;
// Session["PaginaCambiarContrasena"]="~/Cambiarclave.aspx";
// if (autenticado == true)
// {
// Response.Redirect("~/principal/Default.aspx");
// }
// try
// {
// Label1.Text = Session["MensajeCambio"].ToString();
// Session["MensajeCambio"] = null;
// }
// catch {
// Label1.Text = "";
// }
// Application["ArchivosCancelaciones"] = "C:\\Uploads\\";
}
public static void ForceSSL()
{
//this is the current url
System.Uri currentUrl = System.Web.HttpContext.Current.Request.Url;
//don't redirect if this is localhost
if (!currentUrl.IsLoopback)
{
if (!currentUrl.Scheme.Equals(Uri.UriSchemeHttps, StringComparison.CurrentCultureIgnoreCase))
{
//build the secure uri
System.UriBuilder secureUrlBuilder = new UriBuilder(currentUrl);
System.UriBuilder val = new UriBuilder(currentUrl);
string pruebas = val.Uri.AbsoluteUri;
secureUrlBuilder.Scheme = Uri.UriSchemeHttps;
//use the default port.
secureUrlBuilder.Port = -1;
//redirect and end the response.
System.Web.HttpContext.Current.Response.Redirect(secureUrlBuilder.Uri.ToString());
}
}
}
protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
}
protected void Login1_Authenticate1(object sender, AuthenticateEventArgs e)
{
string mensajeLogin = "";
int resultado = 0;
OracleConnection Oraclecon = new OracleConnection("SERVER = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 172.21.0.7)(PORT = 1588))(CONNECT_DATA = (SID = dconx))); uid = " + Login1.UserName + " ; pwd = " + Login1.Password.ToString() + "");
try
{
Session["Usuario"] = Login1.UserName;
Session["Contrasena"] = Login1.Password.ToString();
Oraclecon.Open();
Response.Redirect("CargarOpen.aspx");
}
catch (OracleException ex)
{
if (ex.ErrorCode == 28001)
{
mensajeLogin = "CUENTA EXPIRADA";
}
else
{
if (ex.ErrorCode == 12535)
{
mensajeLogin = "BASE DE DATOS NO ES ALCANZABLE ";
}
else
{
if (ex.ErrorCode == 01017)
{
mensajeLogin = "CREDENCIALES INCORRECTAS";
}
else
{
if (ex.ErrorCode == 28000)
{
mensajeLogin = "CUENTA BLOQUEADA POR EL ADMINISTRADOR";
}
else
{
if (ex.ErrorCode < 0)
{
mensajeLogin = "Usuario o contraseña incorrectos";
}
}
}
}
}
}
catch(Exception ex){
mensajeLogin = ex.Message;
}
finally
{
if (Oraclecon.State == ConnectionState.Open)
{
Oraclecon.Close();
}
}
Login1.FailureText = mensajeLogin;
}
protected void Login1_LoggedIn(object sender, EventArgs e)
{
Response.Redirect("Default.aspx?ReturnUrl=''", false);
}
}

View file

@ -0,0 +1,18 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class AdministracionContratos : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}

View file

@ -0,0 +1,84 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="AdministracionContratos.aspx.cs" Inherits="AdministracionContratos" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre este proceso" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: center">
<asp:Label ID="Label1" runat="server" Text="Administración de contratos" ToolTip="Cambia el número de remesa para que pueda coincidir con el número de depósito"></asp:Label></td>
</tr>
<tr>
<td style="width: 19px; height: 21px; text-align: left">
<asp:Label ID="lbCodRecaudador" runat="server" Text="Código de recaudador: " Width="151px" ToolTip="Digite el nombre del recaudador"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 21px; text-align: left">
<asp:TextBox ID="txtCodRecaudador" runat="server" ToolTip="Digite el nombre del recaudador"></asp:TextBox>
<asp:DropDownList ID="DropDownList1" runat="server" Width="159px">
<asp:ListItem Value="CONAE"></asp:ListItem>
<asp:ListItem Value="COSRV"></asp:ListItem>
<asp:ListItem></asp:ListItem>
</asp:DropDownList>
<asp:RequiredFieldValidator ID="rfvCodRecaudador" runat="server" ControlToValidate="txtCodRecaudador"
ErrorMessage="Digite el código de recaudador"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="lbRemesaActual" runat="server" Text="Número de contrato:" Width="178px" ToolTip="Corresponde al número de remesa enviada por el recaudador"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
&nbsp;
<asp:TextBox ID="TextBox2" runat="server" ToolTip="Corresponde al nuevo número de contrato"></asp:TextBox>
<%-- <asp:RequiredFieldValidator ID="rfvNumRemesa" runat="server" ControlToValidate="DropDownList2"
ErrorMessage="Digite el número de remesa del recaudador" Display="Dynamic"></asp:RequiredFieldValidator>--%></td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="lbRemesaNueva" runat="server" Text="Fecha de inclusión:" Width="106px" ToolTip="Corresponde al nuevo número de remesa para el recaudador"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="txtRemesaNueva" runat="server" ToolTip="Corresponde al nuevo número de remesa para el recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvRemesaNueva" runat="server" ControlToValidate="txtRemesaNueva"
Display="Dynamic" ErrorMessage="Fecha de inclusión del recaudador"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="Label2" runat="server" Text="Fecha de vencimiento:" ToolTip="Fecha de vencimiento del contrato"
Width="106px"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="TextBoxMontoDepositado" runat="server" ToolTip="Corresponde al nuevo número de remesa para el recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtRemesaNueva"
Display="Dynamic" ErrorMessage="Fecha de vencimiento"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="Label3" runat="server" Text="Comentario:" ToolTip="Corresponde al nuevo número de remesa para el recaudador"
Width="106px"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="TextBox1" runat="server" Height="92px" TextMode="MultiLine" Width="392px"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
Documento electrónico</td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:Button ID="Button1" runat="server" Text="Ver" /></td>
</tr>
<tr style="text-align: center">
<td colspan="2" style="height: 37px; text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
&nbsp;</td>
<td style="width: 84px; height: 34px">
<asp:Button ID="Button2" runat="server" Text="Guardar" /></td>
<td style="width: 84px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" /></td>
</tr>
</table>
</td>
</tr>
</table>
</asp:Content>

View file

@ -0,0 +1,45 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="AnulacionArchivosTemporales.aspx.cs" Inherits="AnulacionArchivosTemporales" Title="Anulación de Archivos Temporales" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td colspan="2" style="height: 19px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre este proceso" CausesValidation="False" />
</td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: center">
<asp:Label ID="lbTitulo" runat="server" Text="Anulación de archivos temporales" ToolTip="Anula los archivos almacenados temporalmente con los datos enviados por el recaudador"></asp:Label></td>
</tr>
<tr>
<td style="width: 54px; height: 21px; text-align: left">
<asp:Label ID="lbCodRecaudador" runat="server" Text="Código de recaudador: " Width="153px" ToolTip="Digite el codigo del recaudador"></asp:Label></td>
<td colspan="1" style="width: 460px; height: 21px; text-align: left">
<asp:TextBox ID="txtCodRecaudador" runat="server" ToolTip="Digite el codigo del recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvCodRecaudador" runat="server" ControlToValidate="txtCodRecaudador"
ErrorMessage="Digite el código de recaudador"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 54px; height: 29px; text-align: left">
<asp:Label ID="lbNumRemesa" runat="server" Text="Número de remesa" Width="130px" ToolTip="Digite el número de remesa asociado al recaudador"></asp:Label></td>
<td colspan="1" style="width: 460px; height: 29px; text-align: left">
<asp:TextBox ID="txtNumRemesa" runat="server" ToolTip="Digite el número de remesa asociado al recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvNumRemesa" runat="server" ControlToValidate="txtNumRemesa"
ErrorMessage="Digite un número de remesa"></asp:RequiredFieldValidator></td>
</tr>
<tr style="text-align: center">
<td colspan="2" style="height: 37px; text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnProcesar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/ejecutar.png"
OnClick="ibtnProcesar_Click" ToolTip="Procesar Anulación" /></td>
<td style="width: 27px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td> </tr>
</table>
</td>
</tr>
</table>
</asp:Content>

View file

@ -0,0 +1,27 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class AnulacionArchivosTemporales : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ibtnProcesar_Click(object sender, ImageClickEventArgs e)
{
}
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
{
this.txtCodRecaudador.Text = "";
this.txtNumRemesa.Text = "";
}
}

View file

@ -0,0 +1,52 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="AplicacionDeposito.aspx.cs" Inherits="AplicacionDeposito" Title="Aplicación de depósito" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre este proceso" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: center">
<asp:Label ID="lbTitulo" runat="server" Text="Aplicación de depósito" ToolTip="Verifica que los datos enviados por el recaudador coincidan con los datos registrados en el depósito"></asp:Label></td>
</tr>
<tr>
<td style="width: 19px; height: 21px; text-align: left">
<asp:Label ID="lbCodRecaudador" runat="server" Text="Código de recaudador: " Width="151px" ToolTip="Corresponde al identificador en AyA del agente recaudador"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 21px; text-align: left">
<asp:TextBox ID="txtCodRecaudador" runat="server" ToolTip="Corresponde al identificador en AyA del agente recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvCodRecaudador" runat="server" ControlToValidate="txtCodRecaudador"
ErrorMessage="Se debe digitar el Código de Recaudador"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="lbNumRemesa" runat="server" Text="Número remesa recaudador:" Width="175px" ToolTip="Corresponde al número de remesa enviada por el recaudador"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="txtNumRemesa" runat="server" ToolTip="Corresponde al número de remesa enviada por el recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvNumRemesa" runat="server" ControlToValidate="txtNumRemesa"
ErrorMessage="Se debe digitar un Número de Remesa"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="lbRemesaAyA" runat="server" Text="Número remesa AyA:" Width="143px" ToolTip="Corresponde al número de remesa registrada en el AyA"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="txtRemesaAyA" runat="server" ToolTip="Corresponde al número de remesa enviada por el recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvRemesaAyA" runat="server" ErrorMessage="Digite el número de remesa registrado en AyA" ControlToValidate="txtRemesaAyA" Display="Dynamic"></asp:RequiredFieldValidator></td>
</tr>
<tr style="text-align: center">
<td colspan="2" style="height: 37px; text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnProcesar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/ejecutar.png"
OnClick="ibtnProcesar_Click" ToolTip="Procesar Aplicación de Depósito" /></td>
<td style="width: 27px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td>
</tr>
</table>
</td>
</tr>
</table>
</asp:Content>

View file

@ -0,0 +1,29 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class AplicacionDeposito : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ibtnProcesar_Click(object sender, ImageClickEventArgs e)
{
//Aqui va el codigo que implementa la funcionalidad del proceso
this.Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "Mensaje", "alert('El depósito ha sido aplicado correctamente')", true);
}
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
{
this.txtCodRecaudador.Text = "";
this.txtNumRemesa.Text = "";
this.txtRemesaAyA.Text = "";
}
}

View file

@ -0,0 +1,158 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="Autorizaciones.aspx.cs" Inherits="Autorizaciones" Title="Autorizaciones" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 22px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre esta consulta" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 22px; text-align: center">
<asp:Label ID="Label1" runat="server" Text="Autorizaciones" ToolTip="Muestra aquellos servicios en los cuales se hayan detallado autorizaciones para sus usuarios"></asp:Label>
NO SE ESTA USANDO</td>
</tr>
<tr style="text-align: left">
<td style="width: 163px; height: 21px">
<asp:Label ID="lbNumServicio" runat="server" Text="Número de servicio:" ToolTip="Digite el número de servicio asociado"></asp:Label></td>
<td style="width: 445px; height: 21px">
<asp:TextBox ID="txtNumServicio" runat="server" Width="137px" MaxLength="7" ToolTip="Digite el número de servicio asociado"></asp:TextBox>
<asp:RegularExpressionValidator ID="rfvNumServicio" runat="server" ControlToValidate="txtNumServicio"
Display="Dynamic" ErrorMessage="Formato incorrecto para el número de servicio" ValidationExpression="\d{7}"></asp:RegularExpressionValidator></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px; height: 21px">
<asp:Label ID="lbSecRecibo" runat="server" Font-Bold="False" Text="Secuencial recibo:" ToolTip="Corresponde al secuencial del recibo asociado al servicio"></asp:Label></td>
<td style="width: 445px; height: 21px">
<asp:TextBox ID="txtSecRecibo" runat="server" Width="34px" ToolTip="Corresponde al secuencial del recibo asociado al servicio"></asp:TextBox></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px; height: 21px">
<asp:Label ID="lbCodAut" runat="server" Text="Código autorización:" ToolTip="Corresponde al código de autorización asociada al servicio"></asp:Label></td>
<td style="width: 445px; height: 21px">
<asp:TextBox ID="txtCodAut" runat="server" Width="94px" ToolTip="Corresponde al código de autorización asociada al servicio"></asp:TextBox></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px; height: 21px">
<asp:Label ID="lbTipoRecibo" runat="server" Text="Tipo recibo:" ToolTip="Corresponde al tipo de recibo asociado"></asp:Label></td>
<td style="width: 445px; height: 21px">
<asp:TextBox ID="txtTipoRecibo" runat="server" Width="94px" ToolTip="Corresponde al tipo de recibo asociado"></asp:TextBox>
</td>
</tr>
<tr style="text-align: left">
<td style="width: 163px">
<asp:Label ID="lbImporteAut" runat="server" Text="Importe autorización:" ToolTip="Corresponde al importe de la autorización "></asp:Label></td>
<td style="width: 445px">
<asp:TextBox ID="txtImporteAut" runat="server" Width="197px" ToolTip="Corresponde al importe de la autorización "></asp:TextBox></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px">
<asp:Label ID="lbFilaCanc" runat="server" Text="Fila cancelación:" ToolTip="Fila de cancelación asociada al recibo"></asp:Label></td>
<td style="width: 445px">
<asp:TextBox ID="txtFilaCanc" runat="server" Width="137px" MaxLength="8" ToolTip="Fila de cancelación asociada al recibo"></asp:TextBox>
<asp:RegularExpressionValidator ID="revFilaCanc" runat="server" ControlToValidate="txtFilaCanc"
Display="Dynamic" ErrorMessage="Formato incorrecto para la fila de cancelación"
ValidationExpression="\d{8}"></asp:RegularExpressionValidator></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px">
<asp:Label ID="lbFechaFact" runat="server" Text="Fecha facturación:" ToolTip="Corresponde a la fecha en que se dió la facturación del recibo"></asp:Label></td>
<td style="width: 445px">
<asp:TextBox ID="txtFechaFact" runat="server" Width="137px" ToolTip="Corresponde a la fecha en que se dió la facturación del recibo"></asp:TextBox>&nbsp;
<cc1:maskededitextender id="meeFechaFact" runat="server" mask="99/99/9999" masktype="Date"
targetcontrolid="txtFechaFact" userdateformat="DayMonthYear"></cc1:maskededitextender>
<asp:RangeValidator ID="rvFechaFact" runat="server" ControlToValidate="txtFechaFact"
Display="Dynamic" ErrorMessage="Digite una fecha con el formato dd/mm/aaaa válida"
MaximumValue="31/12/2999" MinimumValue="1/1/1900" Type="Date"></asp:RangeValidator></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px">
<asp:Label ID="lbSecNis" runat="server" Text="Secuencial NIS:" ToolTip="Corresponde al secuencial asociado al número de servicio"></asp:Label></td>
<td style="width: 445px">
<asp:TextBox ID="txtSecNis" runat="server" Width="44px" ToolTip="Corresponde al secuencial asociado al número de servicio"></asp:TextBox></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px">
<asp:Label ID="lbSecAut" runat="server" Text="Secuencial autorización:" ToolTip="Corresponde al secuencial asociado a la autorización"></asp:Label></td>
<td style="width: 445px">
<asp:TextBox ID="txtSecAut" runat="server" Width="44px" ToolTip="Corresponde al secuencial asociado a la autorización"></asp:TextBox></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px">
<asp:Label ID="lbFechaVence" runat="server" Text="Fecha vencimiento:" ToolTip="Corresponde a la fecha de vencimiento del recibo"></asp:Label></td>
<td style="width: 445px">
<asp:TextBox ID="txtFechaVence" runat="server" Width="137px" ToolTip="Corresponde a la fecha de vencimiento del recibo"></asp:TextBox><cc1:maskededitextender
id="meeFechaVenc" runat="server" mask="99/99/9999" masktype="Date" targetcontrolid="txtFechaVence"
userdateformat="DayMonthYear"></cc1:maskededitextender><asp:RangeValidator ID="RangeValidator1"
runat="server" ControlToValidate="txtFechaVence" Display="Dynamic" ErrorMessage="Digite una fecha con el formato dd/mm/aaaa válida"
MaximumValue="31/12/2999" MinimumValue="1/1/1900" Type="Date"></asp:RangeValidator></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px">
<asp:Label ID="lbFechaPagado" runat="server" Text="Fecha pagado:" ToolTip="Corresponde a la fecha en que fue pagado el recibo"></asp:Label></td>
<td style="width: 445px">
<asp:TextBox ID="txtFechaPagado" runat="server" Width="137px" ToolTip="Corresponde a la fecha en que fue pagado el recibo"></asp:TextBox><cc1:maskededitextender
id="meeFechaPagado" runat="server" mask="99/99/9999" masktype="Date" targetcontrolid="txtFechaPagado"
userdateformat="DayMonthYear"></cc1:maskededitextender><asp:RangeValidator ID="RangeValidator2"
runat="server" ControlToValidate="txtFechaPagado" Display="Dynamic" ErrorMessage="Digite una fecha con el formato dd/mm/aaaa válida"
MaximumValue="31/12/2999" MinimumValue="1/1/1900" Type="Date"></asp:RangeValidator></td>
</tr>
<tr style="text-align: left">
<td style="width: 163px">
<asp:Label ID="lbEstado" runat="server" Text="Estado:" ToolTip="Corresponde al estado actual del recibo"></asp:Label></td>
<td style="width: 445px">
<asp:TextBox ID="txtEstado" runat="server" Width="94px" ToolTip="Corresponde al estado actual del recibo"></asp:TextBox></td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnBuscar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/buscar.png"
OnClick="ibtnBuscar_Click" ToolTip="Buscar Autorizaciones" /></td>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnReversar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/reversar.png"
OnClick="ibtnBuscar_Click" ToolTip="Reversar Pago" /></td>
<td style="width: 27px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<div style="font-size: 11px; font-family: Arial; text-align: center">
<asp:Label ID="lbDatosCliente" runat="server" Font-Bold="True" Text="Autorizaciones asociados a la búsqueda"></asp:Label><br />
<br />
<asp:GridView ID="gridNotas" runat="server" AutoGenerateColumns="False" CellPadding="4"
CssClass="tablar" ForeColor="#333333" GridLines="None" OnSelectedIndexChanged="gridRecibos_SelectedIndexChanged"
PageSize="100" Style="border-right: #000000 1px solid; border-top: #000000 1px solid;
margin-top: 20px; border-left: #000000 1px solid; border-bottom: #000000 1px solid"
Width="409px">
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:BoundField DataField="Num. Servicio" HeaderText="Num. Servicio">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Vencimiento" DataFormatString="{0:N}" HeaderText="Vencimiento">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
<FooterStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Fila Cancelación" HeaderText="Fila Cancelación">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Datos" HeaderText="Datos" />
</Columns>
<RowStyle BackColor="#EFF3FB" />
<EditRowStyle BackColor="#2461BF" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
</asp:GridView>
&nbsp;</div>
</asp:Content>

View file

@ -0,0 +1,58 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class Autorizaciones : System.Web.UI.Page
{
static DataTable dt;
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ibtnBuscar_Click(object sender, ImageClickEventArgs e)
{
dt = new DataTable();
DataRow dr;
dt.Columns.Add(new DataColumn("Num. Servicio", typeof(string)));
dt.Columns.Add(new DataColumn("Vencimiento", typeof(string)));
dt.Columns.Add(new DataColumn("Fila Cancelación", typeof(string)));
dt.Columns.Add(new DataColumn("Datos", typeof(string)));
dr = dt.NewRow();
dr[0] = "5269958";
dr[1] = "22/02/2002";
dr[2] = "12308078";
dr[3] = "Ver Detalles";
dt.Rows.Add(dr);
this.gridNotas.DataSource = dt;
this.gridNotas.DataBind();
}
protected void gridRecibos_SelectedIndexChanged(object sender, EventArgs e)
{
}
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
{
this.txtCodAut.Text = "";
this.txtEstado.Text = "";
this.txtFechaFact.Text = "";
this.txtFechaPagado.Text = "";
this.txtFechaVence.Text = "";
this.txtFilaCanc.Text = "";
this.txtImporteAut.Text = "";
this.txtNumServicio.Text = "";
this.txtSecAut.Text = "";
this.txtSecNis.Text = "";
this.txtSecRecibo.Text = "";
this.txtTipoRecibo.Text = "";
}
}

View file

@ -0,0 +1,35 @@

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "C:\...\AyAGUI\", "..\..\..\..\..\..\NEO Corp\Customers\AyA\Estandares\AyAGUI", "{B039B866-B597-438C-B86F-7D37D07AAACF}"
ProjectSection(WebsiteProperties) = preProject
Debug.AspNetCompiler.VirtualPath = "/AyAGUI"
Debug.AspNetCompiler.PhysicalPath = "..\..\..\..\..\..\NEO Corp\Customers\AyA\Estandares\AyAGUI\"
Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\AyAGUI\"
Debug.AspNetCompiler.Upfechaable = "true"
Debug.AspNetCompiler.ForceOverwrite = "true"
Debug.AspNetCompiler.FixedNames = "false"
Debug.AspNetCompiler.Debug = "True"
Release.AspNetCompiler.VirtualPath = "/AyAGUI"
Release.AspNetCompiler.PhysicalPath = "..\..\..\..\..\..\NEO Corp\Customers\AyA\Estandares\AyAGUI\"
Release.AspNetCompiler.TargetPath = "PrecompiledWeb\AyAGUI\"
Release.AspNetCompiler.Upfechaable = "true"
Release.AspNetCompiler.ForceOverwrite = "true"
Release.AspNetCompiler.FixedNames = "false"
Release.AspNetCompiler.Debug = "False"
VWDPort = "49521"
basicoWebSiteLanguage = "Visual C#"
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|.NET = Debug|.NET
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B039B866-B597-438C-B86F-7D37D07AAACF}.Debug|.NET.ActiveCfg = Debug|.NET
{B039B866-B597-438C-B86F-7D37D07AAACF}.Debug|.NET.Build.0 = Debug|.NET
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

View file

@ -0,0 +1,57 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="BitacoraOperaciones.aspx.cs" Inherits="BitacoraCambios" Title="Bitácora de operaciones" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre esta consulta" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: center">
<asp:Label ID="Label1" runat="server" Text="Bitácora de operaciones" ToolTip="Consulta todas aquellas operaciones que han sido realizadas"></asp:Label></td>
</tr>
<tr>
<td style="width: 19px; height: 21px; text-align: left">
<asp:Label ID="lbFechaHora" runat="server" Text="Fecha y hora de ingreso:" Width="150px" ToolTip="Corresponde a la fecha y la hora en la que se realizó la operación"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 21px; text-align: left">
<asp:TextBox ID="txtFechaHora" runat="server" ToolTip="Corresponde a la fecha y la hora en la que se realizó la operación"></asp:TextBox>
<cc1:maskededitextender id="meeFechaHora" runat="server" mask="99/99/9999 99:99:99"
masktype="DateTime" targetcontrolid="txtFechaHora" userdateformat="DayMonthYear"></cc1:maskededitextender>
<asp:CustomValidator ID="CustomValidator1" runat="server" ControlToValidate="txtFechaHora"
Display="Dynamic" ErrorMessage="Digite una fecha en formato dd/mm/aaaa y una hora en formato hh:mm:ss"></asp:CustomValidator></td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="lbIngresadoPor" runat="server" Text="Ingresado Por:" Width="98px" ToolTip="Corresponde al usuario que ingresó la operación"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="txtIngresadoPor" runat="server" ToolTip="Corresponde al usuario que ingresó la operación"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="lbMensaje" runat="server" Text="Mensaje:" Width="67px" ToolTip="Corresponde al mensaje asociado a la operación de las operaciones"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="txtMensaje" runat="server" Rows="4" TextMode="MultiLine" Width="403px" ToolTip="Corresponde al mensaje asociado a la operación de las operaciones"></asp:TextBox>
</td>
</tr>
<tr style="text-align: center">
<td colspan="2" style="height: 37px; text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnBuscar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/buscar.png"
OnClick="ibtnBuscar_Click" ToolTip="Buscar Autorizaciones" /></td>
<td style="width: 27px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td>
</tr>
</table>
</td>
</tr>
</table>
<div style="font-size: 11px; font-family: Arial; text-align: center">
&nbsp;</div>
</asp:Content>

View file

@ -0,0 +1,33 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class BitacoraCambios : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ibtnBuscar_Click(object sender, ImageClickEventArgs e)
{
Server.Transfer("~/BitacoraOperacionesResultados.aspx");
}
protected void gridRecibos_SelectedIndexChanged(object sender, EventArgs e)
{
}
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
{
this.txtFechaHora.Text = "";
this.txtIngresadoPor.Text = "";
this.txtMensaje.Text = "";
}
}

View file

@ -0,0 +1,40 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="BitácoraOperacionesResultados.aspx.cs" Inherits="BitácoraOperacionesResultados" Title="Resultados de la búsqueda" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc">
<asp:Label ID="lbDatosCliente" runat="server"
Text="Operaciones asociadas a la búsqueda" ToolTip="Resultados de la búsqueda en bitácora de operaciones"></asp:Label></td>
</tr>
<tr>
<td class="formatoGrid">
<asp:GridView ID="gridNotas" runat="server" AutoGenerateColumns="False" CellPadding="4"
CssClass="tablar" ForeColor="#333333" GridLines="None" OnSelectedIndexChanged="gridRecibos_SelectedIndexChanged"
PageSize="100" Style="border-right: #000000 1px solid; border-top: #000000 1px solid;
margin-top: 20px; border-left: #000000 1px solid; border-bottom: #000000 1px solid"
Width="409px" ToolTip="Resultados obtenidos">
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:BoundField DataField="Fecha y Hora de Ingreso" HeaderText="Fecha y Hora de Ingreso">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Ingresado Por" DataFormatString="{0:N}" HeaderText="Ingresado Por">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
<FooterStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Datos" HeaderText="Datos" />
</Columns>
<RowStyle BackColor="#EFF3FB" />
<EditRowStyle BackColor="#2461BF" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
</asp:GridView>
<br />
</td>
</tr>
</table>
</asp:Content>

View file

@ -0,0 +1,49 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class BitácoraOperacionesResultados : System.Web.UI.Page
{
static DataTable dt;
protected void Page_Load(object sender, EventArgs e)
{
dt = new DataTable();
DataRow dr;
dt.Columns.Add(new DataColumn("Fecha y Hora de Ingreso", typeof(string)));
dt.Columns.Add(new DataColumn("Ingresado Por", typeof(string)));
dt.Columns.Add(new DataColumn("Datos", typeof(string)));
dr = dt.NewRow();
dr[0] = "28/09/06 - 04:23:25";
dr[1] = "MTX";
dr[2] = "Ver Detalles";
dt.Rows.Add(dr);
dr = dt.NewRow();
dr[0] = "28/09/06 - 04:23:35";
dr[1] = "MTX";
dr[2] = "Ver Detalles";
dt.Rows.Add(dr);
dr = dt.NewRow();
dr[0] = "28/09/06 - 04:23:37";
dr[1] = "MTX";
dr[2] = "Ver Detalles";
dt.Rows.Add(dr);
this.gridNotas.DataSource = dt;
this.gridNotas.DataBind();
}
protected void gridRecibos_SelectedIndexChanged(object sender, EventArgs e)
{
}
}

View file

@ -0,0 +1,59 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="CargarOpen.aspx.cs" Inherits="CargarOpen" Title="Cargar archivo a conectividad" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre este proceso" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: center">
<asp:Label ID="lbTitulo" runat="server" CssClass="titleTablaPrinc" Text="Cargar archivo a conectividad"
ToolTip="Permite subir un archivo de validación a conectividad"></asp:Label></td>
</tr>
<tr>
<td style="width: 130px; height: 21px; text-align: left">
<asp:Label ID="lbCodRecaudador" runat="server" Text="Código recaudador:" ToolTip="Digite el nombre del recaudador"></asp:Label></td>
<td style="width: 480px; height: 21px; text-align: left">
<asp:TextBox ID="txtCodRecaudador" runat="server" ToolTip="Digite el nombre del recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvCodRecaudador" runat="server" ControlToValidate="txtCodRecaudador"
Display="Dynamic" ErrorMessage="Digite el código del recaudador"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 130px; height: 21px; text-align: left">
<asp:Label ID="Label1" runat="server" Text="Número de remesa:" ToolTip="Digite el número de remesa"></asp:Label></td>
<td style="width: 480px; height: 21px; text-align: left">
<asp:TextBox ID="txtNumRemesa" runat="server" ToolTip="Digite el número de remesa"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtCodRecaudador"
Display="Dynamic" ErrorMessage="Digite el número de remesa" ToolTip="Digite el número de remesa"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 130px; height: 21px; text-align: left">
<asp:Label ID="lbNombreArchivo" runat="server" Text="Nombre del archivo:" ToolTip="Especifique la ruta del archivo que desea cargar"></asp:Label></td>
<td style="width: 480px; height: 21px; text-align: left">
<asp:FileUpload ID="fuArchivo" runat="server" ToolTip="Especifique la ruta del archivo que desea cargar" />
<asp:RequiredFieldValidator ID="rfvArchivo" runat="server" ErrorMessage="Especifique la ruta del archivo a cargar" ControlToValidate="fuArchivo" Display="Dynamic"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnCargar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/ejecutar.png"
ToolTip="Cargar el archivo" OnClick="ibtnCargar_Click" /></td>
<td style="width: 27px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td>
</tr>
</table>
<cc1:ConfirmButtonExtender ID="cbeProcesar" runat="server" ConfirmOnFormSubmit="True"
ConfirmText="Se han cargado 28 transacciones exitosas, 0 transacciones erroneas del archivo de la remesa"
TargetControlID="ibtnCargar">
</cc1:ConfirmButtonExtender>
</td>
</tr>
</table>
</asp:Content>

View file

@ -0,0 +1,26 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class CargarOpen : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ibtnCargar_Click(object sender, ImageClickEventArgs e)
{
Server.Transfer("~/ConciliacionRecibos.aspx");
}
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
{
}
}

View file

@ -0,0 +1,44 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="ConciliacionRecibos.aspx.cs" Inherits="ConciliacionRecibos" Title="Conciliación de recibos" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre este proceso" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: center">
<asp:Label ID="Label1" runat="server" Text="Conciliación de recibos" ToolTip="Compara los recibos que se han reportado por medio del monitor transaccional y los que el recaudador ha reportado "></asp:Label></td>
</tr>
<tr>
<td style="width: 147px; height: 21px; text-align: left">
<asp:Label ID="lbRemesaAyA" runat="server" Text="Número remesa AyA:" ToolTip="Corresponde al número de remesa registrada en el AyA"></asp:Label></td>
<td style="width: 466px; height: 21px; text-align: left">
<asp:TextBox ID="txtRemesaAyA" runat="server" ToolTip="Corresponde al número de remesa registrada en el AyA"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvRemesaAyA" runat="server" ControlToValidate="txtRemesaAyA"
ErrorMessage="Digite el número de remesa de AyA" Display="Dynamic"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 147px; height: 21px; text-align: left">
<asp:Label ID="lbRemesaRecaudador" runat="server" Text="Número remesa recaudador:" ToolTip="Corresponde al número de remesa enviada por el recaudador" Width="179px"></asp:Label></td>
<td style="width: 466px; height: 21px; text-align: left">
<asp:TextBox ID="txtRemesaRecaudador" runat="server" ToolTip="Corresponde al número de remesa enviada por el recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvRemesaRecaudador" runat="server" ErrorMessage="Digite el número de remesa del recaudador" ControlToValidate="txtRemesaRecaudador" Display="Dynamic"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnCargar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/ejecutar.png"
ToolTip="Procesar Conciliación" /></td>
<td style="width: 27px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td>
</tr>
</table>
</td>
</tr>
</table>
</asp:Content>

View file

@ -0,0 +1,23 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class ConciliacionRecibos : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
{
this.txtRemesaAyA.Text = "";
this.txtRemesaRecaudador.Text = "";
}
}

View file

@ -0,0 +1,86 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="DebitoAutomatico.aspx.cs" Inherits="DebitoAutomatico" Title="Débito automático" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 22px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre este proceso" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 22px; text-align: center">
<asp:Label ID="Label1" runat="server" Text="Débito automático" ToolTip="Consulta los servicios que han sido cancelados mediante el proceso de débito automático"></asp:Label></td>
</tr>
<tr>
<td style="width: 128px; height: 21px; text-align: left">
<asp:Label ID="lbNumServicio" runat="server" Text="Número de Servicio:" ToolTip="Digite el número de servicio asociado"></asp:Label></td>
<td style="width: 439px; height: 21px; text-align: left">
<asp:TextBox ID="txtNumServicio" runat="server" MaxLength="7" ToolTip="Digite el número de servicio asociado"></asp:TextBox>
<asp:RegularExpressionValidator ID="revNumServicio" runat="server" ControlToValidate="txtNumServicio"
ErrorMessage="Formato Incorrecto de Número de Servicio" Display="Dynamic" ValidationExpression="\d{7}"></asp:RegularExpressionValidator></td>
</tr>
<tr>
<td style="width: 128px; height: 21px; text-align: left">
<asp:Label ID="lbSecNis" runat="server" Text="Secuencial NIS:" ToolTip="Corresponde al secuencial asociado al número de servicio"></asp:Label></td>
<td style="width: 439px; height: 21px; text-align: left">
<asp:TextBox ID="txtSecNis" runat="server" Width="57px" ToolTip="Corresponde al secuencial asociado al número de servicio"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 128px; height: 21px; text-align: left">
<asp:Label ID="lbEstado" runat="server" Text="Estado:" ToolTip="Corresponde al estado actual del recibo"></asp:Label></td>
<td style="width: 439px; height: 21px; text-align: left">
<asp:TextBox ID="txtEstado" runat="server" Width="57px" ToolTip="Corresponde al estado actual del recibo"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 128px; height: 21px; text-align: left">
<asp:Label ID="lbCodCliente" runat="server" Text="Código de Cliente:" ToolTip="Corresponde al código del cliente asociado al servicio"></asp:Label></td>
<td style="width: 439px; height: 21px; text-align: left">
<asp:TextBox ID="txtCodCliente" runat="server" MaxLength="8" ToolTip="Corresponde al código del cliente asociado al servicio"></asp:TextBox>
<asp:RegularExpressionValidator ID="revCodCliente" runat="server" ControlToValidate="txtCodCliente"
ErrorMessage="Formato incorrecto para el código de cliente" ValidationExpression="\d{8}"></asp:RegularExpressionValidator></td>
</tr>
<tr>
<td style="width: 128px; height: 21px; text-align: left">
<asp:Label ID="lbNombre" runat="server" Text="Nombre del Cliente:" ToolTip="Corresponde al nombre del cliente asociado al servicio"></asp:Label></td>
<td style="width: 439px; height: 21px; text-align: left">
<asp:TextBox ID="txtNombre" runat="server" Width="299px" ToolTip="Corresponde al nombre del cliente asociado al servicio"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 128px; text-align: left">
<asp:Label ID="lbAgencia" runat="server" Text="Código de Agencia:"></asp:Label></td>
<td style="width: 439px; text-align: left">
<asp:TextBox ID="txtAgencia" runat="server" Width="123px" MaxLength="4"></asp:TextBox>
<asp:RegularExpressionValidator ID="revAgencia" runat="server" ControlToValidate="txtAgencia"
ErrorMessage="Formato incorrecto para el código de Agencia" ValidationExpression="\d{4}"></asp:RegularExpressionValidator></td>
</tr>
<tr>
<td style="width: 128px; text-align: left">
<asp:Label ID="lbTarifa" runat="server" Text="Tarifa:" ToolTip="Corresponde al tipo de tarifa asociada al servicio"></asp:Label></td>
<td style="width: 439px; text-align: left">
<asp:TextBox ID="txtTarifa" runat="server" Width="57px" ToolTip="Corresponde al tipo de tarifa asociada al servicio"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 128px; text-align: left">
<asp:Label ID="lbLocalizacion" runat="server" Text="Localización:" ToolTip="Corresponde al lugar en donde se ubica el servicio"></asp:Label></td>
<td style="width: 439px; text-align: left">
<asp:TextBox ID="txtLocalizacion" runat="server" ToolTip="Corresponde al lugar en donde se ubica el servicio"></asp:TextBox></td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<table style="background-color:#bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnBuscar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/buscar.png"
ToolTip="Buscar Registros" OnClick="ibtnBuscar_Click" /></td>
<td style="width: 27px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td>
</tr>
</table>
</td>
</tr>
</table>
<div style="text-align:center; font-size:11px; font-family:Arial">
&nbsp;</div>
</asp:Content>

View file

@ -0,0 +1,38 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class DebitoAutomatico : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ibtnBuscar_Click(object sender, ImageClickEventArgs e)
{
Server.Transfer("~/DebitoAutomaticoResultados.aspx");
}
protected void gridRecibos_SelectedIndexChanged(object sender, EventArgs e)
{
}
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
{
this.txtAgencia.Text = "";
this.txtCodCliente.Text = "";
this.txtEstado.Text = "";
this.txtLocalizacion.Text = "";
this.txtNombre.Text = "";
this.txtNumServicio.Text = "";
this.txtSecNis.Text = "";
this.txtTarifa.Text = "";
}
}

View file

@ -0,0 +1,43 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="DebitoAutomaticoResultados.aspx.cs" Inherits="DebitoAutomaticoResultados" Title="Datos par de la aplicación de depósito" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc">
<asp:Label ID="lbDatosPar" runat="server" Text="Datos par de la aplicación de depósito" ToolTip="Resultados de la búsqueda de aplicaciones de depósito"></asp:Label></td>
</tr>
<tr>
<td class="formatoGrid">
<asp:GridView ID="gridNotas" runat="server" AutoGenerateColumns="False" CellPadding="4"
CssClass="tablar" ForeColor="#333333" GridLines="None" OnSelectedIndexChanged="gridRecibos_SelectedIndexChanged"
PageSize="100" Style="border-right: #000000 1px solid; border-top: #000000 1px solid;
margin-top: 20px; border-left: #000000 1px solid; border-bottom: #000000 1px solid"
Width="409px" ToolTip="Resultados obtenidos">
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:BoundField DataField="Fecha" HeaderText="Fecha">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Recaudador" DataFormatString="{0:N}" HeaderText="Recaudador">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
<FooterStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Monto D&#233;bito" HeaderText="Monto D&#233;bito">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Datos" HeaderText="Datos" />
</Columns>
<RowStyle BackColor="#EFF3FB" />
<EditRowStyle BackColor="#2461BF" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
</asp:GridView>
<br />
</td>
</tr>
</table>
<br />
</asp:Content>

View file

@ -0,0 +1,46 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class DebitoAutomaticoResultados : System.Web.UI.Page
{
static DataTable dt;
protected void Page_Load(object sender, EventArgs e)
{
dt = new DataTable();
DataRow dr;
dt.Columns.Add(new DataColumn("Fecha", typeof(string)));
dt.Columns.Add(new DataColumn("Recaudador", typeof(string)));
dt.Columns.Add(new DataColumn("Monto Débito", typeof(string)));
dt.Columns.Add(new DataColumn("Datos", typeof(string)));
dr = dt.NewRow();
dr[0] = "14/08/2007";
dr[1] = "CRED";
dr[2] = "0.00";
dr[3] = "Ver Detalles";
dt.Rows.Add(dr);
dr = dt.NewRow();
dr[0] = "09/10/2006";
dr[1] = "CRED";
dr[2] = "99,999,999.00";
dr[3] = "Ver Detalles";
dt.Rows.Add(dr);
this.gridNotas.DataSource = dt;
this.gridNotas.DataBind();
}
protected void gridRecibos_SelectedIndexChanged(object sender, EventArgs e)
{
}
}

View file

@ -0,0 +1,92 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="HistorialTransacciones.aspx.cs" Inherits="HistorialTransacciones" Title="Historial de transacciones" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 22px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre esta consulta" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 22px; text-align: center">
<asp:Label ID="Label1" runat="server" Text="Historial de transacciones" ToolTip="Consulta todas aquellas transacciones registradas en el sistema"></asp:Label></td>
</tr>
<tr>
<td style="width: 128px; height: 21px; text-align: left">
<asp:Label ID="lbCodRecaudador" runat="server" Text="Código recaudador:" ToolTip="Digite el codigo del recaudador"></asp:Label></td>
<td style="width: 439px; height: 21px; text-align: left">
<asp:TextBox ID="txtCodRecaudador" runat="server" Width="123px" ToolTip="Digite el codigo del recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvCodRecaudador" runat="server" ControlToValidate="txtCodRecaudador"
Display="Dynamic" ErrorMessage="Digite un código de recaudador"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 128px; height: 21px; text-align: left">
<asp:Label ID="lbCodTrans" runat="server" Text="Código transacción:" ToolTip="Corresponde al código de transacción que se desea consultar"></asp:Label></td>
<td style="width: 439px; height: 21px; text-align: left">
<asp:TextBox ID="txtCodTrans" runat="server" Width="123px" MaxLength="6" ToolTip="Corresponde al código de transacción que se desea consultar"></asp:TextBox>
<asp:RegularExpressionValidator ID="revCodTrans" runat="server" ControlToValidate="txtCodTrans"
ErrorMessage="Formato incorrecto para el código de transacción" ValidationExpression="\d{6}"></asp:RegularExpressionValidator></td>
</tr>
<tr>
<td style="width: 128px; height: 21px; text-align: left">
<asp:Label ID="lbTipoMens" runat="server" Text="Tipo de mensaje:" ToolTip="Corresponde al tipo de mensaje asociado a la transacción"></asp:Label></td>
<td style="width: 439px; height: 21px; text-align: left">
<asp:TextBox ID="txtTipoMens" runat="server" Width="57px" ToolTip="Corresponde al tipo de mensaje asociado a la transacción"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 128px; height: 21px; text-align: left">
<asp:Label ID="lbHoraIng" runat="server" Text="Hora ingreso:" ToolTip="Corresponde a la fecha y hora de ingreso en que se dió la transacción"></asp:Label></td>
<td style="width: 439px; height: 21px; text-align: left">
<asp:TextBox ID="txtHoraIng" runat="server" Width="149px" ToolTip="Corresponde a la fecha y hora de ingreso en que se dió la transacción"></asp:TextBox>
<cc1:MaskedEditExtender ID="meeHoraIngreso" runat="server" Mask="99/99/9999 99:99:99"
MaskType="DateTime" TargetControlID="txtHoraIng" UserDateFormat="DayMonthYear"
UserTimeFormat="TwentyFourHour">
</cc1:MaskedEditExtender>
<asp:CustomValidator ID="cvHoraIngreso" runat="server" ControlToValidate="txtHoraIng"
Display="Dynamic" ErrorMessage="Digite una fecha en formato dd/mm/aaaa y una hora en formato hh:mm:ss"></asp:CustomValidator></td>
</tr>
<tr>
<td style="width: 128px; text-align: left">
<asp:Label ID="lbCodSalida" runat="server" Text="Código salida:" ToolTip="Corresponde al código de salida de la transacción"></asp:Label></td>
<td style="width: 439px; text-align: left">
<asp:TextBox ID="txtCodSalida" runat="server" Width="57px" ToolTip="Corresponde al código de salida de la transacción"></asp:TextBox>&nbsp;</td>
</tr>
<tr>
<td style="width: 128px; text-align: left">
<asp:Label ID="lbHoraModificacion" runat="server" Text="Hora modificación:" ToolTip="Corresponde a la fecha y hora de ingreso en que se modificó la transacción"></asp:Label></td>
<td style="width: 439px; text-align: left">
<asp:TextBox ID="txtHoraMod" runat="server" ToolTip="Corresponde a la fecha y hora de ingreso en que se modificó la transacción"></asp:TextBox>
<cc1:MaskedEditExtender ID="meeHoraMod" runat="server" Mask="99/99/9999 99:99:99"
MaskType="DateTime" TargetControlID="txtHoraMod" UserDateFormat="DayMonthYear"
UserTimeFormat="TwentyFourHour">
</cc1:MaskedEditExtender>
<asp:CustomValidator ID="cvHoraMod" runat="server" ControlToValidate="txtHoraMod"
Display="Dynamic" ErrorMessage="Digite una fecha en formato dd/mm/aaaa y una hora en formato hh:mm:ss"></asp:CustomValidator></td>
</tr>
<tr>
<td style="width: 128px; text-align: left">
<asp:Label ID="lnMensaje" runat="server" Text="Mensaje:" ToolTip="Corresponde al mensaje asociado a la operación de las operaciones"></asp:Label></td>
<td style="width: 439px; text-align: left">
<asp:TextBox ID="txtMensaje" runat="server" Rows="4" TextMode="MultiLine" Width="403px" ToolTip="Corresponde al mensaje asociado a la operación de las operaciones"></asp:TextBox></td>
</tr>
<tr>
<td colspan="2" style="height: 21px; text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
<asp:ImageButton ID="ibtnBuscar" runat="server" ImageUrl="~/App_Themes/_basico/_imagenes/buscar.png"
ToolTip="Buscar Transacciones" OnClick="ibtnBuscar_Click" /></td>
<td style="width: 27px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td>
</tr>
</table>
</td>
</tr>
</table>
<div style="text-align:center; font-size:11px; font-family:Arial">
&nbsp;</div>
</asp:Content>

View file

@ -0,0 +1,37 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class HistorialTransacciones : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void gridRecibos_SelectedIndexChanged(object sender, EventArgs e)
{
}
protected void ibtnBuscar_Click(object sender, ImageClickEventArgs e)
{
Server.Transfer("~/HistorialTransaccionesResultados.aspx");
}
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
{
this.txtCodRecaudador.Text = "";
this.txtCodSalida.Text = "";
this.txtCodTrans.Text = "";
this.txtHoraIng.Text = "";
this.txtHoraMod.Text = "";
this.txtMensaje.Text = "";
this.txtTipoMens.Text = "";
}
}

View file

@ -0,0 +1,46 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="HistorialTransaccionesResultados.aspx.cs" Inherits="HistorialTransaccionesResultados" Title="Resultados búsqueda historial de transacciones" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc">
<asp:Label ID="lbDatosPar" runat="server" Text="Resultados Obtenidos"
ToolTip="Resultados asociados a la búsqueda de transacciones"></asp:Label></td>
</tr>
<tr>
<td class="formatoGrid">
<asp:GridView ID="gridNotas" runat="server" AutoGenerateColumns="False" CellPadding="4"
CssClass="tablar" ForeColor="#333333" GridLines="None" OnSelectedIndexChanged="gridRecibos_SelectedIndexChanged"
PageSize="100" Style="border-right: #000000 1px solid; border-top: #000000 1px solid;
margin-top: 20px; border-left: #000000 1px solid; border-bottom: #000000 1px solid"
ToolTip="Resultados obtenidos" Width="409px">
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<Columns>
<asp:BoundField DataField="Cod. Recaudador" HeaderText="Cod. Recaudador">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Cod. Transac." DataFormatString="{0:N}" HeaderText="Cod. Transac.">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
<FooterStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Tipo Mens" HeaderText="Tipo Mens">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:BoundField DataField="Datos" HeaderText="Datos" />
</Columns>
<RowStyle BackColor="#EFF3FB" />
<EditRowStyle BackColor="#2461BF" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
</asp:GridView>
<br />
</td>
</tr>
</table>
<br />
<br />
<br />
</asp:Content>

View file

@ -0,0 +1,53 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class HistorialTransaccionesResultados : System.Web.UI.Page
{
static DataTable dt;
protected void Page_Load(object sender, EventArgs e)
{
dt = new DataTable();
DataRow dr;
dt.Columns.Add(new DataColumn("Cod. Recaudador", typeof(string)));
dt.Columns.Add(new DataColumn("Cod. Transac.", typeof(string)));
dt.Columns.Add(new DataColumn("Tipo Mens", typeof(string)));
dt.Columns.Add(new DataColumn("Datos", typeof(string)));
dr = dt.NewRow();
dr[0] = "BCR";
dr[1] = "110000";
dr[2] = "200";
dr[3] = "Ver Detalles";
dt.Rows.Add(dr);
dr = dt.NewRow();
dr[0] = "BCR";
dr[1] = "110000";
dr[2] = "200";
dr[3] = "Ver Detalles";
dt.Rows.Add(dr);
dr = dt.NewRow();
dr[0] = "BCR";
dr[1] = "110000";
dr[2] = "200";
dr[3] = "Ver Detalles";
dt.Rows.Add(dr);
this.gridNotas.DataSource = dt;
this.gridNotas.DataBind();
}
protected void gridRecibos_SelectedIndexChanged(object sender, EventArgs e)
{
}
}

View file

@ -0,0 +1,81 @@
<%@ Page Language="C#" MasterPageFile="~/_paginasmaestro/MasterPage.master" AutoEventWireup="true" CodeFile="ModificaNumeroRemesa.aspx.cs" Inherits="ModificaNumeroRemesa" Title="Modificar número de remesa" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ctphPrincipal" Runat="Server">
<table class="tablaPrinc">
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: right">
<asp:ImageButton ID="ibtnAyuda" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/ayuda.png"
ToolTip="Obtener ayuda general sobre este proceso" /></td>
</tr>
<tr>
<td class="titleTablaPrinc" colspan="2" style="height: 21px; text-align: center">
<asp:Label ID="Label1" runat="server" Text="Aplicar transacciones a SCI" ToolTip="Cambia el número de remesa para que pueda coincidir con el número de depósito"></asp:Label></td>
</tr>
<tr>
<td style="width: 19px; height: 21px; text-align: left">
<asp:Label ID="lbCodRecaudador" runat="server" Text="Código de recaudador: " Width="151px" ToolTip="Digite el nombre del recaudador"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 21px; text-align: left">
<asp:TextBox ID="txtCodRecaudador" runat="server" ToolTip="Digite el nombre del recaudador"></asp:TextBox>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Value="CONAE"></asp:ListItem>
<asp:ListItem Value="COSRV"></asp:ListItem>
<asp:ListItem></asp:ListItem>
</asp:DropDownList>
<asp:RequiredFieldValidator ID="rfvCodRecaudador" runat="server" ControlToValidate="txtCodRecaudador"
ErrorMessage="Digite el código de recaudador"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="lbRemesaActual" runat="server" Text="Número remesa recaudador:" Width="178px" ToolTip="Corresponde al número de remesa enviada por el recaudador"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
&nbsp;<asp:DropDownList ID="DropDownList2" runat="server">
<asp:ListItem Value="111111"></asp:ListItem>
<asp:ListItem Value="222222"></asp:ListItem>
<asp:ListItem></asp:ListItem>
</asp:DropDownList>
<asp:RequiredFieldValidator ID="rfvNumRemesa" runat="server" ControlToValidate="DropDownList2"
ErrorMessage="Digite el número de remesa del recaudador" Display="Dynamic"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="lbRemesaNueva" runat="server" Text="Número boleta real:" Width="106px" ToolTip="Corresponde al nuevo número de remesa para el recaudador"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="txtRemesaNueva" runat="server" ToolTip="Corresponde al nuevo número de remesa para el recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="rfvRemesaNueva" runat="server" ControlToValidate="txtRemesaNueva"
Display="Dynamic" ErrorMessage="Digite el nuevo número de remesa"></asp:RequiredFieldValidator>
<asp:Label ID="Label4" runat="server" Text="BANCO DE COSTA RICA"></asp:Label></td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="Label2" runat="server" Text="Monto real depositado:" ToolTip="Corresponde al nuevo número de remesa para el recaudador"
Width="106px"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="TextBoxMontoDepositado" runat="server" ToolTip="Corresponde al nuevo número de remesa para el recaudador"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtRemesaNueva"
Display="Dynamic" ErrorMessage="Monto de depósito"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 19px; height: 29px; text-align: left">
<asp:Label ID="Label3" runat="server" Text="Comentario:" ToolTip="Corresponde al nuevo número de remesa para el recaudador"
Width="106px"></asp:Label></td>
<td colspan="1" style="width: 417px; height: 29px; text-align: left">
<asp:TextBox ID="TextBox1" runat="server" Height="92px" TextMode="MultiLine" Width="392px"></asp:TextBox></td>
</tr>
<tr style="text-align: center">
<td colspan="2" style="height: 37px; text-align: center">
<table style="background-color: #bdd4dc">
<tr>
<td style="width: 26px; height: 34px">
&nbsp;<asp:Button ID="Button1" runat="server" Text="Enviar a open" /></td>
<td style="width: 84px; height: 34px">
<asp:Button ID="Button2" runat="server" Text="Guardar" /></td>
<td style="width: 84px; height: 34px">
<asp:ImageButton ID="ibtnLimpiar" runat="server" CausesValidation="False" ImageUrl="~/App_Themes/_basico/_imagenes/limpiar.png"
ToolTip="Limpiar Campos" OnClick="ibtnLimpiar_Click" /></td>
</tr>
</table>
</td>
</tr>
</table>
</asp:Content>

View file

@ -0,0 +1,31 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class ModificaNumeroRemesa : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void txtRemesaActual_TextChanged(object sender, EventArgs e)
{
}
protected void ibtnProcesar_Click(object sender, ImageClickEventArgs e)
{
}
protected void ibtnLimpiar_Click(object sender, ImageClickEventArgs e)
{
this.txtCodRecaudador.Text = "";
this.txtRemesaNueva.Text = "";
}
}

Some files were not shown because too many files have changed in this diff Show more