What is autopostback in dropdownlist in asp net?
What are the validation controls available in ASP.NET?
version information is mentioned in which file
Explain code snippet to register exception filters from controller?
What is server infrastructure?
How do you add a javascript function for a link button in a datagrid?
True or False: A Web service can only be written in .NET?
How do cookies work? Give an example of their abuse.
What are Authentication mechanisms in .Net?
For which does this Codebehind="MyCode.aspx.cs" is relevent to ?
What are the intrinsic objects present in ASP.NET
How many classes can a single .NET DLL contain?
Below is a code extract from an ASP.Net application. The code basically reads data from the “name” field in the “members” table and prints them onto the webpage. Using the assumptions provided, fill in the 4 blanks below so that the code will run correctly. ‘Assumptions: ‘conn_str is a variable that holds the connection string to the database ‘Objects dbcomm and dbread are already declared earlier dbcomm = New OleDbCommand("SELECT name FROM members", conn_str) dbread = dbcomm._______________ _____________________ response.write(_______________) _____________________ dbread.Close()