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 ......
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 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 ......
ASP.NET Web Services Quiz 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 ......
ASP.NET Web Services Quiz 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 kind of information ......
ASP.NET Interview Questions 1. What’s the difference between Response.Write() and Response.Output.Write()? 2. What is the sequence of event firing during page load of asp.net page life cycle? 3. For intranet based Web application reads comma-delimited text files. The files reside in a subdirectory root directory. Users are not allowed to navigate directly to these files in a Web browser unless they are members of the Accounting role. You need to write an ASP.NET HTTP handler that will use the FileAuthorizationModule ......