Click here to Skip to main content
15,925,254 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionI want to force webpage to IE9 compability mode. Pin
buffering8318-Oct-11 13:36
buffering8318-Oct-11 13:36 
AnswerRe: I want to force webpage to IE9 compability mode. Pin
Anuj Banka18-Oct-11 19:04
Anuj Banka18-Oct-11 19:04 
QuestionHorizontal Scrollbar, GridView and Styles Pin
paas18-Oct-11 8:47
paas18-Oct-11 8:47 
AnswerRe: Horizontal Scrollbar, GridView and Styles Pin
Anuj Banka18-Oct-11 19:22
Anuj Banka18-Oct-11 19:22 
GeneralRe: Horizontal Scrollbar, GridView and Styles Pin
paas19-Oct-11 1:16
paas19-Oct-11 1:16 
QuestionAjax async get function problem Pin
symeramon18-Oct-11 3:39
symeramon18-Oct-11 3:39 
AnswerRe: Ajax async get function problem Pin
symeramon19-Oct-11 4:49
symeramon19-Oct-11 4:49 
AnswerRe: Ajax async get function problem Pin
jkirkerx28-Oct-11 20:30
professionaljkirkerx28-Oct-11 20:30 
GeneralRe: Ajax async get function problem Pin
symeramon28-Oct-11 22:07
symeramon28-Oct-11 22:07 
Question.NET Ajax Scheduler Pin
renu.iitkgp18-Oct-11 2:14
renu.iitkgp18-Oct-11 2:14 
QuestionAll day event in .ics Pin
nitin_ion18-Oct-11 1:15
nitin_ion18-Oct-11 1:15 
AnswerRe: All day event in .ics Pin
Anuj Banka18-Oct-11 19:40
Anuj Banka18-Oct-11 19:40 
GeneralRe: All day event in .ics Pin
nitin_ion18-Oct-11 19:42
nitin_ion18-Oct-11 19:42 
GeneralExt.NET - New component framework Pin
AditSheth17-Oct-11 20:42
AditSheth17-Oct-11 20:42 
GeneralRe: Ext.NET - New component framework Pin
Richard MacCutchan17-Oct-11 23:12
mveRichard MacCutchan17-Oct-11 23:12 
GeneralRe: Ext.NET - New component framework Pin
AditSheth17-Oct-11 23:40
AditSheth17-Oct-11 23:40 
GeneralRe: Ext.NET - New component framework Pin
Richard MacCutchan18-Oct-11 0:16
mveRichard MacCutchan18-Oct-11 0:16 
QuestionGeneric list in Business layer Pin
Member 322226417-Oct-11 19:38
Member 322226417-Oct-11 19:38 
QuestionInternal project mappings no longer work Pin
CTaylor8917-Oct-11 13:55
CTaylor8917-Oct-11 13:55 
QuestionOnly domain users can use the site????? Pin
Arpikusz17-Oct-11 11:46
Arpikusz17-Oct-11 11:46 
GeneralCreating and Deploying SharePoint Solution Files Pin
Member 832518917-Oct-11 0:21
Member 832518917-Oct-11 0:21 
GeneralWrong forum, wrong solution and not a question Pin
Not Active17-Oct-11 3:58
mentorNot Active17-Oct-11 3:58 
QuestionUsing Generic List in business layer Pin
Member 322226416-Oct-11 22:39
Member 322226416-Oct-11 22:39 
Hi,
I need to call 3 tables in business layer by using List Collection.

1)I NEED QUERY Clntmast table with clientname.Column
Returned are clientid,cl_Colno# etc.

2)Then i need to query Colector table with cl_Colno#.

how to proceed


BAL:
<pre lang="c#">

        #region   ShowDetails based on client dropdown change event
        public System.Collections.Generic.List<SpecialUser> ShowDetails(string strClientName)
        {
            SearchClientDataAccess user = new SearchClientDataAccess();
            System.Collections.Generic.List<SpecialUser> lstSpecialUser = new System.Collections.Generic.List<SpecialUser>();

            lstSpecialUser = user.ShowClientDetails(strClientName);

            foreach (SpecialUser specialUser in lstSpecialUser)
            {
                if (specialUser.cl_Cred != "")
                {
                  
                    specialUser.cl_Colno = user.GetCredMastDetails(specialUser.cl_Cred.ToString().Trim());
                }

                if (specialUser.cl_Colno != "")
                {
                     user.GetColectorDetails(specialUser.cl_Colno.ToString().Trim());
                }

            }

            return lstSpecialUser;

            // return user.ShowClientDetails(strClientName);



        }


        #endregion


Will the list will return all columns of Credmast and collector table?

Guhananth.S
AnswerRe: Using Generic List in business layer Pin
Not Active17-Oct-11 4:02
mentorNot Active17-Oct-11 4:02 
QuestionHow to keep the root path in the browser's addressbar Pin
impeham16-Oct-11 16:04
impeham16-Oct-11 16:04 

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.