单项选择题X 纠错
A.Pass the object data in a hidden field.
B.Store the object instance in a session variable.
C.Use a cookie that contains the object data.
D.Encode the object data and pass it in a query string parameter.
你可能喜欢
单项选择题
A.<assembles> someoptions </assembles>
B.<pages controlRenderingCompatibilityVersion="3.5"/>
C.<compilation targetframework = "3.5" />
D.<xhtmlConformance mode="Legacy" />
单项选择题
A.<%assembly TargetName="contosobuisness" %>
B.<%assembly ID="contosobuisness" %>
C.<%@ Assembly Name="contosobuisness" %>
D.<%assembly virtualpath="contosobuisness" %>
单项选择题
A.master.master
B.parent.master
C.this.master
D.unknown
单项选择题
A.http.display
B.http.partial
C.http.load
D.http.get
单项选择题
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)
单项选择题
A.<%@Page strict = "true" %>
B.<%@Page enableViewStateMac = "true" %>
C.<%@Page EnableEventValidation = "true" %>
D.<%@Page Aspcompact = "true" %>
单项选择题
A.Read the HttpRequest.Files property 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 property and call the System.Io.File.WriteLines method for each file.
单项选择题
A.Add the following marktip to UpdatePanel1. <Triggers> <asp:PostBackTrigger ControlID="btnSave" /> </Triggers>
B.Set the UpdateMode property for the UpdatePanel2 to "Always"
C.Add the following markup to UpdatePanel2 <Triggers> <asp:AsyncPostBackTrigger ControlID="btnSave" EventName="Click" /> </Triggers>
D.Set the UpdateMode property for UpdatePanel2 to "Conditional"
单项选择题
A.Enable the User-unhandled option for SqlException in Visual Studio Exception configuration.
B.Set the value of the customErrors element‟s mode attribute to “on” in the web.config file.
C.Manually attach the Visual Studio debugger to Internet Explorer.
D.Enable the thrown option for SqlException in Visual Studio exception configuration.
单项选择题
A.<% Page EnableViewState=”true” ViewStateMode=”Enabled” _ %>
B.<% Page EnableViewState=”true” ViewStateMode=”Disabled” _ %>
C.<% Page EnableViewState=”false” ViewStateMode=”Disabled” _ %>
D.<% Page EnableViewState=”false” ViewStateMode=”Enabled” _ %>