How to hide Enter Parameter Value when navigate to next page in crystal reports?2019 Community Moderator ElectionHow to set database login infos (connection info) for crystal report?Crystal Report “Logon failed…” Error when trying to navigation to next pageCrystal Reports Programatically sort using two passed in parameters“Missing Parameter Values” error on moving to next page of reportCrystal Report error Missing parameter values when move to next pageCrystal report Error when navigating to next page?passing parameter to the CRYSTAL REPORT through C# in asp.netHow to update parameter of a Crystal Report with Crystal Reports Server?On navigating to next page, crystal report asks for logon info againWhy crystal report required parameter again when print/export

Why did it take so long to abandon sail after steamships were demonstrated?

When to use a slotted vs. solid turner?

Why Choose Less Effective Armour Types?

Professor being mistaken for a grad student

How to get the n-th line after a grepped one?

Meme-controlled people

Happy pi day, everyone!

How to terminate ping <dest> &

Examples of transfinite towers

Is there a symmetric-key algorithm which we can use for creating a signature?

Why does overlay work only on the first tcolorbox?

A diagram about partial derivatives of f(x,y)

PTIJ: Who should I vote for? (21st Knesset Edition)

Have the tides ever turned twice on any open problem?

Is a party consisting of only a bard, a cleric, and a warlock functional long-term?

How are passwords stolen from companies if they only store hashes?

Do I need life insurance if I can cover my own funeral costs?

Adventure Game (text based) in C++

Do the common programs (for example: "ls", "cat") in Linux and BSD come from the same source code?

What is a ^ b and (a & b) << 1?

Custom alignment for GeoMarkers

What is the purpose or proof behind chain rule?

What did “the good wine” (τὸν καλὸν οἶνον) mean in John 2:10?

Is honey really a supersaturated solution? Does heating to un-crystalize redissolve it or melt it?



How to hide Enter Parameter Value when navigate to next page in crystal reports?



2019 Community Moderator ElectionHow to set database login infos (connection info) for crystal report?Crystal Report “Logon failed…” Error when trying to navigation to next pageCrystal Reports Programatically sort using two passed in parameters“Missing Parameter Values” error on moving to next page of reportCrystal Report error Missing parameter values when move to next pageCrystal report Error when navigating to next page?passing parameter to the CRYSTAL REPORT through C# in asp.netHow to update parameter of a Crystal Report with Crystal Reports Server?On navigating to next page, crystal report asks for logon info againWhy crystal report required parameter again when print/export










1















In my crystal reports when i navigate to next page its asking to enter parameters values again , I already passed parameters value when run crystal reports. Why its asking again when navigate to next page?



I tried some solutions but its still asking for parameters values when navigate to next page ?



i tried this code :



CrystalReportViewer1.ReuseParameterValuesOnRefresh = false;


I expect when click next page button to use same parameters values and not asking again to Enter values.



This is my code:



I have my data in another window in datagrid view and there is hyperlink print result when click on it i send the primary key by using query string to the crystal report window
this is the hyper link code



<asp:TemplateField>
<HeaderTemplate>Options</HeaderTemplate>
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" NavigateUrl='<%#"/RPT/WebForm1.aspx?order_id=" +Eval("Request number")+"&DEPT ID=" +Eval("DEPT ID")+"&Test Id=" +Eval("Test Id")%>' runat="server">Print Result</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>


and this is page load code in the other window :



protected void Page_Load(object sender, EventArgs e)


if (!IsPostBack)


TXTORDERID.Text = Request.QueryString["order_id"].ToString();
TXTDEPTID.Text = Request.QueryString["DEPT ID"].ToString();
TXTTESTID.Text = Request.QueryString["Test Id"].ToString();
ReportDocument reportDocument = new ReportDocument();
ParameterFields paramFields = new ParameterFields();
ParameterField paramField = new ParameterField();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();



paramField.Name = "@ORDER_ID";
paramDiscreteValue.Value = TXTORDERID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

paramField = new ParameterField();
paramDiscreteValue = new ParameterDiscreteValue();
paramField.Name = "@deptid";
paramDiscreteValue.Value = TXTDEPTID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

CrystalReportViewer1.ParameterFieldInfo = paramFields;
CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
CrystalReportViewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
reportDocument.Load(Server.MapPath("~/RPT/RPT_RESULT.rpt"));
CrystalReportViewer1.ReportSource = reportDocument;
reportDocument.SetDatabaseLogon("DBA", "2006");











share|improve this question
























  • Post code, and also check if it is because of Postback?

    – JulyOrdinary
    Mar 7 at 9:43











  • @JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • Try following to check if code is missing something stackoverflow.com/questions/12002957/…

    – JulyOrdinary
    Mar 8 at 10:42












  • @JulyOrdinary yes its working thank you

    – ziadqasem
    Mar 8 at 21:36















1















