|
Home > Archive > microsoft.public.cert.exam.mcsd > April 2003 > Differences!!!!!
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Hidden Desi 2003-04-17, 6:23 pm |
| Hello all,
Could you please tell me what is the difference between "Web Custom
Control" and "Web User Control"? I am very confused about all
different control thingies, sooooooooo many types of controls!
Also what should be the answer of the following question:
You have been contracted to build a custom Web application for a
company that takes merchandise orders by telephone. Each salesperson
will receive telephone calls from customers who are responding to
television, radio, and print advertisements and will enter the
caller's order into the Web application. The call center's manager
wants the Web application to display the current call status, which
consists of the number of active calls, the number of calls waiting,
and the longest current wait time, at the top of each Web page.
The users will also use other Web applications on the intranet to
perform other job-related tasks. The current call status display
should appear at the top of each of these applications.
How should you implement the current call status display in order to
minimize your effort and the amount of disk space used? (Select the
best choice.)
a. Add a Label control to the top of all pages in all Web
applications. Implement the data access code in each page.
b. Add a TextBox control to the top of all pages in all Web
applications. Implement the data access code in each page.
c. Create a Web Custom Control that will display the information.
Add the control to the top of each page of each Web application.
d. Create a Web User Control that will display the information. Add
the control to the top of each page of each Web application.
| |
|
| I believe the answer should be C
"Hidden Desi" <hiddendesi@yahoo.com> wrote in message
news:eqfehWTBDHA.1220@TK2MSFTNGP11.phx.gbl...
> Hello all,
> Could you please tell me what is the difference between "Web Custom
> Control" and "Web User Control"? I am very confused about all
> different control thingies, sooooooooo many types of controls!
>
> Also what should be the answer of the following question:
>
> You have been contracted to build a custom Web application for a
> company that takes merchandise orders by telephone. Each salesperson
> will receive telephone calls from customers who are responding to
> television, radio, and print advertisements and will enter the
> caller's order into the Web application. The call center's manager
> wants the Web application to display the current call status, which
> consists of the number of active calls, the number of calls waiting,
> and the longest current wait time, at the top of each Web page.
>
> The users will also use other Web applications on the intranet to
> perform other job-related tasks. The current call status display
> should appear at the top of each of these applications.
>
> How should you implement the current call status display in order to
> minimize your effort and the amount of disk space used? (Select the
> best choice.)
>
> a. Add a Label control to the top of all pages in all Web
> applications. Implement the data access code in each page.
>
> b. Add a TextBox control to the top of all pages in all Web
> applications. Implement the data access code in each page.
>
> c. Create a Web Custom Control that will display the information.
> Add the control to the top of each page of each Web application.
>
> d. Create a Web User Control that will display the information. Add
> the control to the top of each page of each Web application.
>
>
| |
| bit189 2003-04-22, 4:23 pm |
|
The question is required for multi Web Applications so you should use a
custom control 'cause custom control can used for multi Web Application
by register with GAC which user control will spend more space to do it
(store it in each Web Application).
--
Posted via http://dbforums.com
|
|
|
|
|