pareshjagatia

Stories submitted by pareshjagatia

Safer Email Address-2(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

A sample code to encode the text email addresses in your web page to prevent them from the mail capture programs. read more...

add a comment |category: |Views: 7

tags: another

UserControl communication explained !(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

A simple example that makes the UserControls talk to each other on a page... read more...

add a comment |category: |Views: 34

tags: another

C# Pre Processor Directives(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

One of the good features of C# that we rarely use are the Pre Processor directives. Let's see how we can use them for us. In general practice, we always write some test code in the application. As in JavaScript we use temporary alerts, in C# code behind too (or even in class library project) we use test code like temporary emailing and writing hardcode emails read more...

add a comment |category: |Views: 28

tags: another

VIEWSTATE Serialization(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

The most important thing for an end user of a website is the how fast the page loads and our responsibility is to make them happy. Sometimes the VIEWSTATE field makes the page huge. Lets take advantage of this VIEWSTATE without sending it to the browser.. read more...

add a comment |category: |Views: 27

tags: another

Safer Email Address(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

Direct email addresses used in the website are supposed to be caught by the mail bots that capture the email addresses from the website. But as.. read more...

1 comment |category: |Views: 11

tags: another

Save HTTP 404(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

Did you ever surprised to see a lot of 404 errors in your IIS? I too was.. Once I had a call from my boss saying "Can you tell me if we have used any Favicon file in our website in any page or somewhere? As if we have used it, the file is not in place.. read more...

add a comment |category: |Views: 8

tags: another

Export ReportViewer Report to PDF, Excel, HTML(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

Trying to export the RepoortViewer report into PDF or Excel programatically? The following code helps exporting the Report into PDF and Excel formats using the Render method of the ServerReport. Use below code after the report is loaded (refresh() is called on the reportviewer control). read more...

add a comment |category: |Views: 981

tags: another

Using Custom Assembly in Sql Server Reporting Services (SSRS).(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

There are times when one needs to have something that is not already available in Sql Server Reporting Services. I too had one requirement to have custom Localization implementation for the static labels in a report. I had to fetch Localized data based on the UserID parameter (which is MUST for every report I had as all the reports were User specific.).Let's look into details... read more...

add a comment |category: |Views: 62

tags: another

ASP.NET HTML Optimization..(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

Addition to the ViewState Optimization that we already discussed, our further target could be the extra spaces within the HTML that is being rendered for an aspx page read more...

add a comment |category: |Views: 14

tags: another

Why WebResources(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

Discovering some good reasons to use WebResources. Before we digg into "HOW TO"s about this topic let's think of "WHY WebResources?". read more...

add a comment |category: |Views: 4

tags: another

HOW TO EMBED RESOURCE AND USE IT WITH WEBRESOURCE HANDLER(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

Lets take a walkthrough on how to embed a resource and use it throughthe WebResource handler. read more...

add a comment |category: |Views: 3

tags: another

The Constant Fact : Const Vs Static ReadOnly field(pareshjagatia.blogspot.com)

submitted by pareshjagatiapareshjagatia(90) 3 years, 11 months ago

One fact about constant, that we all know, is it's value can never be changed. Here goes another one.... read more...

add a comment |category: |Views: 29

tags: another