In my crystal reports when i navigate to next page its asking to enter parameters values again , I already passed parameters value when run crystal reports. Why its asking again when navigate to next page?



I tried some solutions but its still asking for parameters values when navigate to next page ?



i tried this code :



CrystalReportViewer1.ReuseParameterValuesOnRefresh = false;


I expect when click next page button to use same parameters values and not asking again to Enter values.



This is my code:



I have my data in another window in datagrid view and there is hyperlink print result when click on it i send the primary key by using query string to the crystal report window
this is the hyper link code



<asp:TemplateField>
<HeaderTemplate>Options</HeaderTemplate>
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" NavigateUrl='<%#"/RPT/WebForm1.aspx?order_id=" +Eval("Request number")+"&DEPT ID=" +Eval("DEPT ID")+"&Test Id=" +Eval("Test Id")%>' runat="server">Print Result</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>


and this is page load code in the other window :



protected void Page_Load(object sender, EventArgs e)


if (!IsPostBack)


TXTORDERID.Text = Request.QueryString["order_id"].ToString();
TXTDEPTID.Text = Request.QueryString["DEPT ID"].ToString();
TXTTESTID.Text = Request.QueryString["Test Id"].ToString();
ReportDocument reportDocument = new ReportDocument();
ParameterFields paramFields = new ParameterFields();
ParameterField paramField = new ParameterField();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();



paramField.Name = "@ORDER_ID";
paramDiscreteValue.Value = TXTORDERID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

paramField = new ParameterField();
paramDiscreteValue = new ParameterDiscreteValue();
paramField.Name = "@deptid";
paramDiscreteValue.Value = TXTDEPTID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

CrystalReportViewer1.ParameterFieldInfo = paramFields;
CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
CrystalReportViewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
reportDocument.Load(Server.MapPath("~/RPT/RPT_RESULT.rpt"));
CrystalReportViewer1.ReportSource = reportDocument;
reportDocument.SetDatabaseLogon("DBA", "2006");











share|improve this question
























  • Post code, and also check if it is because of Postback?

    – JulyOrdinary
    Mar 7 at 9:43











  • @JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • Try following to check if code is missing something stackoverflow.com/questions/12002957/…

    – JulyOrdinary
    Mar 8 at 10:42












  • @JulyOrdinary yes its working thank you

    – ziadqasem
    Mar 8 at 21:36













1












1








1








In my crystal reports when i navigate to next page its asking to enter parameters values again , I already passed parameters value when run crystal reports. Why its asking again when navigate to next page?



I tried some solutions but its still asking for parameters values when navigate to next page ?



i tried this code :



CrystalReportViewer1.ReuseParameterValuesOnRefresh = false;


I expect when click next page button to use same parameters values and not asking again to Enter values.



This is my code:



I have my data in another window in datagrid view and there is hyperlink print result when click on it i send the primary key by using query string to the crystal report window
this is the hyper link code



<asp:TemplateField>
<HeaderTemplate>Options</HeaderTemplate>
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" NavigateUrl='<%#"/RPT/WebForm1.aspx?order_id=" +Eval("Request number")+"&DEPT ID=" +Eval("DEPT ID")+"&Test Id=" +Eval("Test Id")%>' runat="server">Print Result</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>


and this is page load code in the other window :



protected void Page_Load(object sender, EventArgs e)


if (!IsPostBack)


TXTORDERID.Text = Request.QueryString["order_id"].ToString();
TXTDEPTID.Text = Request.QueryString["DEPT ID"].ToString();
TXTTESTID.Text = Request.QueryString["Test Id"].ToString();
ReportDocument reportDocument = new ReportDocument();
ParameterFields paramFields = new ParameterFields();
ParameterField paramField = new ParameterField();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();



paramField.Name = "@ORDER_ID";
paramDiscreteValue.Value = TXTORDERID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

paramField = new ParameterField();
paramDiscreteValue = new ParameterDiscreteValue();
paramField.Name = "@deptid";
paramDiscreteValue.Value = TXTDEPTID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

CrystalReportViewer1.ParameterFieldInfo = paramFields;
CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
CrystalReportViewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
reportDocument.Load(Server.MapPath("~/RPT/RPT_RESULT.rpt"));
CrystalReportViewer1.ReportSource = reportDocument;
reportDocument.SetDatabaseLogon("DBA", "2006");











share|improve this question
















In my crystal reports when i navigate to next page its asking to enter parameters values again , I already passed parameters value when run crystal reports. Why its asking again when navigate to next page?



I tried some solutions but its still asking for parameters values when navigate to next page ?



i tried this code :



CrystalReportViewer1.ReuseParameterValuesOnRefresh = false;


I expect when click next page button to use same parameters values and not asking again to Enter values.



This is my code:



I have my data in another window in datagrid view and there is hyperlink print result when click on it i send the primary key by using query string to the crystal report window
this is the hyper link code



