Explain about consistent programming model in the .NET framework?
Which methods validate all the controls on a page?
How to create a permanent cookie?
WHAT IS polymorphism
What are ASP.NET Web Forms? How is this technology different than what is available though ASP (1.0-3.0)?
What is the function of new view engine in asp.net? : asp.net mvc
Define a web service in .net?
Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe
When would you not use the oleDbConnection object? a) To connect to an SQL 7.0 database. b) To connect to a DB/2 database. c) To connect to an Access database. d) To connect to an SQL 6.5 database.
How to authenticate users using web.config ?
You are using the try? catch block seen in the following code segment, but no exceptions are ever caught by the catch block. What is the problem? SqlConnection cn =new sqlConnection(strSQL); SqlDataSet ds; try { cn.open(); //perform the data processing steps ??.. } catch (OleDbException e) { ?.. } a) The exception class is wrong; it should be sqlErrors. b) The exception class is wrong; it should be sqlSyntaxExceptios. c) The exception class is wrong; it should be sqlExceptions. d) The exception class is wrong; it should be sqlExcptions.
2 Answers Microsoft, Syntax Softtech,
Why viewstate is used in asp.net?
What is the first name space in .netF/W heirarchy