dll ファイルで作成したオブジェクトを Web アプリケーションのコード ビハインド ファイルに渡す方法を見つけようとしています。
これが私が作ったクラスです:
public class BugReports
{
public object userRoleDropDown()
{
SqlConnection conn;
SqlCommand userRoleComm;
SqlDataReader reader;
string connectionSrting = ConfigurationManager.ConnectionStrings["BugReports"].ConnectionString;
conn = new SqlConnection(connectionSrting);
userRoleComm = new SqlCommand(
"SELECT UserRoleID, UserRoleName FROM userRoles", conn);
try
{
conn.Open();
reader = userRoleComm.ExecuteReader();
/*
addUserRollDropDownList.DataSource = reader;
addUserRollDropDownList.DataValueField = "UserRoleID";
addUserRollDropDownList.DataTextField = "UserRoleName";
addUserRollDropDownList.DataBind();*/
reader.Close();
}
finally
{
conn.Close();
}
return reader;
}
}
次に、cs ファイルでリーダーを使用したいのですが、どこから始めればよいでしょうか? 簡単だと思いました。
BugReports reader = new BugReports();
動作しますが、何も起こりません。