TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ashok
NA
507
81.4k
3-tier architecture
Sep 28 2014 2:26 AM
Hello, I am developing a 3 -tier application in asp.net ,in App_Code i have AddpatientBL.cs class file under HospitalMgmt.BL folder which contains properties as below and i am using sqlhelper.cs under HospitalMgmt.DAL to maintain all executenonquery ....etc
using HospitalMgmt.DAL;
public class AddPatientBL
{
string code;
public string Code
{
get { return code; }
set { code = value; }
}
public void AddPatient()
{
SqlParameter[] p = new SqlParameter[18];
p[0] = new SqlParameter("@code", this.code);
p[0].DbType = DbType.String;
SqlHelper.ExecuteNonQuery(con, CommandType.StoredProcedure, "SpAddPatient", p);
}
and i created a webform.aspx and when i try to create an object for AddPatientBL .cs in webform.aspx its not getting created to call all properites in webform.aspx.Please reply as possible.Thank you
Reply
Answers (
1
)
How to Fect Data From the serial port(Com1) in asp.net
charts in asp.net