Dotnetjalps-asp.net
Exploring technologies through innovations!!
Sign in
|
Join
Home
Contact
About
RSS
Atom
Comments RSS
Search
Tags
ADO.NET
AJAx
ASP.NET
ASP.NET 4.0
ASP.NET 4.5
ASP.NET MVC
ASP.NET MVC 4.0
ASP.NET WEB API
ASP.NETPages
Azure
Blog
Blogging
BreadCrumb
Breakpoint
C#
C#.NET
Cache
Caching
CallHierarchay
Channel9
CodeRefactor
Community Tech Days
Configuration
Content Delivery Network
Cotent Management System
Dapper
DateTime
Debugging
Delegates
Denali
Distinct
Dotnetnuke
EF4.0
EFCodeFirst
Email
EmailType
Entity
Entity Framework
EntityFramework
Exception
General
HTML
HTML5
HttpHandler
IntelliTrace
JavaScript
jQuery
JqueryUI
Linq
LinqDataSource
Menu
MetaTag
Micorosft Community Techdays
Microsoft
MicrosoftAjax
MSDN
MultiMonitor
MVC 3.0
MVP
NavigateTo
NuGet
Number Input type
OutputCache
Parallel
Patterns
PetaPoco
Quiz
Razor
Refractor
Request
Response
ScriptManager
SEO
SilverLight
SQL Server
SQLServer 2008
SQLServer2011
System.Net.Mail
Task List
TechEdOnRoad
TSQL
Tuple
UML
UpdatePanel
URLRouting
VB.NET
ViewEngine
VisualStudio
VisualStudio11
VisualStudio2010
VisualStudio2012
WCF
Web.config
WebHelper
WebMatrix
WebRequest
WebResponse
WebService
WindowsAzure
WindowsAzureBootCamp
Sponsors
advertise here
News
Navigation
Home
Blogs
Archives
February 2013 (4)
January 2013 (5)
December 2012 (6)
October 2012 (1)
September 2012 (4)
August 2012 (1)
July 2012 (6)
June 2012 (4)
May 2012 (8)
April 2012 (12)
February 2012 (2)
January 2012 (6)
December 2011 (5)
October 2011 (5)
September 2011 (6)
August 2011 (7)
July 2011 (13)
June 2011 (11)
May 2011 (11)
April 2011 (13)
March 2011 (5)
January 2011 (12)
December 2010 (17)
November 2010 (2)
October 2010 (3)
August 2010 (8)
July 2010 (4)
June 2010 (8)
May 2010 (3)
August 2008 (1)
July 2008 (2)
May 2008 (1)
April 2008 (3)
February 2008 (3)
January 2008 (23)
My Blogs
My personal Blog- www.dotnetjalps.com
My BeyondRelational SQL Server blog
December 2010 - Posts
9
Comments
Enum.HasFlag method in C# 4.0
by
Jalpesh P. Vadgama
Enums in dot net programming is a great facility and we all used it to increase code readability. In earlier version of .NET framework we don’t have any method anything that will check whether a value is assigned to it or not. In C# 4.0 we have new static...
Filed under:
VB.NET
,
ASP.NET
,
C#
,
C#.NET
,
Enum
,
VisualStudio
7
Comments
ASP.NET 4.0- Menu control enhancement.
by
Jalpesh P. Vadgama
Till asp.net 3.5 asp.net menu control was rendered through table. And we all know that it is very hard to have CSS applied to table. For a professional look of our website a CSS is must required thing. But in asp.net 4.0 Menu control is table less it...
Filed under:
ASP.NET
,
Menu
5
Comments
ASP.NET Error Handling: Creating an extension method to send error email
by
Jalpesh P. Vadgama
Error handling in asp.net required to handle any kind of error occurred. We all are using that in one or another scenario. But some errors are there which will occur in some specific scenario in production environment in this case We can’t show our programming...
Filed under:
ASP.NET
,
C#
,
C#.NET
,
ErrorHandling
,
Exception
,
General
,
System.Net.Mail
3
Comments
ASP.NET Performance tip- Combine multiple script file into one request with script manager
by
Jalpesh P. Vadgama
We all need java script for our web application and we storing our JavaScript code in .js files. Now If we have more then .js file then our browser will create a new request for each .js file. Which is a little overhead in terms of performance. If you...
Filed under:
AJAx
,
ASP.NET
,
C#.NET
,
JavaScript
,
ScriptManager
,
UpdatePanel
3
Comments
Programmatically updating one update panel elements from another update panel elements
by
Jalpesh P. Vadgama
While taking interviews for asp.net candidate I am often asking this question but most peoples are not able to give this answer. So I decided to write a blog post about this. Here is the scenario. There are two update panels in my html code in first update...
Filed under:
AJAx
,
ASP.NET
,
MicrosoftAjax
,
UpdatePanel
26
Comments
Sending mail with Gmail Account using System.Net.Mail in ASP.NET
by
Jalpesh P. Vadgama
Any web application is in complete without mail functionality you should have to write send mail functionality. Like if there is shopping cart application for example then when a order created on the shopping cart you need to send an email to administrator...
Filed under:
ASP.NET
,
C#.NET
,
Email
,
System.Net.Mail
4
Comments
The remote host closed the connection. The error code is 0x80070057
by
Jalpesh P. Vadgama
While creating a PDF or any file with asp.net pages I was getting following error. Exception Type:System.Web.HttpException The remote host closed the connection . The error code is 0x80072746. at System.Web.Hosting.ISAPIWorkerRequestInProcForIIS6.FlushCore...
Filed under:
ASP.NET
,
C#
,
C#.NET
,
Exception
,
Response
5
Comments
Request format is unrecognized for URL unexpectedly ending exception in web service.
by
Jalpesh P. Vadgama
Recently I was getting error when I am calling web service using Java script. I searching on net and debugging I have found following things. Any web service support three kinds of protocol HttpGet,HttpPost and SOAP. In framework 1.0 it was enabled by...
Filed under:
AJAx
,
ASP.NET
,
Exception
,
JavaScript
,
WebService
3
Comments
ASP.NET MVC 3 RC2 Razor- Syntax Intellisense in view.
by
Jalpesh P. Vadgama
Microsoft has recently launched Razor view engine with ASP.NET MVC RC2. It’s going to be promising one. There are lots of features bundled with this view engine. But in earlier version of ASP.NET 3 MVC. We were are not having Synatx intellisense provided...
Filed under:
ASP.NET MVC
,
ASP.NET
,
Microsoft
,
Razor
,
VisualStudio
1
Comments
ASP.NET 4.0 Script Manager Enhancement Part-2 AjaxFrameworkMode Property
by
Jalpesh P. Vadgama
This will be a second part of ASP.NET 4.0 Script Manager enhancement. In this post I am going to explain about AjaxFrameworkMode Property. In Earlier asp.net version of script manager it will load entire Microsoft Ajax library whether its required or...
Filed under:
ASP.NET MVC
,
AJAx
,
ASP.NET
,
ScriptManager
More Posts
Next page »