I'm having trouble passing an integer parameter to a user defined function. I've read all of the posts and the kb article, but I can't seem to pass an interger to my function. I can pass a string, but not an integer.
Here's what I've got:
My binding expressions are:
= GetText(Parameters.ParmString.Value)
= GetInt(Parameters.ParmInt.Value)
Integer Parameter: AllowBlank: True, AllowNull: False, MultiValue: False, Type: Integer, Value: 9999
String Parameter: AllowBlank: True, AllowNull: False, MultiValue: False, Type: String, Value: Test String
Thanks. All help is appreciated.
Here's what I've got:
public static string GetInt(int orgId)
{
return "Get Int: " + orgId.ToString();
}
public static string GetText(string orgId)
{
return "Get Text: " + orgId;
}
My binding expressions are:
= GetText(Parameters.ParmString.Value)
= GetInt(Parameters.ParmInt.Value)
Integer Parameter: AllowBlank: True, AllowNull: False, MultiValue: False, Type: Integer, Value: 9999
String Parameter: AllowBlank: True, AllowNull: False, MultiValue: False, Type: String, Value: Test String
Thanks. All help is appreciated.