Google

Friday, February 1, 2008

ASP.NET Question And Answer 2

28. W hat 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?
29. W hat base class do all W eb Forms inherit from?
30. W hat method do you use to explicitly kill a user s session?
31. How do you turn off cookies for one page in your site?
32. W hich two properties are on every validation control?
33. W hat tags do you need to add within the asp:datagrid tags to bind columns
manually?
34. How do you create a permanent cookie?
35. W hat tag do you use to add a hyp erlink column to the DataGrid?
36. W hat is the standard you use to wrap up a call to a W eb service
37. W hich method do you use to redirect the user to another page without performing
a round trip to the client?
38. W hat is the transport protocol you use to call a W eb service SOAP
39. True or False: A W eb service can only be written in .NET
40. W hat does W SDL stand for?
41. W hat property do you h ave to set to tell the grid which page to go to when using
the Pager object?
42. W here on the Internet would you look for W eb services?
43. W hat tags do you need to add within the asp:datagrid tags to bind columns
manually.
44. W hich property on a Combo Box do you set with a column name, prior to setting
the DataSource, to display data in the combo box?
45. How is a property design ated as r ead-only?
46. W hich control would you use if you needed to make sure the values in two
different controls matched?
47. True or False: To test a W eb service you must create a windows application or
W eb application to consume this service?
48. How many classes can a single .NET DLL contain?


NET Framework interview questions and interviewer's notes
.NET framework overview


1. Has own class libraries. System is the main namespace and all other namespaces
are subsets of this.
2. It has CLR(Common language runtime, Common type system, common language
specification)
3. All the types are part of CTS and Object is the base class for all the types.
4. If a language said to be . net complaint, it should be compatible with CTS and
CLS.
5. All the code compiled into an intermediate language by the .Net language
compiler, which is nothing but an assembly.
6. During runtime, JIT of CLR picks the IL code and converts into PE machine code
and from there it processes the request.
7. CTS, CLS, CLR

No comments: