Categories
Asp, Asp.net

How to Send GridView in Email Body in Asp.Net Using C#

How to Send GridView in Email Body in Asp.Net Using C# In this post we will learn How to Send GridView in Email Body in Asp.Net Using C#. In earlier post we have learnt how to Send Email with Attachment in Asp.Net c#. Design: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>How […]

Categories
How To Article Javascript

How To Display Current Time on Page using Javascript

How To Display Current Time on Page using Javascript In this tutorial we will learn How To Display Current Time on Page using Javascript. We are using JavaScript to accomplish this. Code: <html> <head> <title>How To Display Current Time on Page using Javascript</title> <style type="text/css"> body { width: 980px; margin: 0px auto; text-align: center; padding-top: 50px; […]

Categories
Asp, Asp.net

Password Recovery In Asp.Net

Password Recovery In Asp.Net In this post we will learn how to do Password Recovery In Asp.Net. Here we are recovering password through code, we are not using asp.net membership. Earlier we had learnt about How To Block The UserName After 3 Invalid Password Attempts. Here our approach is to check if user is registered then we […]

Categories
Linux

How to Delete Directory in Linux

How to Delete Directory in Linux In this tutorial we will learn How to Delete Directory in Linux. in Earlier post we have learnt How to Create Directory in Linux. Deletion of directory works by two ways: 1. Empty directory deletion: rmdir directory_name 2. Directory with contents in it deletion: if you tried to delete a directory […]