syedtayyabali

Stories kicked by syedtayyabali

Serialization/Deserialization (programming360.blogspot.com)

submitted by syedtayyabalisyedtayyabali(135) 11 months, 21 days ago

Serialization is the process of converting object into linear sequence of byte, while deserialization is constructing object from that serialized linear sequence of byte. read more...

add a comment |category: |Views: 3

tags: another

Architecture Journal – Issue 22 – Business Intelligence Architecture(blogs.msdn.com)

submitted by bobfamiliarbobfamiliar(3648) 2 years, 4 months ago

Several articles dealing with the planning, architecture and design of business intelligence solutions tha tleverage a SOA principles. read more...

5 comments |category: |Views: 244

tags: another

Clickable GridView row(fun2code.blogspot.com)

submitted by naveenjnaveenj(50) 2 years, 7 months ago

makes a gridviewrow clickable. handles eventvalidation error and handles postback read more...

add a comment |category: |Views: 56

tags: another

Design Patterns – Using the Abstract Factory Pattern in C#(dotnetcube.com)

submitted by dncdudedncdude(1350) 2 years, 8 months ago

The Abstract Factory Pattern provides an interface for creating families of related objects without specifying their concrete classes. The Abstract Pattern makes sure that the client does not know anything about the objects being created. The pattern hides the implementation of the product definitions and their class names and the only way the client can create a product is through the factory. read more...

add a comment |category: |Views: 452

tags: another

11 books for a .NET Summer reading list(codeclimber.net.nz)

submitted by javeryjavery(5523) 2 years, 9 months ago

A great list of books to read this summer (its almost over though so get to it) read more...

2 comments |category: |Views: 848

tags: another

UI Prototyping: simplify your life with Balsamiq(nablasoft.com)

submitted by D_GuidiD_Guidi(280) 2 years, 9 months ago

"This tool is specifically designed to allow even non-non professional graphic artists to design and prototype interfaces and functionality pretty fast. It’s very intuitive and easy to use and allows everyone – with a minimal effort – to draw a detailed scheme of what the UI will resemble to." read more...

1 comment |category: |Views: 608

tags: another

Introducing CodePaste.NET(west-wind.com)

submitted by rstrahlrstrahl(7226) 2 years, 10 months ago

As a learning experience for taking ASP.NET MVC for a spin I recently created a new site that has now gone live: Codepaste.NET which provides a public location to post code snippet and link them from social network sites that have limited input lengths and make code discussions otherwise difficult. The site's a work in process, but I hope it's useful to some of you for sharing and discussing small blocks of code online. read more...

2 comments |category: |Views: 407

tags: another

System.String Vs System.Text(programming360.blogspot.com)

submitted by syedtayyabalisyedtayyabali(135) 2 years, 10 months ago

Strings of type System.String are immutable (read-only) in .NET because its value cannot be modified once it has been created. That means any change to a string causes the runtime to create a new string object and abandon the old one. That happens invisibly. Following code allocates three new strings in memory: Example: string str = "This is Programming360 Blog. "; str += "It educate technical communities. "; str += "It believes, one concept at a time..."; Only the last string has a reference; the other two will be disposed of during garbage collection. Avoiding these types of temporary strings helps avoid unnecessary garbage collection, which improves performance. There are several ways to avoid temporary strings: * Use the String class's Concat, Join, or Format methods to join multiple items in a single statement. * Use the StringBuilder class to create dynamic (mutable) strings. The StringBuilder solution is the most flexible because it can span multiple statements. The default constructor creates a buffer 16 bytes long, which grows as needed. You can specify an initial size and a maximum size if you like. Example: System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append("This is Programming360 Blog. "); sb.Appen("It educate technical communities. ";); sb.Appen("It believes, one concept at at time..."); read more...

add a comment |category: |Views: 24

tags: another