<asp:TemplateField>
<HeaderTemplate>Options</HeaderTemplate>
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" NavigateUrl='<%#"/RPT/WebForm1.aspx?order_id=" +Eval("Request number")+"&DEPT ID=" +Eval("DEPT ID")+"&Test Id=" +Eval("Test Id")%>' runat="server">Print Result</asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>


and this is page load code in the other window :



protected void Page_Load(object sender, EventArgs e)


if (!IsPostBack)


TXTORDERID.Text = Request.QueryString["order_id"].ToString();
TXTDEPTID.Text = Request.QueryString["DEPT ID"].ToString();
TXTTESTID.Text = Request.QueryString["Test Id"].ToString();
ReportDocument reportDocument = new ReportDocument();
ParameterFields paramFields = new ParameterFields();
ParameterField paramField = new ParameterField();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();



paramField.Name = "@ORDER_ID";
paramDiscreteValue.Value = TXTORDERID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

paramField = new ParameterField();
paramDiscreteValue = new ParameterDiscreteValue();
paramField.Name = "@deptid";
paramDiscreteValue.Value = TXTDEPTID.Text.ToString();
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);

CrystalReportViewer1.ParameterFieldInfo = paramFields;
CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
CrystalReportViewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
reportDocument.Load(Server.MapPath("~/RPT/RPT_RESULT.rpt"));
CrystalReportViewer1.ReportSource = reportDocument;
reportDocument.SetDatabaseLogon("DBA", "2006");








c# crystal-reports






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 15:36







ziadqasem

















asked Mar 6 at 9:08









ziadqasemziadqasem

488




488












  • Post code, and also check if it is because of Postback?

    – JulyOrdinary
    Mar 7 at 9:43











  • @JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • Try following to check if code is missing something stackoverflow.com/questions/12002957/…

    – JulyOrdinary
    Mar 8 at 10:42












  • @JulyOrdinary yes its working thank you

    – ziadqasem
    Mar 8 at 21:36

















  • Post code, and also check if it is because of Postback?

    – JulyOrdinary
    Mar 7 at 9:43











  • @JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • Try following to check if code is missing something stackoverflow.com/questions/12002957/…

    – JulyOrdinary
    Mar 8 at 10:42












  • @JulyOrdinary yes its working thank you

    – ziadqasem
    Mar 8 at 21:36
















Post code, and also check if it is because of Postback?

– JulyOrdinary
Mar 7 at 9:43





Post code, and also check if it is because of Postback?

– JulyOrdinary
Mar 7 at 9:43













@JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

– ziadqasem
Mar 7 at 15:32





@JulyOrdinary , i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

– ziadqasem
Mar 7 at 15:32













Try following to check if code is missing something stackoverflow.com/questions/12002957/…

– JulyOrdinary
Mar 8 at 10:42






Try following to check if code is missing something stackoverflow.com/questions/12002957/…

– JulyOrdinary
Mar 8 at 10:42














@JulyOrdinary yes its working thank you

– ziadqasem
Mar 8 at 21:36





@JulyOrdinary yes its working thank you

– ziadqasem
Mar 8 at 21:36












1 Answer
1






active

oldest

votes


















1














You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;







share|improve this answer

























  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55019275%2fhow-to-hide-enter-parameter-value-when-navigate-to-next-page-in-crystal-reports%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;







share|improve this answer

























  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36















1














You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;







share|improve this answer

























  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36













1












1








1







You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;







share|improve this answer















You Can use the following code in your page load or in the button where you call crystal report code also for the message show when navigate to next page under your code add the following code it will hide the message "The report you requested requires further information "



if (!IsPostBack)

// your code inside


var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "server_name";
connectionInfo.DatabaseName = "database_name";
connectionInfo.UserID = "database_user_name";
connectionInfo.Password = "database_password";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;

for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)

CrystalReportViewer1.LogOnInfo[i].ConnectionInfo = connectionInfo;








share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 8 at 18:44

























answered Mar 7 at 15:23









AbdullahAbdullah

628




628












  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36

















  • i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

    – ziadqasem
    Mar 7 at 15:32











  • I updated my answer with your issue

    – Abdullah
    Mar 8 at 18:44











  • yes working thank you

    – ziadqasem
    Mar 8 at 21:36
















i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

– ziadqasem
Mar 7 at 15:32





i addded if (!IsPostBack) and window for parameters now hided but another window appeared now asking for further information user name and password for database but i already added it in the code reportDocument.SetDatabaseLogon("DBA", "2006"); how to hide also this window ?

– ziadqasem
Mar 7 at 15:32













I updated my answer with your issue

– Abdullah
Mar 8 at 18:44





I updated my answer with your issue

– Abdullah
Mar 8 at 18:44













yes working thank you

– ziadqasem
Mar 8 at 21:36





yes working thank you

– ziadqasem
Mar 8 at 21:36



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55019275%2fhow-to-hide-enter-parameter-value-when-navigate-to-next-page-in-crystal-reports%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived