Guest User

Untitled

a guest
Jun 24th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. You are implementing an ASP.NET page. You add asp:Button controls for Help and for
  2. Detail. You add an ASP.NET skin file named default.skin to a theme. You need to create
  3. and use a separate style for the Help button, and you must use the default style for the
  4. Detail button. What should you do?
  5.  
  6. A. Add the following markup to the default.skin file. <asp:Button ID="Help"></asp:Button>
  7. <asp:Button ID="Default"></asp:Button> Use the following markup for the buttons in the
  8. ASP.NET page. <asp:Button SkinID="Help">Help</asp:Button> <asp:Button
  9. SkinID="Default">Detail</asp:Button>
  10.  
  11. B. Add the following markup to the default.skin file. <asp:Button SkinID="Help"></asp:Button>
  12. <asp:Button ID="Default"></asp:Button> Use the following markup for the buttons in the
  13. ASP.NET page. <asp:Button SkinID="Help">Help</asp:Button> <asp:Button
  14. SkinID="Default">Detail</asp:Button>
  15.  
  16. C. Add the following code segment to default.skin. <asp:Button SkinID="Help"></asp:Button>
  17. <asp:Button></asp:Button> Use the following markup for the buttons in the ASP.NET page.
  18. <asp:Button SkinID="Help"></asp:Button> <asp:Button SkinID="Default">Detail</asp:Button>
  19.  
  20. D. Add the following markup to default.skin.
  21. <asp:Button SkinID="Help"></asp:Button>
  22. <asp:Button></asp:Button>
  23. Use the following markup for the buttons in the ASP.NET page.
  24. <asp:ButtonSkinlD="Help">Help</asp:Button>
  25. <asp:Button>Detail</asp:Button>
  26.  
  27. Answer: D
Add Comment
Please, Sign In to add comment