barchitect.blogspot.com
Be Architect (www.hyperlinksolutions.net): Difference between aspnet_wp.exe and w3wp.exe
http://barchitect.blogspot.com/2008/08/difference-between-aspnetwpexe-and.html
Be Architect (www.hyperlinksolutions.net). NET, C#, ASP.NET, NHibernate, SQLServer. Difference between aspnet wp.exe and w3wp.exe. Posted by Zafar Ullah - zafarjcp@gmail.com 3:00 AM ASP.NET. So the important thing to note here is that w3wp.exe is not an ASP.NET worker process (unlike aspnet wp.exe) but instead specific to IIS 6.0. August 8, 2008 at 4:01 AM . Thanx for this valuable knowledge. August 8, 2008 at 4:02 AM . Thanx for this valuable knowledge. August 8, 2008 at 4:03 AM . Blogger Tips and Tr...
barchitect.blogspot.com
Be Architect (www.hyperlinksolutions.net): NHibernate - null id in entry (don't flush the Session after an exception occurs)
http://barchitect.blogspot.com/2009/01/nhibernate-null-id-in-entry-dont-flush.html
Be Architect (www.hyperlinksolutions.net). NET, C#, ASP.NET, NHibernate, SQLServer. NHibernate - null id in entry (don't flush the Session after an exception occurs). Posted by Zafar Ullah - zafarjcp@gmail.com 10:43 AM .net. So, the solution that I implemented was to wrap the Save() in a try{} catch{} statement, and if the save failed, immediately close and shutdown the session, handle the error/exception. Then, check if Session.IsOpen when the HTTP request finishes. Subscribe to: Post Comments (Atom).
barchitect.blogspot.com
Be Architect (www.hyperlinksolutions.net): Understanding NHibernate <generator> element
http://barchitect.blogspot.com/2008/07/nhibernate-generator-and-primary-key.html
Be Architect (www.hyperlinksolutions.net). NET, C#, ASP.NET, NHibernate, SQLServer. Understanding NHibernate generator element. Posted by Zafar Ullah - zafarjcp@gmail.com 11:35 AM .net. Every database supports mechanism to define primary keys and numeric sequence generator. so being and Data Access Layer NHibernate also provide mechanism to handle primary keys and numeric sequence generator. Query uses TSQL (Microsoft SQL Server) as its scripting language. What is Primary Key. What is Identity Column.
barchitect.blogspot.com
Be Architect (www.hyperlinksolutions.net): NHibernate: Unexpected row count: 0; expected: 1
http://barchitect.blogspot.com/2009/01/nhibernate-unexpected-row-count-0.html
Be Architect (www.hyperlinksolutions.net). NET, C#, ASP.NET, NHibernate, SQLServer. NHibernate: Unexpected row count: 0; expected: 1. Posted by Zafar Ullah - zafarjcp@gmail.com 6:32 AM .net. Here are some of my experiences when "Unexpected row count: 0; expected: 1" comes and also how can we solve them. 2 Nhibernate seems to have problems when you create multiple transient entities that reference each other, and then try to save just the root entity. To avoid these problems, call. NHibernate: Unexpected ...
barchitect.blogspot.com
Be Architect (www.hyperlinksolutions.net): Converting Hexa To RGB & RGB to Hexa Decimal using C#
http://barchitect.blogspot.com/2008/06/converting-hexa-to-rgb-rgb-to-hexa.html
Be Architect (www.hyperlinksolutions.net). NET, C#, ASP.NET, NHibernate, SQLServer. Converting Hexa To RGB and RGB to Hexa Decimal using C#. Posted by Zafar Ullah - zafarjcp@gmail.com 4:04 AM .net. In order to convert Hexa to RGB and RGB to hexa , out of many here are 2 simple ways! String haxValue = "BDEEC8";. Int argb = int.Parse(haxValue, System.Globalization.NumberStyles.HexNumber);. System.Drawing.Color c = System.Drawing.Color.FromArgb(argb);. String rowBG = "240-250-231";. You may be interested in.
barchitect.blogspot.com
Be Architect (www.hyperlinksolutions.net): Windows Service InstallUtil - Service not showing up in services list
http://barchitect.blogspot.com/2011/08/windows-service-installutil-service-not.html
Be Architect (www.hyperlinksolutions.net). NET, C#, ASP.NET, NHibernate, SQLServer. Windows Service InstallUtil - Service not showing up in services list. Posted by Zafar Ullah - zafarjcp@gmail.com 11:28 PM InstallUtil.exe. Subscribe to: Post Comments (Atom). Is an Information Technology and Business Systems consulting firm located in Islamabad with Particular experties in Web Application Development, Web Site Development, Client Server Applications . ASPNET 2.0 Provider Model. Generic List for NHibernate.
barchitect.blogspot.com
Be Architect (www.hyperlinksolutions.net): How Hibernate / NHibernate Cascade attribute work
http://barchitect.blogspot.com/2008/12/how-hibernate-nhibernate-cascade.html
Be Architect (www.hyperlinksolutions.net). NET, C#, ASP.NET, NHibernate, SQLServer. How Hibernate / NHibernate Cascade attribute work. Posted by Zafar Ullah - zafarjcp@gmail.com 12:57 AM .net. When ever you have a set/bag/collection of child in parent class then its attributes must be inverse = true and cascade = "all-delete-orphan". Validate from frontend that the foreign key value must be given. In your mapping file in child class mark parent field as NotNull=true. This will enforce that value shou...
barchitect.blogspot.com
Be Architect (www.hyperlinksolutions.net): File Downloading in ASP.NET
http://barchitect.blogspot.com/2009/04/file-downloading-in-aspnet.html
Be Architect (www.hyperlinksolutions.net). NET, C#, ASP.NET, NHibernate, SQLServer. File Downloading in ASP.NET. Posted by Zafar Ullah - zafarjcp@gmail.com 10:52 AM .net. Few days back i come accross a problem of file downloading in asp.net. In my situation i have to download any type of file which is uploaded in my application.so when i upload file i save its path and content type in database. System.IO.FileInfo file = new System.IO.FileInfo(strURL);. Meta name="DownloadOptions" content="noopennosave" /.
barchitect.blogspot.com
Be Architect (www.hyperlinksolutions.net): Failed to access IIS metabase.
http://barchitect.blogspot.com/2008/08/failed-to-access-iis-metabase.html
Be Architect (www.hyperlinksolutions.net). NET, C#, ASP.NET, NHibernate, SQLServer. Failed to access IIS metabase. Posted by Zafar Ullah - zafarjcp@gmail.com 12:08 AM ASP.NET. Some time you may come across the following error. Failed to access IIS Matabase". This problem is because you might install iis or reinstall after installation of Visual Studio or .NET Framework. Simply open command prompt from ProgramFiles VS2005 Tools CommandPrompt. Aspnet regiis - i. Subscribe to: Post Comments (Atom). Blogger ...