HA MUITO ARGUMENTOS ESPECIFICADOS PARA O PROCEDIME

EDISONJULIANOTI 11/08/2011 17:37:23
#381469
Alguem pode me ajudar com esse erro? Isso acontece quando eu compilo para uma página aonde tem um relatório.
ASHKATCHUP 11/08/2011 17:40:41
#381473
Poste a função [Ô]GETASSOCIADOCOBRANÇAAVULSA[Ô]
ASHKATCHUP 11/08/2011 17:50:58
#381480
E o que é isso? Esse [Ô]GetAssociado~[Ô]?
é uma função do banco? é C#?
Poste o código DELA
EDISONJULIANOTI 12/08/2011 17:00:00
#381602
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Microsoft.Reporting.WebForms;

public partial class Avulsa_Relatorio : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

Utils permisso = new Utils();
if (permisso.Permissao(Convert.ToInt32(Session[0]), 22) == false)
{
Messages.Show([Ô]Desculpe, mas voce não tem permissao para acessar.[Ô]);
Response.Redirect([Ô]~/Main/Principal.aspx[Ô]);
}


//rpAssocMensalidades.LocalReport.Refresh();
if (!IsPostBack)
{
txtDataInicial.Text = DateTime.Now.AddMonths(-6).ToShortDateString();
txtDataFinal.Text = DateTime.Now.ToShortDateString();
Search();
}
}

protected void btPesquisar_Click(object sender, EventArgs e)
{
Search();
}
public void Search()
{
if (!string.IsNullOrEmpty(txtCodigo.Text.Trim()))
odsAssocMensalidades.SelectParameters[[Ô]codAssociado[Ô]].DefaultValue = txtCodigo.Text.Trim();
else
odsAssocMensalidades.SelectParameters[[Ô]codAssociado[Ô]].DefaultValue = null;


if (!string.IsNullOrEmpty(txtNomeOficio.Text.Trim()))
odsAssocMensalidades.SelectParameters[[Ô]NomeOficio[Ô]].DefaultValue = txtNomeOficio.Text.Trim();
else
odsAssocMensalidades.SelectParameters[[Ô]NomeOficio[Ô]].DefaultValue = null;


if (!string.IsNullOrEmpty(txtNomeOficial.Text.Trim()))
odsAssocMensalidades.SelectParameters[[Ô]NomeOficial[Ô]].DefaultValue = txtNomeOficial.Text.Trim();
else
odsAssocMensalidades.SelectParameters[[Ô]NomeOficial[Ô]].DefaultValue = null;

if (!string.IsNullOrEmpty(ddlRegiao.SelectedValue))
odsAssocMensalidades.SelectParameters[[Ô]CodRegiao[Ô]].DefaultValue = ddlRegiao.SelectedValue;
else
odsAssocMensalidades.SelectParameters[[Ô]CodRegiao[Ô]].DefaultValue = null;

if (!string.IsNullOrEmpty(txtDataInicial.Text.Trim()))
odsAssocMensalidades.SelectParameters[[Ô]DataInicial[Ô]].DefaultValue = txtDataInicial.Text.Trim();
else
odsAssocMensalidades.SelectParameters[[Ô]DataInicial[Ô]].DefaultValue = null;

if (!string.IsNullOrEmpty(txtDataFinal.Text.Trim()))
odsAssocMensalidades.SelectParameters[[Ô]DataFinal[Ô]].DefaultValue = txtDataFinal.Text.Trim();
else
odsAssocMensalidades.SelectParameters[[Ô]DataFinal[Ô]].DefaultValue = null;


if (rblPago.SelectedValue == [Ô]1[Ô])
odsAssocMensalidades.SelectParameters[[Ô]Pago[Ô]].DefaultValue = [Ô]true[Ô];
else if (rblPago.SelectedValue == [Ô]0[Ô])
odsAssocMensalidades.SelectParameters[[Ô]Pago[Ô]].DefaultValue = [Ô]false[Ô];
else
{
odsAssocMensalidades.SelectParameters[[Ô]Pago[Ô]].DefaultValue = null;
}

odsAssocMensalidades.SelectParameters[[Ô]Ativo[Ô]].DefaultValue = null;

{
ReportParameter[] p = new ReportParameter[1];
p[0] = new ReportParameter([Ô]titulo[Ô], [Ô]RELATÓRIO DE COBRANÇA AVULSA - [Ô] + txtDataInicial.Text + [Ô] A [Ô] + txtDataFinal.Text + [Ô][Ô]);
p[0].Visible = true;
rpAssocMensalidades.LocalReport.SetParameters(p);
rpAssocMensalidades.LocalReport.Refresh();
}
}
protected void ddlRegiao_DataBound(object sender, EventArgs e)
{
((DropDownList)sender).Items.Insert(0, new ListItem([Ô]-- Selecione --[Ô], string.Empty));
}
}
Tópico encerrado , respostas não são mais permitidas