1.You are creating an ASP.NET MCP certifications page for the sales department at your company. The page enables users to access data for individual customers by selecting a customer's name. After a customer's name is selected, the page displays a list of that customer's unshipped orders and the total year-to-date (YTD) sales to that customer.
Your company's sales data is stored in a Microsoft SQL Server database. You write a stored procedure MCP certifications to return the data that you need to display on the ASP.NET page. The stored procedure returns a result set containing the list of unshipped orders, and it returns the YTD sales in a parameter named @YTD.
You write code that uses a SqlCommand object named cmd and a SqlDataReader object named reader to run the stored procedure and return the data. You bind reader to a DataGrid control on your page to display the list of unshipped orders.
You want to display the YTD sales in a Label control named MCP certifications . Which code segment should you use?