This is a migrated thread and some comments may be shown as answers.

[Solved] Radcombobox Problem

0 Answers 125 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Jols
Top achievements
Rank 2
Jols asked on 29 Apr 2009, 09:13 AM
Hello to all expert in telerik controls

                        Once again i would like to ask help to you guys who knows very well in asp.net, ok.. here's my question coz its raises some error, i have two radcombobox namely the group and the other one is the member.. of course that is connected to the database,.when i tried to select group on the first attempt its shows the member on the second combobox, then second attempt i trying to select another group to be able to load again to the second combobox which is the member, but its raises some error..
this is the error.... Redirect URI cannot contain newline characters. i debug my services there is no error but it goes to that method below.. Pleaes help

and here's my codes for the second combobox, coz the error goes in this method,

 

protected void Responsible(string groupkey)

 

{

 

AppGlobalDeclarations gConn = new AppGlobalDeclarations();

 

RequestMaster05Users.

RequestMaster05UsersClient _MasterUsers = new IBOS.RequestMaster05Users.RequestMaster05UsersClient();

 

 

try

 

{

 

this.RDCboResponsible.DataSource =_MasterUsers.tblMaster05Users_ResponsibleList(groupkey,gConn.SQLConnection);

 

 

this.RDCboResponsible.DataTextField = "fcUserName";

 

 

this.RDCboResponsible.DataValueField = "fxKeyID";

 

 

this.RDCboResponsible.DataBind();

 

}

 

catch (Exception ex)

 

{

 

string msg = ex.Message; >>> Redirect URI cannot contain newline characters

 

Response.Redirect(

"../CustomErrorPage.aspx?ErrorMessage=" + msg);

 

}

}

sample code is highly appreciated
thanks

No answers yet. Maybe you can help?

Tags
ComboBox
Asked by
Jols
Top achievements
Rank 2
Share this question
or