sunilksaini

Stories kicked by sunilksaini

6 Things Developers Should Know By 2010(blog.saviantllc.com)

submitted by davidsdavids(480) 3 years, 2 months ago

A list of 6 things I think asp.net developers should know by 2010 read more...

1 comment |category: |Views: 1480

tags: another

One Click Grid to Email(sunilksaini.blogspot.com)

submitted by sunilksainisunilksaini(170) 3 years, 11 months ago

I had assigned a work to make certain updation to the report system of one web application. Report system, of course not any third party expensive reporting tools, means exporting the data to MS Excel. You guys know that exporting the data from the Gridview control to MS Excel is not a gigantic task and i have already written a blog about it Export Dataset to Excel, so I did it with no challenge. Second task was to send the created MS Excel file as email attachment to the given email ID. I believe this is, again, not a task where you need to write mammoth code. Thanks to the Mircosoft to provide us with System.Net.Mail namespace which made our work pretty simple. read more...

add a comment |category: |Views: 14

tags: another

How to Encrypt Programmatically the Sections of Web.Config File(sunilksaini.blogspot.com)

submitted by sunilksainisunilksaini(170) 4 years, 1 month ago

Hi, Welcome. In this tutorial, we are about to discuss how to encrypt the various sections of web.config file. Few sections of web.config are quite crucial as these sections often used to hold sensitive data like userids, passwords, server names, database connection strings and may be other encrypted keys. If we do not make it secure, our information is vulnerable to malicious users. read more...

add a comment |category: |Views: 31

tags: another

Are you making these 3 common ASP.NET AJAX mistakes?(encosia.com)

submitted by gt1329agt1329a(7849) 4 years, 7 months ago

An overview of the impact several ASP.NET page life cycle issues have on ASP.NET AJAX development, and how to avoid them. read more...

6 comments |category: |Views: 397

tags: another

Remove generated JavaScript from your pages(blog.madskristensen.dk)

submitted by tiernanotiernano(1674) 4 years, 7 months ago

One of the things that have always seemed a little weird to me is that ASP.NET auto-generates JavaScript and injects it in the rendered HTML. The JavaScript is needed to handle validation, postbacks, callbacks etc. but why does it have to write the same static functions when it could just as well be placed in a referenced .js file? If all the static functions where placed in an external .js file, it would be downloaded once instead of every time a page loads. read more...

add a comment |category: |Views: 16

tags: another

Easier way to manage your ASP.NET Cache (weblogs.asp.net)

submitted by zowenszowens(988) 4 years, 7 months ago

Coolest way to do caching... create a CacheManager!!! read more...

2 comments |category: |Views: 35

tags: another

Spice up ASP.NET validation with AJAX Control Toolkit(ashishware.com)

submitted by ashpatashpat(285) 4 years, 8 months ago

This article discusses ways to enhance client side validators using AJAX Control Toolkit, by adding callouts and modal dialog box. The whole purpose is to improve user experience with very little effort. read more...

add a comment |category: |Views: 22

tags: another

Increase Your Productivity With Query Analyzer/SQL Server Management S(dotnetsamplechapters.blogspot.com)

submitted by SQL_MenaceSQL_Menace(4890) 4 years, 8 months ago

2 tips to make you more productive with Query Analyzer/SQL Server Management Studio read more...

add a comment |category: |Views: 7

tags: another

The C# ?? Operator(dotnettipoftheday.org)

submitted by superghostsuperghost(2260) 4 years, 8 months ago

The C# ?? Operator read more...

8 comments |category: |Views: 11

tags: another

Quickly Find/Open a File in Visual Studio(alteridem.net)

submitted by rprouserprouse(1175) 4 years, 8 months ago

A quick way to find and open files in a large solution in Visual Studio that very few people know about. Other people have created addins to do this without even realizing the functionality was already there. read more...

3 comments |category: |Views: 81

tags: another

Ten SQL Server Functions That You Hardly Use But Should (dotnetsamplechapters.blogspot.com)

submitted by SQL_MenaceSQL_Menace(4890) 4 years, 8 months ago

Ten SQL Server Functions That You Hardly Use But Should read more...

add a comment |category: |Views: 17

tags: another

Showing Modal Progress Dialog in all Ajax Operation (geekswithblogs.net)

submitted by kazimanzurrashidkazimanzurrashid(3965) 4 years, 9 months ago

Learn how to show a Modal Progress Dialog in all your ajax operation. read more...

1 comment |category: |Views: 303

tags: another

Export Dataset to Excel(sunilksaini.blogspot.com)

submitted by sunilksainisunilksaini(170) 4 years, 9 months ago

Exporting Dataset to Excel is not a big deal. Wide range of help related to it is available on the net. I wrote this article for Exporting Dataset to Excel with the idea that the beneficiary will only need to COPY, PASTE and USE it. read more...

1 comment |category: |Views: 100

tags: another

Use AutoCompleteExtender MS Ajax 1.0(sunilksaini.blogspot.com)

submitted by sunilksainisunilksaini(170) 4 years, 9 months ago

There are numerous blogs and forums discussing that “AutoComplete Extender is not working”. When I had to work on it for one of my clients, I too found that AutoComplete Extender does not work. I followed the steps given in http://ajax.asp.net/ but I was left with the same impression that “AutoComplete Extender is not working” . Anyway try try again till you get gain is the formula I generally adopt. After googling of hours together, I found the solution. Though the solution is given in many forums/blogs, yet you need to give more attention to it to catch the point. So in this blog I tried to highlight the small but the important lines that require more attention. read more...

add a comment |category: |Views: 55

tags: another

HttpHandler for Images in ASP .NET 2.0(sunilksaini.blogspot.com)

submitted by sunilksainisunilksaini(170) 4 years, 9 months ago

Http Handler: Http Handler is a class that is responsible for rendering a particular resource, or a particular type of resource. Http Handlers are somewhat similar to ISAPI Extensions. If implements, it behaves like a filter between Web Server and the Client. Whenever client makes a request to the server, it goes through the Filter and performs operations as per our requirement read more...

add a comment |category: |Views: 49

tags: another

Use List<T> generic class instead of Dataset(sunilksaini.blogspot.com)

submitted by sunilksainisunilksaini(170) 4 years, 9 months ago

All ASP.NET Geeks are certainly well aware of Datasets. We have been using datasets since the evolution of .NET and getting benefits from its vast functionality. Though its basic architecture makes it extremely powerful yet it has performance impact. In ASP .NET 2.0, generics classes have been introduced. There are many generics collections in it which allow users to create strongly typed collections that provide better type safety and performance. At this point of time, I am trying to explain the replacement of datasets (not in all scenarios) with List<T> Collection read more...

add a comment |category: |Views: 128

tags: another