sunilksaini

Stories submitted by sunilksaini

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

submitted by sunilksainisunilksaini(170) 3 years, 7 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) 3 years, 9 months 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: 30

tags: another

Retrieve file using HTTPS Post(sunilksaini.blogspot.com)

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

The following console application code has sent HTTPS Post Request to retrieve the file and save it on local machine. read more...

add a comment |category: |Views: 6

tags: another

Export Dataset to Excel(sunilksaini.blogspot.com)

submitted by sunilksainisunilksaini(170) 4 years, 6 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: 97

tags: another

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

submitted by sunilksainisunilksaini(170) 4 years, 6 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: 54

tags: another

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

submitted by sunilksainisunilksaini(170) 4 years, 6 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, 6 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: 118

tags: another

Export Dataset to Excel(sunilksaini.blogspot.com)

submitted by sunilksainisunilksaini(170) 4 years, 6 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...

add a comment |category: |Views: 258

tags: another

Shortcut keys of Microsoft ASP.Net 2.0(sunilksaini.blogspot.com)

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

Whenever we (Developers) make applications (window or web), we generally provide the functionality of shortcut keys to ease the working for the end users. But we (not all) ourselves do not use the shortcuts keys while developing applications because of our intense love for mouse. Most (if not all) popular applications have keyboard shortcuts to help us use them efficiently. And if one learns using keyboard shortcuts, it certainly boosts ones productivity. So mates leave mouse and start loving your keyboard. Here I have collected information of Shortcut Keys for Microsoft ASP .NEt 2.0 Framerwork. It's only a matter of familiarizing yourself with the shortcuts keys. Have a good time. read more...

add a comment |category: |Views: 12

tags: another