shivamdotnet.blogspot.com
Shivam.Net: January 2007
http://shivamdotnet.blogspot.com/2007_01_01_archive.html
Tuesday, January 09, 2007. SOAP Exception, with trace or without. When a Web service returns a SOAP Exception, you could decide on whether to pass on the trace or not. If the web service consumer could be indicated with the trace, so as to help in fixing the problem then pass on the trace. Or when business layer validations are thrown as exception all you need is "Server was unable to process - User name is invalid", instead of the lengthy SOAP exception. Posted by K. Gopi at 3:30 AM.
shivamdotnet.blogspot.com
Shivam.Net: May 2006
http://shivamdotnet.blogspot.com/2006_05_01_archive.html
Friday, May 26, 2006. Batch Build - VS.Net 2003. Batch build option is available in VS.Net 2005 [Solution with C# projects], that allows you to build for all configuration. User could select multiple project and various build configuration. But "Batch Build" option would not be available even if one VB.Net project is added to the solution. Posted by K. Gopi at 7:57 AM. Trying to do a system tray application,. 1) ShowInTaskbar property of the window should be set to false. 3) Add NotifyIcon object. Visual...
shivamdotnet.blogspot.com
Shivam.Net: December 2005
http://shivamdotnet.blogspot.com/2005_12_01_archive.html
Thursday, December 08, 2005. Setting Name for controls created using Javascript. When you create input controls dynamically using javascript like. Var inputValue = document.createElement('input');. And try to set the id using. InputValue.setAttribute('id', 'controlName');. Works fine, creates and control added is input id=controlName. But when you try to set the name attribute, does not reflect in the control, reason being IE does not allow you to change the name of the control, after it is created.
shivamdotnet.blogspot.com
Shivam.Net: August 2007
http://shivamdotnet.blogspot.com/2007_08_01_archive.html
Friday, August 24, 2007. CLR has been unable to transition from COM context for 60 seconds. This problem was bugging me, and this blog provided me solution for it. Http:/ wpfwonderland.wordpress.com/2007/08/16. Posted by K. Gopi at 9:05 AM. View my complete profile. CLR has been unable to transition from COM context. SOAP Exception, with trace or without. Class doesnt support automation. Form Authentication Login Page. Batch Build - VS.Net 2003. HttpRuntime - Max request length.
shivamdotnet.blogspot.com
Shivam.Net: July 2005
http://shivamdotnet.blogspot.com/2005_07_01_archive.html
Monday, July 04, 2005. Rendering to Firefox from ASP.NET. Have u faced problems with sizing and placement of asp.net server controls in fire fox, then check this out. Http:/ www.asptoday.com/Content.aspx? Posted by K. Gopi at 8:41 PM. View my complete profile. CLR has been unable to transition from COM context. SOAP Exception, with trace or without. Class doesnt support automation. Form Authentication Login Page. Batch Build - VS.Net 2003. HttpRuntime - Max request length.
shivamdotnet.blogspot.com
Shivam.Net: August 2005
http://shivamdotnet.blogspot.com/2005_08_01_archive.html
Wednesday, August 31, 2005. Accessing user controls from code behind. You could access user controls from code behind to add dynamic controls. Add a place holder in user control, and make it public in code-behind. In application pages, code-behind declare an object of type user control. User control used to add links. Dim pageMyControl As MyUserControl. Dim lnkNewLink As WebControls.LinkButton. Dim newLinkButtonIndex as Int32. Get the user control. If Not pageMyControl Is Nothing Then. DefaultProperty("T...
shivamdotnet.blogspot.com
Shivam.Net: June 2005
http://shivamdotnet.blogspot.com/2005_06_01_archive.html
Wednesday, June 29, 2005. Access AppSetting through a Class. Heres another way of accessing AppSettings. Add a Class to the project like this one. Public Shared ReadOnly Property ConnectionInfo() As String. In your project you could access the appsettings using. Posted by K. Gopi at 11:30 PM. Thursday, June 23, 2005. Enter key press in Web Forms. Heres the way to handle enter key buttons in forms. Add a onKeyPress event handler to body tag in aspx page. If (window.event.keyCode = 13).
shivamdotnet.blogspot.com
Shivam.Net: June 2006
http://shivamdotnet.blogspot.com/2006_06_01_archive.html
Thursday, June 01, 2006. When you add custom configurations in application config, then you will have to provide configuration handlers in config sections, when you dont want to handle them seperately, instead plan to read the xml and get values use. Add section with type of System.Configuration.IgnoreSectionHandler, System for the custom config that you want to ignore. This would prevent the system from throwing exception. Posted by K. Gopi at 3:55 AM. View my complete profile.
shivamdotnet.blogspot.com
Shivam.Net: October 2006
http://shivamdotnet.blogspot.com/2006_10_01_archive.html
Friday, October 27, 2006. Class doesn't support automation. Annoying problem - Class doesn't support automation: JScript Error. Every time I browse the Internet with IE, had to live up with this error, was really annoying. As usual was not on the top of priority so didnt look into that as an issue. Today I thought this is the day, lets put an end to it. Looked for help on Net using gooooogle and ended up with. Http:/ www.techgroup21.com/sub2page.asp? And got rid of it :-). Posted by K. Gopi at 3:13 AM.