Tuesday, August 7, 2018

Digital Signature service provider Company in Cuttack , Bhubaneswar, Odisha| Sradha Webcreations


 Digital Signature service provider Company in Cuttack , Bhubaneswar, Odisha| Sradha Webcreations

A digital signature is a mathematical technique used to validate the authenticity and integrity of a message, software or digital document.
The digital signature can be considered as a numerical value that is represented as a sequence of characters. The creation of a digital signature is a complex mathematical process that can only be created by a computer.


Advantages(benefits ) of digital signatures.

1.Saves Time

You no longer have to wait for your manager to return from a holiday or conference for that signature. Digital signatures ensure that businesses save on cost and time with documents and contracts signed off with a click of a button. There are huge savings in cost and time especially when the person required to sign is in a geographically different area. 

2.Cost Savings

Many companies also see significant cost savings, with little or no expense in ink, paper, printing, scanning , shipping/delivery or travel expenses. There are also savings in other indirect costs such as filing, rekeying data, archiving, or tracking.

3.Workflow Efficiency

With lesser delays, digital signatures ensure better efficiency in workflow. Managing and tracking documents are made easier, with lesser effort and time involved. Many features of the digital signatures help speed up the work process.

4.Better Customer Experience

Digital signatures provide the convenience of signing important documents where ever a customer or the person to sign is located. Sales persons do not have to wait for the customer to come to the bank or office. Documents can be signed off at the door step.
5.Security

When it comes to signatures, authenticity and security is a priority. Digital signatures reduce the risk of duplication or alteration of the document itself. Digital signatures ensure that signatures are verified, authentic and legitimate. Signers are provided with PINs, password and codes that can authenticate and verify their identity and approve their signatures. 
6.Legal Validity

Digital signatures provides authenticity and ensures that the signature is verified. This can stand in any court of law like any other signed paper document. Time stamping and ability to track and easily archive documents improve and simplify audit and compliance.

7.Future Validity

Digital signatures also hold validity into the future. ETSI PDF Advanced Signatures (PAdES) with its eIDAS requirements have validity well into the future with its long term signature formats. Should there be far reaching technological changes, digital signatures would still be valid for the foreseeable future.

8.Environmental Benefits

As corporates and business become more conscious of their role in sustainability, digital signatures is a step ahead in their efforts in reducing waste and being environmental friendly.

9.Business efficiency

The costs involved in integrating digital signatures into the work processes is relatively small, compared to its benefits. With quicker contract turnaround time, and reduced the work flow time, digital signatures are ideal for both small and large organizations.

Why & where we use  digital signatures

Ø E-procurement
Ø Income Tax e-filling
Ø MCA21 e-filling
Ø DGFT
Ø SSL Certificate
Ø GST
Ø EPFO On-line Transfers
Ø e-Tokens
Ø ROC e-filling
Ø DIN
Ø Form 16/Form 16A Signing




how to create event management system website | Sradha WebCreations

how to create event management system website /Web applications / database management 


<%@ Page Language="C#" %>
<%@ Import Namespace="System.IO" %>

<script runat="server">

    protected void btnAdd_Click(object sender, EventArgs e)
    {
        if (upImage.HasFile)
        {
            if (CheckFileType(upImage.FileName))
            {
                upImage.SaveAs(MapPath(upImage.FileName));
            }
        }
    }

    bool CheckFileType(string fileName)
    {
        string ext = Path.GetExtension(fileName);
        switch (ext.ToLower())
        {
            case ".gif":
                return true;
            case ".png":
                return true;   
            case ".jpg":
                return true;           
            case ".jpeg":
                return true;
            default:
                return false;       
        }
    }

    void Page_PreRender()
    {
        string upFolder = MapPath(".");
        DirectoryInfo dir = new DirectoryInfo(upFolder);
        dlstImages.DataSource = dir.GetFiles();
        dlstImages.DataBind();
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>FileUpload File</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <asp:Label
        id="lblImageFile"
        Text="Image File:"
        AssociatedControlID="upImage"
        Runat="server" />

    <asp:FileUpload
        id="upImage"
        Runat="server" />

    <br /><br />
    
    <asp:Button
        id="btnAdd"
        Text="Add Image"
        OnClick="btnAdd_Click"
        Runat="server" />

    <hr />
   
    <asp:DataList
        id="dlstImages"
        RepeatColumns="4"
        runat="server" Width="764px">
        <ItemTemplate>
        <asp:Image ID="Image1"
            ImageUrl='<%# Eval("Name", "./{0}") %>'
            style="width:200px"
            Runat="server" />
        <br />
        <%# Eval("Name") %>   
        </ItemTemplate>
    </asp:DataList>
   
    </div>
    </form>
</body>
</html>


fileUpload.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FileUpload.aspx.cs" Inherits="FileUpload" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
   
        <asp:FileUpload ID="FileUpload1" runat="server" />
        <br />
        <asp:Button ID="UPloadButton" runat="server" onclick="UPloadButton_Click"
            Text="Upload" />
        <br />
        <asp:Label ID="Status_Label" runat="server" Text="Up Load Status"></asp:Label>
   
    </div>
    </form>
</body>
</html>

fileUpload.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Security;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Drawing;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web.Security;
using System.IO;



public partial class FileUpload : System.Web.UI.Page
{
   
    protected void UPloadButton_Click(object sender, EventArgs e)
    {
       
    if (FileUpload1.HasFile)
    {
        try
        {
            string filename =Path.GetFileName(FileUpload1.FileName);
           FileUpload1.SaveAs(Server.MapPath("~/") + filename);
            Status_Label.Text = "Upload status: File uploaded!";
        }
        catch(Exception ex)
        {
            Status_Label.Text = "Upload status: The file could not be uploaded. The following error occured: " + ex.Message;
        }
    }

        if(FileUpload1.HasFile)
        {
            try
            {
                if(FileUpload1.PostedFile.ContentType=="image/jpeg")
                {
                    if(FileUpload1.PostedFile.ContentLength<200)
                    {
           string filename = Path.GetFileName(FileUpload1.FileName);
                           
              FileUpload1. SaveAs(Server.MapPath("~/") + filename);
               Status_Label.Text = "Upload status: File uploaded!";
                    }
                    Else
Status_Label.Text = "Upload status: The file has to be less than 100 kb!";
                }
                else
  Status_Label.Text = "Upload status: Only JPEG files are accepted!";
            }
            catch (Exception ex)
            {
Status_Label.Text = "Upload status: The file could not be uploaded. The following error occured: " + ex.Message;
            }
        }
    }
}





Friday, August 3, 2018

Janaseba Kendra|Common Services Center|Sradha WebCreations


ଜନସେବା କେନ୍ଦ୍ର ଆପଣ ମାନଙ୍କୁ ସ୍ୱାଗତ କରୁଅଛି
Common Services Center






Our Services
1  Residence Certificates 
2  Caste Certificates 
3  SEBC Certificates
4  OBCs Certificates
5  Income Certificates 
6  Legal Heir Certificates
7  Tatkal PAN CARD 
 Regular PAN Card apply
8   PAN CARD Correction
9   GST Registration 
10 IT Return filling 500/- onwords
11 Digital Signature 
12 Passport Apply 
13 Registration of Birth or Death in case of Urban Area 
14 Registration of Birth or Death in case of Rural Area
15 For getting Birth or Death Certificate in case of Urban Area
16 For getting Birth or Death Certificate in case of Rural Area
17 Apply for Disability/Handicrafts Certificates