Hi all, I am preparing for the exam 70-528. Need clarifications for these questions 1. Can a mobile control be added to a web form? 2. What condition is required when adding two tables in a data set with a data relation? 3. Q3: You create a Web Form for the acceptance of donations. Users type donation amounts by using a TextBox control named txtAmount. The donation amount must be between 10 dollars and 10,000 dollars. You add the following RequiredFieldValidator and RangeValidator. <asp:RangeValidator ID="valAmount" runat="server" ControlToValidate="txtAmount" ErrorMessage="The valid range is 10 to 10000" MaximumValue="10000" MinimumValue="10" Type="Currency"> </asp:RangeValidator> <asp:RequiredFieldValidator ID="valAmountRequired" runat="server" ControlToValidate="txtAmount" ErrorMessage="Please enter a value"> </asp:RequiredFieldValidator> During testing you learn that when users fail to enter values before submitting the Web Form to the server, the message "Please enter a value" appears, as shown in the exhibit. You need to ensure that the message appears immediately following the txtAmount TextBox control without extra spaces. What should you do? A. In the RangeValidator, set the Display property to Dynamic. B. In the RangeValidator, set the Display property to Static. C. In the RequiredFieldValidator, set the Display property to Dynamic. D. In the RequiredFieldValidator, set the Display property to Static. your inputs are greatly appreciated. thanks, Anna