70-315  Exam

Exam # of questions Description  Update
70-315 209 70-315... 02/15/2011
[Practice Test]    [Download Study Guide(PDF)]   [Update Exam]

70-315 - Exam Information
  • Description: Developing and Implementing Web Applications with Microsoft Visual C# .NET
  • Passing Score: 75%
  • Practice Test - Number of questions: 209 questions
  • Simulation Test - Number of questions: 209 questions
  • Simulation Test Duration: 90 minutes
  • Has explanations: Yes

Question of the day

You create an ASP.NET page that uses images to identify areas where a user can click to initiate actions. The users of the application use Internet Explorer. You want to provide a pop-up window when the user moves the mouse pointer over an image. You want the pop-up window to display text that identifies the action that will be taken if the user clicks the image. What should you do?

Answer(s)

  1. For each image, set the AlternateText property to specify the text you want to display, and setthe ToolTip property to True.
  2. For each image, set the ToolTip property to specify the text you want to display.
  3. In the onmouseover event handler for each image, add code that calls the RaiseBubbleEvent()method of the System.Web.UI.WebControls.Image class.
  4. In the onmouseover event handler for each image, add code that calls the ToString() methodof the System.Web.UI.WebControls.Image class.
Correct Answer

For each image, set the ToolTip property to specify the text you want to display.