Latest posts on tagged on "ASP-NET"

Ftp error 530 User cannot Log in

4 September 2016

I want to download files from an FTP server using asp.net c#. When I tried to connect FTP server I got the following error FTP error: 530 User cannot Log in.

Convert LINQ Query results to List Object

1 September 2016

You can convert the entity object to list Object by looping the LINQ Query results and adding the object to the list.

after ajax load AddThis is not working

19 August 2016

Addthis is not working when I load dynamic content on button click. It was resolved by adding the script on page Load.

How to overwite the properties in partial class using asp.net?

9 August 2016

We can use metadata to add functionality to entities by adding properties in a metadata class with attributes that we can affect the behavior of entities implemented with partial class called metadata classes.

How to get websites favicon in mvc asp.net?

27 July 2016

You can use HTML agility pack or XmlDocument and get favicon. The following code will bring the path of website’s icon.

Delete file from the server using asp.net c#

25 July 2016

You should make sure that the file path passing to delete from the server in asp.net c#. This following code is to delete the record from database and also from the folder path of the server.