sandy060583
Name: sandy060583
Score: 373.2
Last Seen: 36 days, 3 hours, 31 minutes ago
Member Since: 16 December, 2009
DotNetShoutout
atom rss
4
shouts

CheckBoxList validation using JQuery « Ramani Sandeep's Blog

published 35 days, 1 hour, 55 minutes ago posted by sandy060583sandy060583 36 days, 3 hours, 40 minutes ago
Friday, February 12, 2010 11:52:09 AM GMT Thursday, February 11, 2010 10:06:28 AM GMT
CheckBoxList validation using JQuery Posted by Ramani Sandeep on February 10, 2010 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, when a Ch... (more)
category: Ajax | clicked: 11 | comment | | source: ramanisandeep.wordpress.com
2
shouts

Using Virtual Earth control with a Web-Service « Ramani Sandeep's Blog

posted by sandy060583sandy060583 39 days, 4 hours, 43 minutes ago
Monday, February 08, 2010 9:03:53 AM GMT
Using Virtual Earth control with a Web-Service Posted by Ramani Sandeep on February 8, 2010 This post is a tutorial on how to create a web-service which can be called from java-script and then continues on to show you how to use it with the Virtual Earth map control. Read more Hope this helps Possibly related posts: (automatically generated)Silverlight 2 End to End Tutorial: Building a Digg Search ClientNavigate Virtual Earth With Nintendo WiiV... (more)
category: ASP.NET | clicked: 1 | comment | | source: ramanisandeep.wordpress.com
3
shouts

Writing Efficient SQL: Set-Based Speed Phreakery « Ramani Sandeep's Blog

posted by sandy060583sandy060583 39 days, 4 hours, 47 minutes ago
Monday, February 08, 2010 8:59:21 AM GMT
Writing Efficient SQL: Set-Based Speed Phreakery Posted by Ramani Sandeep on February 8, 2010 SQL is a declarative language, designed to work with sets of data. However, it does support procedural, "row-by-row" constructs in the form of explicit cursors, loops and so on. The use of such constructs often offers the most intuitive route to the desired SQL solution, especially for those with backgrounds as application developers. Unfortunately, th... (more)
category: SQL | clicked: 1 | comment | | source: ramanisandeep.wordpress.com
4
shouts

Simple task Scheduling using Global.asax « Ramani Sandeep's Blog

posted by sandy060583sandy060583 44 days, 3 hours, 34 minutes ago
Wednesday, February 03, 2010 10:12:25 AM GMT
Simple task Scheduling using Global.asax Posted by Ramani Sandeep on February 1, 2010 A frequent requirement for ASP.NET developers is to schedule tasks at regular intervals. This can include site maintenance tasks, like cleaning up old files, emailing newsletters on a schedule etc. This article examines one easy option for managing tasks like these without having to configure external tools, and ... (more)
category: ASP.NET | clicked: 5 | comment | | source: ramanisandeep.wordpress.com
6
shouts

Create an ASP.NET TextBox Watermark Effect using jQuery « Ramani Sandeep's Blog

