"=?Utf-8?B?UGF1bA==?=" <(E-Mail Removed)> wrote in
news:4C17B6DA-5B9D-4A99-8E86-(E-Mail Removed):
> ok thanks for the reply, just wondering if you know how to set a
> parameter being passed to a stored procedure, Think I am close but get
> the error denotes a property where a method was expected under the
> parameter key word. thanks,
> this.da_usrinfo.SelectCommand.Parameters("@User_Id").Value = i_user;
I havent looked at the reference, but try:
this.da_usrinfo.SelectCommand.Parameters["@User_Id"].Value = i_user;
Its probably a property and not a method.
--
Chad Z. Hower (a.k.a. Kudzu) -
http://www.hower.org/Kudzu/
"Programming is an art form that fights back"
Get your ASP.NET in gear with IntraWeb!
http://www.atozed.com/IntraWeb/