I just posted article about "Economic Slowdown, JOB CUTs and Software Developer." I wish everybody should not to be in situation to read this..... More relaxing jobs are more Normal 0 false false false EN-US X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin-top:0in; ......
SQL Server 2005 Interview Questions 1. What is DESCRIBE command in SQL Server 2005? What is its purpose? How to use it? DESCRIBE is used to see table structure. In SQL server 2005 we can use sp_columns, sp_tables or sp_help. sp_columns will show list of columns and its details in table. sp_tables will show list of tables in the databas 2. What is RDBMS? Relational Data Base Management Systems (RDBMS) are database management systems that maintain data records and indices in tables. Relationships created ......
Related Post: Talent vs Attitude – Harsha Bhogle Association, Aggregation, Composition object relationship What we can learn from Babies ASP.NET 2.0 Interview Questions 1. What is the name of the property of ASP.NET page that you can query to determine that a ASP.NET page is being requested not data being submitted to web server? A. FirstGet B. Initialized C. IncludesData D. IsPostBack IsPostBack 2. While creating a Web site with the help of Visual Studio 2005 on a remote computer that does not have ......
VB.NET and C# Syntax Comparison Program Structure Comments Data Types Constants Enumerations Operators Choices Loops Arrays Functions Strings Exception Handling Namespaces Classes / Interfaces Constructors / Destructors Using Objects Structs Properties Delegates / Events Console I/O File I/O Interview Questions | ASP.NET Interview Questions | .NET Interview Questions ASP.NET 2.0 Interview Questions | .NET 2.0 Interview Questions | SQL Server 2005 Interview Questions VB.NET Program Structure C# Imports ......
Items collection cannot be modified when the DataSource property is set. This exception “Items collection cannot be modified when the DataSource property is set.” occurs when you trying to add some text like “Select” or “None” in combo box (drop down list) in .NET framework window form control. There is no such way to add items in combo box’s items property after you set DataSource. To avoid this you can add one more item in your datasource. For example if you are trying to bind drop down list through ......
ASP.NET Web Services Interview Questions Which page is used to display the link of webmethods in ASP.NET web services? If your webmethod is having return type is void and while consuming the webservices you don’t want to wait the complete execution to that method. How would you achive this? How you would make your web services to participate in transaction? What would be key requirement to make ASP.NET web application an ASP.NET Web Services? What is the primary purpose of Namespace property, which ......
ASP.NET textbox multiline maxlength multiline textbox with maxlength in asp.net According to msdn in ASP.NET you can not use textbox’s MaxLength property with Multiline Mode. But I was required in my current application. So I search google and other search engines and finally got few solution. I am simply compiling all of the solutions in single post. Solution Number 1 for ASP.NET TextBox.MultiLine maxlength Add following javascript function Count(text,long) { var maxlength = new Number(long); // ......
ASP.NET Web Services Interview Questions Which method is used to serialize an object into an XML document from Xmlserializer class? How to specify the Web Service compile with the WS-I basic profile? For SOAP (Simple Object Access Protocol) message formatting what is the purpose of Encoded value? What are the three main section of SOAP (Simple Object Access Protocol) message? What all steps are required to create an application to test your ASP.NET web services? How you can verify the result of your ......
ASP.NET Web Services Interview Questions How do you configure the SOAP (Simple Object Access Protocol) to associate with particular web method? Which method of SoapExtension class is used to intercept the incoming stream and determine the stage? Which is a true statement for BeforeSerialize stage of an in-coming request message occurs? What value can be used when setting the direction of the SOAP header? Which is not the step to create custom SOAP (Simple Object Access Protocol) header class? What ......
ASP.NET Web Services Quiz Which page is used to display the link of webmethods in ASP.NET web services? If your webmethod is having return type is void and while consuming the webservices you don’t want to wait the complete execution to that method. How would you achive this? How you would make your web services to participate in transaction? What would be key requirement to make ASP.NET web application an ASP.NET Web Services? What is the primary purpose of Namespace property, which is used in WebServices ......