using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using BLL;
using MODEL;
public partial class EventManagementView : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            string lnid = Request.QueryString["lnid"];            LargeNotepadManager lnm = new LargeNotepadManager();
            LargeNotepad largeNotepad = lnm.SelectForm(lnid);
            lbTitle.Text = largeNotepad.title;
            lbMainContent.Text = largeNotepad.mainContent;
            lbRecorder.Text = largeNotepad.recorder;
            lbRecordTime.Text = largeNotepad.recordTime.ToString();
        }
    }
}
              LargeNotepad largeNotepad = lnm.SelectForm(lnid);出错了
错误 1 与“BLL.LargeNotepadManager.SelectForm(int)”最匹配的重载方法具有一些无效参数
错误 2 参数“1”: 无法从“string”转换为“int” 怎么解决!谢谢