Click here to Skip to main content
15,897,518 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralTHANK YOU TOOOOOOOOOOOOO VERY MUCH THANKS ALOTTTTTTT, CODE WORKED PERFECTLY Pin
dream_liner_7e714-Jul-08 10:43
dream_liner_7e714-Jul-08 10:43 
Questionasp.net with jquery Pin
highjo14-Jul-08 3:13
highjo14-Jul-08 3:13 
AnswerRe: asp.net with jquery Pin
highjo14-Jul-08 9:20
highjo14-Jul-08 9:20 
Questionfind last week dates? Pin
Member 387988114-Jul-08 3:04
Member 387988114-Jul-08 3:04 
AnswerRe: find last week dates? Pin
Abhijit Jana14-Jul-08 3:29
professionalAbhijit Jana14-Jul-08 3:29 
AnswerRe: find last week dates? Pin
leoinfo14-Jul-08 3:58
leoinfo14-Jul-08 3:58 
QuestionLayers Pin
kenexcelon14-Jul-08 2:54
kenexcelon14-Jul-08 2:54 
AnswerRe: Layers Pin
Deepak the Cool14-Jul-08 3:12
Deepak the Cool14-Jul-08 3:12 
You can create like this

BO [Business Object]
BLL [Business Logic Layer]
DAL [Data Access Layer]

Now First we define the BO

Here you can create some property according to need..

Now You can create your BO,BLL class objects into your UI code behind...

Now you assign the BO property

BO oBO=new BO;
myBLL oMyBLL=new myBLL();
oBO.PropertyName=ControlName.Text;
dataset ds=oMyBLL(BO oBO);

Now refer to you BLL

Create a class in you BLL folder which has the paratemer of BO
public dataset class myBAL(BO oBo)
{

}
and this BO class call the DAl like this
public dataset class myBAL(BO oBO)
{
return oDAL.YourSelectMethod(BO oBO)

}

Now DAL CLASS is like this
public dataset Class myDAL(BO oBO)
{
// Your Code for select is here
}

above is the secenirio That will be some error.. Hope you solve it into you level. Here I given only example

Deepak

Smile | :) Smile a Lots,Its Costs Nothing

QuestionHow to Get Web User Control Value Pin
Deepak the Cool14-Jul-08 2:17
Deepak the Cool14-Jul-08 2:17 
QuestionResponse.TransmiFile Pin
kadkir14-Jul-08 1:49
kadkir14-Jul-08 1:49 
AnswerRe: Response.TransmiFile Pin
Sherin Iranimose14-Jul-08 2:26
Sherin Iranimose14-Jul-08 2:26 
GeneralRe: Response.TransmiFile Pin
kadkir14-Jul-08 17:25
kadkir14-Jul-08 17:25 
QuestionCall Unmanaged dll into VB.net Pin
Member 353051814-Jul-08 1:48
Member 353051814-Jul-08 1:48 
QuestionThe codefile attribute on the page directive is not allowed in this page Pin
Aavesh Agarwal14-Jul-08 0:59
Aavesh Agarwal14-Jul-08 0:59 
AnswerRe: The codefile attribute on the page directive is not allowed in this page Pin
Imran Khan Pathan14-Jul-08 1:45
Imran Khan Pathan14-Jul-08 1:45 
AnswerCross Post. Pin
Pete O'Hanlon14-Jul-08 2:22
mvePete O'Hanlon14-Jul-08 2:22 
Questionattach and sending emails automatically Pin
Member 387988114-Jul-08 0:49
Member 387988114-Jul-08 0:49 
AnswerRe: attach and sending emails automatically Pin
windhopper14-Jul-08 0:57
windhopper14-Jul-08 0:57 
QuestionHow to dynamically add value to table header cells Pin
Rameez Raja14-Jul-08 0:37
Rameez Raja14-Jul-08 0:37 
QuestionChange language of a textbox Pin
samerh14-Jul-08 0:10
samerh14-Jul-08 0:10 
Questionsmtp Pin
brettokumar14-Jul-08 0:08
professionalbrettokumar14-Jul-08 0:08 
AnswerRe: smtp Pin
windhopper14-Jul-08 0:42
windhopper14-Jul-08 0:42 
AnswerRe: smtp Pin
Abhijit Jana14-Jul-08 3:35
professionalAbhijit Jana14-Jul-08 3:35 
Question[Message Deleted] Pin
michael_jhons13-Jul-08 23:58
michael_jhons13-Jul-08 23:58 
AnswerRe: check box get cell value Pin
windhopper14-Jul-08 0:49
windhopper14-Jul-08 0:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.