published 43 days, 2 hours, 26 minutes ago posted by sandy060583sandy060583 44 days, 3 hours, 35 minutes ago
Thursday, February 04, 2010 11:21:05 AM GMT Wednesday, February 03, 2010 10:11:18 AM GMT
Create an ASP.NET TextBox Watermark Effect using jQuery Posted by Ramani Sandeep on February 1, 2010 This short article demonstrates how to create a watermark effect on your TextBox and display instructions to users, without taking up screen space. Note that for demonstration purposes, I have included jQuery code in the same page. Ideally, these resources should be created in separate folders for maintainability. \ Read more Possibly related posts: (a... (more)
category: Ajax | clicked: 48 | comment | | source: ramanisandeep.wordpress.com
1
shouts

Duwamish 7.0 « Ramani Sandeep's Blog

posted by sandy060583sandy060583 46 days, 5 hours, 59 minutes ago
Monday, February 01, 2010 7:47:13 AM GMT
Duwamish 7.0 Posted by Ramani Sandeep on January 19, 2010 Duwamish 7.0 is a multi-tier, distributed enterprise application built specifically for the Microsoft .NET Platform. Its design, development, and deployment provide insight into how developers can leverage various features of the .NET Platform to build reliable, scalable, and well-performing applications. Overview Duwamish Books Inc. is a fi... (more)
category: Architecture | clicked: 1 | comment | | source: ramanisandeep.wordpress.com
8
shouts

Cascading DropDownLists With ASP.NET and jQuery « Ramani Sandeep's Blog

published 45 days, 1 hour, 46 minutes ago posted by sandy060583sandy060583 46 days, 6 hours ago
Tuesday, February 02, 2010 12:00:23 PM GMT Monday, February 01, 2010 7:46:12 AM GMT
Cascading DropDownLists With ASP.NET and jQuery Posted by Ramani Sandeep on January 25, 2010 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 full article here : http://www.dotnet... (more)
category: Ajax | clicked: 14 | comment | | source: ramanisandeep.wordpress.com
8
shouts

Patterns for Great Architecture « Ramani Sandeep's Blog

published 45 days, 1 hour, 46 minutes ago posted by sandy060583sandy060583 46 days, 6 hours, 1 minute ago
Tuesday, February 02, 2010 12:00:23 PM GMT Monday, February 01, 2010 7:45:36 AM GMT
Patterns for Great Architecture Posted by Ramani Sandeep on January 28, 2010 These concepts can be applied to any Application which is a good candidate for a SaaS application. Contents:                       SaaS- Introduction SaaS -Challenges SaaS -Solution to challenges SaaS- Introduction A SaaS application can be defines as any “Software deployed as a service and accessed using internet technologies”. In order t... (more)
category: Architecture | clicked: 36 | comment | | source: ramanisandeep.wordpress.com
8
shouts

MultiSelect Dropdown in ASP.NET « Ramani Sandeep's Blog

published 46 days, 2 minutes ago posted by sandy060583sandy060583 46 days, 6 hours, 2 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Monday, February 01, 2010 7:45:06 AM GMT
MultiSelect Dropdown in ASP.NET Posted by Ramani Sandeep on January 29, 2010 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 ... (more)
category: ASP.NET | clicked: 53 | comment | | source: ramanisandeep.wordpress.com
2
shouts

Best Practices for Speeding Up Your Web Site « Ramani Sandeep's Blog

posted by sandy060583sandy060583 46 days, 6 hours, 2 minutes ago
Monday, February 01, 2010 7:44:19 AM GMT
Best Practices for Speeding Up Your Web Site Posted by Ramani Sandeep on January 30, 2010 The Exceptional Performance team has identified a number of best practices for making web pages fast. The list includes 34 best practices divided into 7 categories. 1) Content Minimize HTTP Requests Reduce DNS Lookups Avoid Redirects Make Ajax Cacheable Post-load Components Preload Components Reduce the Number of DOM Elements Split Components Across Domains Minimize the Number ... (more)
category: ASP.NET | clicked: 4 | comment | | source: ramanisandeep.wordpress.com
4
shouts

.Net Memory Management & Garbage Collection « Ramani Sandeep's Blog

posted by sandy060583sandy060583 57 days, 22 hours, 59 minutes ago
Wednesday, January 20, 2010 2:47:52 PM GMT
.Net Memory Management & Garbage Collection Posted by Ramani Sandeep on January 20, 2010 I have seen one video from red-gate about the memory management in .net when I was surfing about ANTS memory profiler. So I thought why not I create article based on this facts & help others to know how Garbage collector actually works. Introduction The Microsoft .NET common language runtime requires that all resources be allocated from the managed heap. Obje... (more)
category: Foundation | clicked: 5 | comment | | source: ramanisandeep.wordpress.com
2
shouts

Access Viewstate across pages in ASP.NET « Ramani Sandeep's Blog

posted by sandy060583sandy060583 69 days, 58 minutes ago
Saturday, January 09, 2010 12:48:32 PM GMT
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 long... (more)
category: ASP.NET | clicked: 4 | comment | | source: ramanisandeep.wordpress.com
2
shouts

ASP.NET Dynamic Data Support « Ramani Sandeep's Blog

posted by sandy060583sandy060583 69 days, 21 hours, 2 minutes ago
Friday, January 08, 2010 4:44:34 PM GMT
ASP.NET Dynamic Data Support Posted by Ramani Sandeep on January 8, 2010 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. Full CRUD (create, read, update, and delete)... (more)
category: ASP.NET | clicked: 2 | comment | | source: ramanisandeep.wordpress.com
9
shouts

How can I find ChildControls on ASP.NET Pages within a MasterPage?

