sandy060583

Stories kicked by sandy060583

LINQ to SQL vs. ADO.NET Entity Framework (ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 1 year, 5 months ago

Hi all, recently I was surfing MSDN forum & reading discussion on "Linq to SQL vs ADO.NET Entity Framework". There I have found very good conversations between Michael Pizzo and Kavin Hoffman on the above given topic, so I feel why not share this information to my readers also. read more...

add a comment |category: |Views: 24

tags: another

Visual Studio LightSwitch « Ramani Sandeep's Blog(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 1 year, 8 months ago

Microsoft has announced a new product called Microsoft Visual Studio LightSwitch, which the company claims is the simplest way to build business applications for the desktop and cloud. LightSwitch is a new member of the Visual Studio family focused on making it easy to develop line-of-business applications. read more...

add a comment |category: |Views: 14

tags: another

Sorting Table Columns with jQuery (ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 1 year, 8 months ago

I always heard about sorting table data & read lots of article that explain how to achieve it using jquery. You will also find lots of plugins available for sorting table data like Table sorter, Flexigrid , jqGrid and many more. Along with sorting feature it also support many more features like paging, resizable columns, cool themes, search and many more… But I feel that there must be... read more...

add a comment |category: |Views: 17

tags: another

Code Interaction in Silverlight(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 1 year, 10 months ago

In this article, we’ll learn how Silverlight can fire off JavaScript code,and how JavaScript code can trigger a method in your Silverlight application. read more...

add a comment |category: |Views: 10

tags: another

Animation in Silverlight(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 1 year, 11 months ago

In this Article, you will be learning the fundamental concepts of Animations in Silverlight Application, which includes Animation Types, namespace details, classes, objects used, implementation of different types of animations with XAML and with C# code. read more...

add a comment |category: |Views: 5

tags: another

DNJ – Dot Net jQuery(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years ago

DNJ is Open Source framework to make use of jQuery in an ASP.NET application easier. This article is a quick guide to some features of the DNJ framework. DNJ is an Open Source framework that helps using jQuery with ASP.NET applications. It provide helper functions, an AJAX extender, a transparent RPC, and an implementation of the jQuery UI components as ASP.NET web controls. read more...

add a comment |category: |Views: 11

tags: another

MultiSelect Dropdown in ASP.NET(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 3 months ago

In this article, I will show you a different way of doing a multi-select in an ASP.NET page. I will keep this article short and sweet so you can just use the code in your applications. We are going to put our CheckBoxList ASP.NET control inside an HTML div object. I have also added code to support changing the background color of the selected row. read more...

add a comment |category: |Views: 261

tags: another

Cascading DropDownLists With ASP.NET and jQuery(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 3 months ago

Cascading drop down lists is a really nice feature for web developers. I thought it was time to write an article on how to do this using ASP.NET and jQuery. Well here’s one way of doing it. Before we get started, this example uses the latest version of jQuery which is 1.3.2. That can be downloaded from here. read more...

add a comment |category: |Views: 39

tags: another

CheckBoxList validation using JQuery « Ramani Sandeep's Blog(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 3 months ago

Every ASP.NET developer needs validation on CheckBoxList that can be one of these two:Check for RequiredFieldCheck for Maximum Selection LimitCheck for RequiredField I will be using JQuery to interecept the click event of each single Checkbox inside the CheckBoxList and then update a hidden TextBox control which has a RequiredFieldValidator associated to it, read more...

add a comment |category: |Views: 83

tags: another

.Net Memory Management & Garbage Collection « Ramani Sandeep's Blog(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 4 months ago

The Microsoft .NET common language runtime requires that all resources be allocated from the managed heap. Objects are automatically freed when they are no longer needed by the application. When a process is initialized, the runtime reserves a contiguous region of address space that initially has no storage allocated for it. This address space region is the managed heap. The heap also maintains a pointer. This pointer indicates where the next object is to be allocated within the heap. Initially, the pointer is set to the base address of the reserved address space region. read more...

add a comment |category: |Views: 11

tags: another

Access Viewstate across pages in ASP.NET « Ramani Sandeep's Blog(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 4 months ago

There was one question during my recent work in one of my ASP.NET Project. “Is it possible to access the ViewState variable of one page on another page?” My answer was “No” . Because i have read in books that Viewstate is page specific, it is available only on the same page on which it was created.Once you redirect to another page, the previous page’s viewstate is no longer accessible. But that is not true. Yes, we can access the viewstate variables across pages. This is only possible if Cross Page Posting or Server.transfer is used to redirect the user to other page. If Response.redirect is used, then ViewState cannot be accessed across pages. read more...

1 comment |category: |Views: 6

tags: another

ASP.NET Dynamic Data Support « Ramani Sandeep's Blog(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 4 months ago

ASP.NET Dynamic Data brings major usability and RAD development changes to the existing ASP.NET data controls. RAD development is significantly increased by the use of a rich scaffolding framework. After you add a LINQ to SQL or Entity Framework data model to a project, you can simply register it with Dynamic Data. The result is a fully functional Web site. read more...

add a comment |category: |Views: 6

tags: another

What is new in ASP.Net 4 « Ramani Sandeep's Blog(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 4 months ago

This article is an introduction to new features of Visual Studio 2010 (ASP.Net 4.0). Code Snippets New Profiles Generate From Usage Multi-Targeting MultiMonitor Code Navigation in Class Files Code Navigation View Call Hierarchy Code Identifier Highlighting Intellisense Improvements EnablePersistedSelection Web.Config Transformation URL Routing Add Reference Dialog Compressing Session Values I... read more...

add a comment |category: |Views: 8

tags: another

string to date conversion asp.net « Ramani Sandeep's Blog(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 4 months ago

There has been always a Problem in working DateTime variable in ASP.NET when you are working on different environments. So I feel that why not make some short of solution for that. Here i came up with some result. May be there is better alternative. Create one common class or if you have in your project than all you need to create is static method to convert string into DateTime with ‘MM/dd/yyyy’ Format. read more...

add a comment |category: |Views: 7

tags: another

Important Silverlight Tutorials for Beginners « Ramani Sandeep's Blog(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 5 months ago

What is the need of WPF when we had GDI, GDI+ and DirectX? How does hardware acceleration work with WPF? Does that mean WPF has replaced DirectX? So can we define WPF in a precise way? What is XAML? So is XAML meant only for WPF ? read more...

add a comment |category: |Views: 40

tags: another

Lazy Loading(ramanisandeep.wordpress.com)

submitted by sandy060583sandy060583(135) 2 years, 5 months ago

Lazy loading is a design pattern commonly used in computer programming to defer initialization of an object until the point at which it is needed. It can contribute to efficiency in the program’s operation if properly and appropriately used. The opposite of lazy loading is Eager Loading. read more...

add a comment |category: |Views: 31

tags: another