Monday, October 21, 2013

RSS Feed Reader with jQuery

I am using the jQuery & FeedEk plugin to parse rss feed.

Step 1 – Include jQuery and FeedEk.js

 

Step 2 – Specify a DIV where you need the feed displayed

3- Add the Javascript that will populate the placeholder


Well there you have it; a slick, easy to use FeedEk RSS Reader!!

Friday, October 18, 2013

[Solved]How to delete an uploaded image in asp.net ?

Uploaded image you can easily delete by server side code.

try {
FileInfo TheFile = new FileInfo(MapPath(".") + "\\" + FileName);
if (TheFile.Exists) {
File.Delete(MapPath(".") + "\\" + FileName);
}
else {
throw new FileNotFoundException();
} 
} 

Good Day!!!