unhandled exception
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...
I did quick test to check which browser eats more memory. My test is not so robust. I only open 4 similar pages into all the browser and check the memory uses into Window task manager. What I found Safari eats more memory then IE 7 and least memory consume by Firefox. I am not saying this test is a sufficient test for browsers. Here is snapshot. Interview Questions | ASP.NET Interview Questions | .NET Interview Questions ASP.NET 2.0 Interview Questions | .NET 2.0 Interview Questions | SQL Server...
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...
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); //...
Mutex Could not be Created. Some time while running ASP.NET web application through Visual Studio you might receive following error Server Error in Application. Mutex could not be created. Few workaround for “Mutex Could not be Created.” 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 “Mutex Could not be Created.” Solution number 1 1. If your visual studio 2005 is open,...
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...
Association, Aggregation, Composition update - Please read updated article on Association, Aggregation, Composition When we have only one relationship between objects, that is called Association. Aggregation and Composition both are specialized form of Association. Composition is again specialize form of Aggregation. Association is a relationship where all object have their own lifecycle and there is no owner. Let’s take an example of Teacher and Student. Multiple students can associate with single...
To resolve this there are some work workaround Re-run the aspnet_regsql.exe. If first one is not working for you then you have to “Add the user to the aspnet_Membership_FullAccess database role.” -- Add user to database role USE aspnetdb GO sp_addrolemember 'aspnet_Membership_FullAcce... 'Network Service' “Network Service” is your user name Related Post: Association, Aggregation, Composition object relationship Talent vs Attitude – Harsha Bhogle What we can learn from Babies...
Static modifier used with the class, field, method, properties, operator, event and constructors. We can not use static modifier with indexers, destructors. When we use static modifier with the members then they are no more part of instance of a class. Static members are a part of class itself. For example: public class MyClass { public struct MyStruct { public static int x = 100; } } //To refer to the static member x, use the fully qualified name MyClass.MyStruct.x Consider a class that represents...
Full unhandled exception Archive