SubForum To Be Designed Using the 960 Grid System(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 10 months ago

SubForum is an open source discussion forum using the ASP.NET MVC framework. However, we are going to use the 960 Grid System to develop the interface. The 960 Grid System is basically web design for 1024×768 display. Word is 800×600 is dead and 960 pixels is the new gold standard. The current interface was put together using css only. We are not putting any of the styling into the controls or aspx pages. All styling will leverage CSS and will not be embedded into any component, control, or page. We believe this will allow designers more freedom to develop themes which SubForum will support. read more...

add a comment |category: |Views: 13

tags: another

Simple Tag Cloud Implementation for ASP.NET MVC(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 10 months ago

I read this post by Mikesdotnetting a few days ago when I was trying to implement a Tag Cloud for our open source forum project SubForum. Although it was a good post and got me started on how to do it, I found it a bit complex for what I needed. One of the complications that I saw was obviously the Entity Framework and the data layer that Mike talked about to build the Tag Cloud. The data I needed was quite simple and didn’t need to be that complex. I decided to implement a simple ASP.NET MVC Tag Cloud using plain SQL and a simple table structure. Also, I did not want categories. I just wanted posts and post tags, so that my Tag Cloud could more accurately represent the Tags in the posts. read more...

add a comment |category: |Views: 131

tags: another

WPF C1DataGrid how to tab or shift tab(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 10 months ago

I am working on a WPF project at work and we purchased a couple components from a couple of different component vendors. One of them is ComponentOne and we have used the C1DataGrid in several places. Recently a bug was submitted that said they could not tab or shift tab through the grid and have it select the next or previous row automatically when the beginning or end of the row is hit. read more...

add a comment |category: |Views: 22

tags: another

Some Advantages to Using Stored Procedures(wijix.com)

submitted by syedtayyabalisyedtayyabali(135) 2 years, 11 months ago

Syed Ali discussed stored procedures and why use them. I posted my comments there but thought it was worthy of an entry in the blog. There are some things I hate about them as well but I feel they have some very distinct advantages too so they are a necessary evil. I don't see how you can argue against stored procedures. There are drawbacks just as there is with any technology but the advantages outweigh the disadvantages. read more...

add a comment |category: |Views: 14

tags: another

ACID Properties(programming360.blogspot.com)

submitted by syedtayyabalisyedtayyabali(135) 2 years, 11 months ago

To ensure integrity of the data, we require that the database system maintain the following properties of the transactions(these properties are also called ACID properties of a transaction.) read more...

add a comment |category: |Views: 5

tags: another

The Only Pattern for Data Access is There Are No Patterns for Data Acc(theahmadblog.blogspot.com)

submitted by ahmadadnanahmadadnan(30) 2 years, 11 months ago

Over the years of software development, one thing that has eluded most developers is Data Access. Yes, I mean writing code that accesses a database from your application. It is an age old problem since the days when data storage and computing were invented. We would have thought that by now we would have been able to come up with a clean universal pattern for data access such as the M-V-C pattern for User Interfaces or the Singleton pattern or the Factory pattern. read more...

add a comment |category: |Views: 14

tags: another

Some thoughts on Stored Procedure(programming360.blogspot.com)

submitted by syedtayyabalisyedtayyabali(135) 2 years, 11 months ago

I read Paul Nielsen post on stored procedure. According to him stored procedures are good for application. He is not only talking about logical or business process stored procedure, but he also encouraged to developer for CRUD stored procedures. I think, it is good idea. There is no harm to use them. If database server have that capability, then why not CRUD stored procedures. read more...

1 comment |category: |Views: 18

tags: another

Regional Conflicts(wijix.com)

submitted by syedtayyabalisyedtayyabali(135) 2 years, 11 months ago

We have all come to love our IDE features and take them from granted nowadays. Features like intellisense, code-complete, refactoring and code organization and of course the use of Regions. The #region and #endregion keywords basically provide the ability to hide code and collapse it into a short word or phrase provided at the beginning of the block with the IDE showing a plus sign to expand and collapse the region. Eg: #region Public Methods #endregion read more...

add a comment |category: |Views: 11

tags: another