published 72 days, 3 hours, 35 minutes ago posted by pmourfieldpmourfield 73 days, 18 hours, 11 minutes ago
Wednesday, January 06, 2010 10:12:08 AM GMT Monday, January 04, 2010 7:35:42 PM GMT
I know this isn't really exciting or cutting edge, but hopefully you'll find it useful. Occasionally I need to use the FindControl method on an ASP.NET WebForms page to locate a particular control. Recently I needed to do the same on a web site was using MasterPages which causes the Page.FindControl to not find thte controls on the page as you would expect. This is because the Page object is now contained in a MasterPage, so you have to drill down the control heirarchy. In this case I was able to solve m... (more)
category: ASP.NET | clicked: 43 | comment | | source: www.mourfield.com
12
shouts

ASP.NET 4 SEO Improvements (VS 2010 and .NET 4.0 Series) - Scott Guthrie

published 71 days, 3 hours, 49 minutes ago posted by jantujantu 73 days, 3 hours, 39 minutes ago
Thursday, January 07, 2010 9:58:06 AM GMT Tuesday, January 05, 2010 10:07:52 AM GMT
This is the thirteenth in a series of blog posts I’m doing on the upcoming VS 2010 and .NET 4 release.  Today’s post covers some of the improvements being made around Search Engine Optimization (SEO) with ASP.NET 4.Why SEO? Search engine optimization (SEO) is important for any publically facing web-site.  A large percentage of traffic to sites now comes from search engines, and... (more)
category: ASP.NET | clicked: 64 | comment | | source: weblogs.asp.net
tags: .NET, ASP.NET, ScottGu, Visual Studio
2
shouts

What is new in ASP.Net 4 « Ramani Sandeep's Blog

posted by sandy060583sandy060583 73 days, 4 hours, 53 minutes ago
Tuesday, January 05, 2010 8:54:03 AM GMT
What is new in ASP.Net 4 Posted by Ramani Sandeep on January 5, 2010 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... (more)
category: ASP.NET | clicked: 6 | comment | | source: ramanisandeep.wordpress.com
6
shouts

Windows Workflow a total rewrite in Dot Net 4.0?

posted by MihirPatelMihirPatel 393 days, 22 hours, 41 minutes ago
Wednesday, February 18, 2009 3:05:28 PM GMT
I read the latest Visual Studio Magazine Editor's Note with some interest. I agree with a lot of what Patrick says in his piece. Microsoft is seriously damaging the Dot Net developer community and adoption in the industry with these half baked product releases and abrupt about-faces after shipping. As I wrote in another blog, I have seen the adoption problems myself. (more)
category: Web Service | clicked: 16 | comment | | source: vistadb.net
tags: .net 4, WCF, WF
6
shouts

Composable and Efficient LINQ Queries

posted by MihirPatelMihirPatel 394 days, 23 hours, 47 minutes ago
Tuesday, February 17, 2009 1:59:23 PM GMT
Whether you come from a functional, procedural, or object oriented background, it’s always a good idea to promote code reuse as much as possible. One of the best ways to have reusable LINQ queries is to write them in a composable fashion. (more)
category: Foundation | clicked: 10 | comment | | source: destructothedevilcat.wordpress.com
tags: Linq
6
shouts

string to date conversion asp.net « Ramani Sandeep's Blog

published 78 days, 23 hours, 33 minutes ago posted by sandy060583sandy060583 80 days, 23 hours, 16 minutes ago
Wednesday, December 30, 2009 2:13:47 PM GMT Monday, December 28, 2009 2:31:11 PM GMT
string to date conversion asp.net Posted by Ramani Sandeep on December 28, 2009 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 w... (more)
category: ASP.NET | clicked: 56 | comment | | source: ramanisandeep.wordpress.com
6
shouts

Important Silverlight Tutorials for Beginners « Ramani Sandeep's Blog

published 87 days, 3 hours, 26 minutes ago posted by sandy060583sandy060583 88 days, 31 minutes ago
Tuesday, December 22, 2009 10:20:21 AM GMT Monday, December 21, 2009 1:15:51 PM GMT
Important Silverlight Tutorials for Beginners Posted by Ramani Sandeep on July 3, 2009 Technorati Tags: Silverlight FAQsImportant FAQ questions for WPF and SilverLight: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 ? ... (more)
category: Silverlight | clicked: 55 | comment | | source: ramanisandeep.wordpress.com
Previous 1 2 Next