Hi all,
I have the EditURL called this way:
string[] addParams=new string[5];
addParams[0]="Black";
addParams[1]="Blue";
addParams[2]="Orange";
Response.Redirect(EditUrl("TestText", "Parameters passed","Edit",addParams));No
Now, my question is how to retrieve the parameters in the Edit Page?
Further, this simple call from Edit control:
Response.Redirect(NavigateURL());
redirects to the view control which is default. Now how do I pass the parameters to this method so that I will get redirected to the default view control with the parameters in the url?
Any help appreciated.Thanks in advance.