Failed today in India, very few questions from the dump and moreso, even for the few, the answers are not in the same format.
Waiting for new post.
All the same thanks guys, really doing a wonderful job.
Princess from Unknown -
Jun 19 2012, 9:48 AMReport Spam
Dump is valid...
Thanks alot.....
Mehmet from Turkey -
Jun 18 2012, 5:25 PMReport Spam
dump is valid. 4 or 5 new questions
kuma from Sri Lanka -
Jun 17 2012, 10:35 AMReport Spam
My answers.
1) c
2) c
http://msdn.microsoft.com/en-us/library/ydy4x04a.aspx
3) a
kuma from Sri Lanka -
Jun 17 2012, 10:31 AMReport Spam
3) The page will be posted to the server after one or more image files are selected for upload.You need to ensure that all unuploaded files are saved to the server within one call to a single event handler. What should you do?
a) Read the HttpRequest.Files prop;erty and call the HttpPostedFile.SaveAs method for each file.
b) Read the HttpRequest.inputStream property and call the System.Io.File.WriteLines method for each file.
c) Read the HttpRequest.inputStream property and call the HttpResponse.WriteLine method for each file.
d) Read the HttpRequest.Files prop;erty and call the System.Io.File.WriteLines method for each file.
kuma from Sri Lanka -
Jun 17 2012, 10:24 AMReport Spam
You are perfoming security testing on an existing asp.net web page.You notice that you are able to issue unauthorised postback requests to the page.
You need to prevent unauthorised post back requests. which page directive you use?
a) <%@Page strict = "true" %>
b) <%@Page enableViewStateMac = "true" %>
c) <%@Page EnableEventValidation = "true" %>
d) <%@Page Aspcompact = "true" %>
kuma from Sri Lanka -
Jun 17 2012, 10:20 AMReport Spam
I passed today. Thanks Nazmul. I found new questions.
1.You are developing a Asp.net web application tht includes a panel control that has ID contentsection.You need to add a textBox control to the panel control.
a) this.RequireControlState(this.LoadControl(typeof(TextBox),null));
b) this.ContentSection.control.add(this.FindControl(ContentSection.ID + "asp:TextBox"));
c) this.ContentSection.control.add(this.LoadControl(typeof(TextBox),null));
d) this.LoadComplete("asp:TextBox").IntiantiateIn(Content Section)
Yuriy from Ukraine -
Jun 16 2012, 8:00 PMReport Spam
Hello Lorena.
I'm really trying to understand why some people think that right answer is C but i can't. I've checked code from answer C on a page with out master page. It doesn't work because of the property this.Form is null. It's not depend from master page. But if you put code like this.form1.Controls. it will work. Also in book we have phrase for PreInit event "You should create the controls inside this event." I think, it meanes that in event PreInit you can load(create) UserControl. But ("Init If you need to dynamically add controls to a content page, use this event. " text from book) in Init event you have to add control on a page. So it meanes that you have to use event Load instead of Init and you mustn't use PreInit event for adding control on a page. If I'm wrong please show me.
Thanks.
Lorena from Spain -
Jun 16 2012, 9:43 AMReport Spam
@Yuriy
I agree you say. Table3-1(pag.105) discusses this topic. I think this question is not very clear and the key-point here is if you are using master pages or not. Without MasterPages then PREINIT event should the correct answer. If you are using MasterPages then is Init. But there is not init event in any answer. So, what should we do ?. Reduction to the absurd ?. :-)). I have checked this question and PreInit worked fine for me. What do you think ? Have you checked it too ?. Tell me.
Nazmul from Bangladesh -
Jun 16 2012, 4:30 AMReport Spam
Lorena Thank you very much
i have correct those answers and upload it again
Venhur from Spain -
Jun 15 2012, 6:16 PMReport Spam
Passed today with 935/1000 with 4 new questions. Parameters to compile in one file 2 javascript files (forms and ajax from .net api). Thanks
Carlos hGamboa from United States -
Jun 15 2012, 12:50 PMReport Spam
Thank you for this exam, is the best ;)
Yuriy from Ukraine -
Jun 15 2012, 12:45 PMReport Spam
Hello Lorena. Why do you think that answer on question 9 is incorrect?
In the book we have answer that we should use"Init If you need to dynamically add controls to a content page, use this event. " So, because we do not have answer with Init we have to use answer with Load event.
Page 105
Thanks.
Lorena from Spain -
Jun 14 2012, 3:47 PMReport Spam
Thank Nazmul. BUT here there are several questions wrong. I count 3 bad answers so far.
question 9. Correct option is C (Page_PreInit+Page.LoadControl). The selected A is wrong.
question 102. this question was already corrected a lot of times . The right answer is B. (.where +.selectmany; and NOT .GroupBy +.Where)
question 160. The answer is option B. <pages controlRenderingCompatibilityVersion="3.5"/>.
Developer for Saudi Arabia from Saudi Arabia -
Jun 14 2012, 12:31 PMReport Spam
today i passed the exam with 871/1000 . thanks Nazmul for the updated wrong questions . it will help others .
venhur from Spain -
Jun 14 2012, 9:25 AMReport Spam
Thanks, I'll try the exam tomorrow
Nazmul from Bangladesh -
Jun 14 2012, 5:21 AMReport Spam
Passed today with 871/1000, 5 new questions
Some answers was wrong, I correct them
Now you get minimum 970 marks
Waiting for new post.
All the same thanks guys, really doing a wonderful job.
Thanks alot.....
1) c
2) c
http://msdn.microsoft.com/en-us/library/ydy4x04a.aspx
3) a
a) Read the HttpRequest.Files prop;erty and call the HttpPostedFile.SaveAs method for each file.
b) Read the HttpRequest.inputStream property and call the System.Io.File.WriteLines method for each file.
c) Read the HttpRequest.inputStream property and call the HttpResponse.WriteLine method for each file.
d) Read the HttpRequest.Files prop;erty and call the System.Io.File.WriteLines method for each file.
You need to prevent unauthorised post back requests. which page directive you use?
a) <%@Page strict = "true" %>
b) <%@Page enableViewStateMac = "true" %>
c) <%@Page EnableEventValidation = "true" %>
d) <%@Page Aspcompact = "true" %>
1.You are developing a Asp.net web application tht includes a panel control that has ID contentsection.You need to add a textBox control to the panel control.
a) this.RequireControlState(this.LoadControl(typeof(TextBox),null));
b) this.ContentSection.control.add(this.FindControl(ContentSection.ID + "asp:TextBox"));
c) this.ContentSection.control.add(this.LoadControl(typeof(TextBox),null));
d) this.LoadComplete("asp:TextBox").IntiantiateIn(Content Section)
I'm really trying to understand why some people think that right answer is C but i can't. I've checked code from answer C on a page with out master page. It doesn't work because of the property this.Form is null. It's not depend from master page. But if you put code like this.form1.Controls. it will work. Also in book we have phrase for PreInit event "You should create the controls inside this event." I think, it meanes that in event PreInit you can load(create) UserControl. But ("Init If you need to dynamically add controls to a content page, use this event. " text from book) in Init event you have to add control on a page. So it meanes that you have to use event Load instead of Init and you mustn't use PreInit event for adding control on a page. If I'm wrong please show me.
Thanks.
I agree you say. Table3-1(pag.105) discusses this topic. I think this question is not very clear and the key-point here is if you are using master pages or not. Without MasterPages then PREINIT event should the correct answer. If you are using MasterPages then is Init. But there is not init event in any answer. So, what should we do ?. Reduction to the absurd ?. :-)). I have checked this question and PreInit worked fine for me. What do you think ? Have you checked it too ?. Tell me.
i have correct those answers and upload it again
In the book we have answer that we should use"Init If you need to dynamically add controls to a content page, use this event. " So, because we do not have answer with Init we have to use answer with Load event.
Page 105
Thanks.
question 9. Correct option is C (Page_PreInit+Page.LoadControl). The selected A is wrong.
question 102. this question was already corrected a lot of times . The right answer is B. (.where +.selectmany; and NOT .GroupBy +.Where)
question 160. The answer is option B. <pages controlRenderingCompatibilityVersion="3.5"/>.
Some answers was wrong, I correct them
Now you get minimum 970 marks