Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have two usercontrols like below in service.aspx file

ASP.NET
<%@ Register Src="BPRS.ascx" TagName="BPRS" TagPrefix="ucBPRS" %>
<%@ Register Src="MMSE.ascx" TagName="MMSE" TagPrefix="ucMMSE" %>


as per current implementation

1.enter clientId in BPRS will auto populate other details in BPRS.

2.handling everything in same user control

but I need to do

1.enter clientID in BPRS should auto populate details in BPRS(get by ClientID related details) and MMSE(get by ClientID related details).

2.simplity when i enter clientId in BPRS ,it should hit MMSE usercontrol as well .

Is there any way to do this ? I was unable to find in my search .

What I have tried:

i tried

MMSEx = new MMSE();


in
BPRS
but it through null error .
Posted
Updated 16-May-21 0:43am

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900