Advertisement
Sunday, October 28, 2007
True or False: To test a Web service you must create a windows application or Web application to consume this service?
Posted by S3 Technology Softwares at 5:23 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhich control would you use if you needed to make sure the values in two different controls matched?
Posted by S3 Technology Softwares at 5:23 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhich property on a Combo Box do you set with a column name, prior to setting the DataSource, to display data in the combo box?
Posted by S3 Technology Softwares at 5:23 PM 2 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat does WSDL stand for?
Posted by S3 Technology Softwares at 5:22 PM 1 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailTrue or False: A Web service can only be written in .NET?
Posted by S3 Technology Softwares at 5:22 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat is the transport protocol you use to call a Web service?
Posted by S3 Technology Softwares at 5:22 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat tag do you use to add a hyperlink column to the DataGrid?
Posted by S3 Technology Softwares at 5:21 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat tags do you need to add within the asp:datagrid tags to bind columns manually?
Posted by S3 Technology Softwares at 5:21 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailName two properties common in every validation control?
Posted by S3 Technology Softwares at 5:21 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat base class do all Web Forms inherit from?
Posted by S3 Technology Softwares at 5:20 PM 1 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?
Posted by S3 Technology Softwares at 5:20 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailHow can you provide an alternating color scheme in a Repeater control?
Posted by S3 Technology Softwares at 5:20 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhich template must you provide, in order to display data in a Repeater control?
Posted by S3 Technology Softwares at 5:19 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailCan you edit data in the Repeater control?
Posted by S3 Technology Softwares at 5:19 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhich method do you invoke on the DataAdapter control to load your generated dataset with data?
Posted by S3 Technology Softwares at 5:19 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhats MSIL, and why should my developers need an appreciation of it if at all?
MSIL is the Microsoft Intermediate Language. All .NET compatible languages will get converted to MSIL.
Posted by S3 Technology Softwares at 5:19 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailExplain what a diffgram is, and a good use for one?
The DiffGram is one of the two XML formats that you can use to render DataSet object contents to XML. For reading database data to an XML file to be sent to a Web Service.
Posted by S3 Technology Softwares at 5:18 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailDescribe the difference between inline and code behind.
Inline code written along side the html in a page. Code-behind is code written in a separate file and referenced by the .aspx page.
Posted by S3 Technology Softwares at 5:18 PM 1 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhats an assembly?
Posted by S3 Technology Softwares at 5:17 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailCan you explain what inheritance is and an example of when you might use it?
When you want to inherit (use the functionality of) another class. Base Class Employee. A Manager class could be derived from the Employee base class.
Posted by S3 Technology Softwares at 5:17 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailIf I’m developing an application that must accommodate multiple security levels though secure login and my ASP.NET web application is spanned across three web-servers (using round-robin load balancing) what would be the best approach to maintain login-in state for the users?
Posted by S3 Technology Softwares at 5:17 PM 4 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailCan you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?
Posted by S3 Technology Softwares at 5:16 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailCan you explain the difference between an ADO.NET Dataset and an ADO Recordset?
· A DataSet can represent an entire relational database in memory, complete with tables, relations, and views.
· A DataSet is designed to work without any continuing connection to the original data source.
· Data in a DataSet is bulk-loaded, rather than being loaded on demand.
· There's no concept of cursor types in a DataSet.
· DataSets have no current record pointer You can use For Each loops to move through the data.
· You can store many edits in a DataSet, and write them to the original data source in a single operation.
Though the DataSet is universal, other objects in ADO.NET come in different versions for different data sources.
Posted by S3 Technology Softwares at 5:15 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?
Server.Transfer is used to post a form to another page. Response.Redirect is used to redirect the user to another page or site.
Posted by S3 Technology Softwares at 5:15 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat does the "EnableViewState" property do? Why would I want it on or off?
Posted by S3 Technology Softwares at 5:14 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailShould validation (did the user enter a real date) occur server-side or client-side? Why?
Posted by S3 Technology Softwares at 5:14 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat type of code (server or client) is found in a Code-Behind class?
Posted by S3 Technology Softwares at 5:14 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailExplain the differences between Server-side and Client-side code?
Posted by S3 Technology Softwares at 5:13 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat data type does the RangeValidator control support?
Posted by S3 Technology Softwares at 5:13 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailSuppose you want a certain ASP.NET function executed on MouseOver over a certain button. Where do you add an event handler?
It’s the Attributesproperty, the Add function inside that property. So btnSubmit.Attributes.
Add("onMouseOver","someClientCode();")
Posted by S3 Technology Softwares at 5:13 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat’s a bubbled event?
When you have a complex control, like DataGrid, writing an event processing routine for each object (cell, button, row, etc.) is quite tedious. The controls can bubble up their eventhandlers, allowing the main DataGrid event handler to take care of its constituents.
Posted by S3 Technology Softwares at 5:12 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat’s the difference between Codebehind="MyCode.aspx.cs" and
Posted by S3 Technology Softwares at 5:12 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhere do you store the information about the user’s locale?
Posted by S3 Technology Softwares at 5:12 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhere does the Web page belong in the .NET Framework class hierarchy?
Posted by S3 Technology Softwares at 5:11 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat methods are fired during the page load?
Init() - when the page is instantiated, Load() - when the page is loaded into server memory, PreRender() - the brief moment before the page is displayed to the user as HTML, Unload() - when page finishes loading.
Posted by S3 Technology Softwares at 5:11 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailWhat’s the difference between Response.Write() and Response.Output.Write()?
Ans > The latter one allows you to write formatted output.
Posted by S3 Technology Softwares at 5:10 PM 0 comments
Labels: Interview Questions
Subscribe : Subscribe By EmailDescribe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process.
inetinfo.exe is the Microsoft IIS server running, handling ASP.NET requests among other things.When an ASP.NET request is received (usually a file with .aspx extension),the ISAPI filter aspnet_isapi.dll takes care of it by passing the request to the actual worker process aspnet_wp.exe.
Posted by S3 Technology Softwares at 5:08 PM 7 comments
Labels: Interview Questions
Subscribe : Subscribe By Email