2011-08-21 21 views
0

我在我的aspx.cs一個INSERT語句這需要像40個paramters類文件中插入數據

InsertDetailsforBusiness(Profile_Id, C, MID, User_ID, Fullnamee, Gender, Age, Height, complexion, marital_status, Region_or_District, Diet, Profile_Description, Hobbies, WebProfile_Registered_at_FMM_By, dtReg, 
      Education, Educational_Degrees, , Education_Medium, Job_Designation, Company_Name, Company_Address, Monthly_Income, Other_Income_Particulars, 
     ----------------------------) 

所以,我可以寫的.cs類文件來執行此插入?

這是我如何開始: 在一個類文件

public string ProfileId { get; set; } 
public int CasteId { get; set; } 
public int MMBId { get; set; ........ 

,但不知道如何在aspx.cs在SP插入所有paramters進行實際調用 感謝 太陽

回答