Tuesday, August 21, 2018

how to Creating Mail account in server | Sradha WebCreations

how to Creating Mail account in server 
 how to create email account  in your domain name


click on open web email Create mail account 


set user name and password also set conform password 
set email account size , storage space 

now you can login server / business email account by 
http://www.mail.domainname.com
put your user name and password 



you can also configure this email account outlook and gmail account







Monday, August 20, 2018

Share hosting Admin Panel | How to open Share hosting admin panel | Sradha Webcreations

Share hosting Admin Panel | How to open Share hosting admin panel 


enter user name and password

Create new data base(add new data base) or click your existing data base(display bellow)



after create database you can create table in server panel on in sql server management studio install in you system. by login your server ip , user name and password 












icici bank lone calculation Online software | Web applications | Dynamically lone and interest calculation online software | Sradha Webcreations

icici bank lone calculation Online software | Web applications | Dynamically lone and interest calculation online software 

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

<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>

<!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>
    <style type="text/css">
        .style1
        {
            height: 23px;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
        </asp:ToolkitScriptManager>
       
        <asp:MultiHandleSliderExtender ID="multiHandleSliderExtenderTwo"
            runat="server" TargetControlID="TextBox2"
            BehaviorID="multiHandleSliderTwo" Minimum="1" Maximum="100"
            Steps="50" Length="150" TooltipText="{0}">
            
            <MultiHandleSliderTargets>
            <asp:MultiHandleSliderTarget ControlID="TextBoxYearTo" />
            <asp:MultiHandleSliderTarget ControlID="TextBoxYearFrom"/>
            </MultiHandleSliderTargets>
        </asp:MultiHandleSliderExtender>
       
        <table align="center" style="font-weight: 700">
            <tr>
                <td colspan="2">
                    IcIcI Prudencial Rate of Interest Calculation</td>
            </tr>
            <tr>
                <td>
                    Investment Amount</td>
                <td>
                    <asp:TextBox ID="TextBoxInvestmentAmount" runat="server"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td>
                    Term Of Years</td>
                <td>
                    <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
                </td>
            </tr>
            <
            <tr>
                <td>
                    Years to</td>
                <td>
                    <asp:TextBox ID="TextBoxYearTo" runat="server"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td class="style1">
                    Year form</td>
                <td class="style1">
                    <asp:TextBox ID="TextBoxYearFrom" runat="server"></asp:TextBox>
                </td>
            </tr>
            <tr>
               
                <td>
              <asp:Button ID="ButtonReturn_Value" runat="server" style="font-weight: 700"
                        Text="Return Value" onclick="ButtonReturn_Value_Click" />
                </td>
            </tr>
            <tr>
                <td>
                    Interest Value
                    To</td>
                <td style="margin-left: 40px">
                    <asp:TextBox ID="TextBoxReturnValue" runat="server"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td>
                    Total Return Value</td>
                <td style="margin-left: 40px">
                  <asp:TextBox ID="TextBoxTotalReturnValue" runat="server"></asp:TextBox>
                </td>
            </tr>
           
            <tr>
                <td>
                    Interest Value
                    From</td>
                <td style="margin-left: 40px">
                   <asp:TextBox ID="TextBoxReturnValueFrom" runat="server"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td>
                    Total Return Value From</td>
                <td style="margin-left: 40px">
             <asp:TextBox ID="TextBoxTotalReturnValueFrom" runat="server"></asp:TextBox>
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>
ICICI.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class ICICI : System.Web.UI.Page
{
        protected void ButtonReturn_Value_Click(object sender, EventArgs e)
    {
        double dInvestMent;
        double dinterest;
        double dTotalInterestAmount;
        double DtotalReturn;

        dInvestMent = Convert.ToDouble(TextBoxInvestmentAmount.Text);
        dinterest = Convert.ToDouble(TextBoxYearTo.Text);
        dTotalInterestAmount = dInvestMent * dinterest / 100;
        TextBoxReturnValue.Text = Convert.ToString(dTotalInterestAmount);
        DtotalReturn = dInvestMent + dTotalInterestAmount;
        TextBoxTotalReturnValue.Text = Convert.ToString(DtotalReturn);
        dinterest = Convert.ToDouble(TextBoxYearFrom.Text);
        dTotalInterestAmount = dInvestMent * dinterest / 100;
        TextBoxReturnValueFrom.Text = Convert.ToString(dTotalInterestAmount);
        DtotalReturn = dInvestMent + dTotalInterestAmount;
        TextBoxTotalReturnValueFrom.Text = Convert.ToString(DtotalReturn);
    }
}




how to create lone calculate and interest calculation software in asp.net | Sradha Webcreations

how to create lone calculate  and interest  calculation Online software in asp.net



LoneCalculation.aspx

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

<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>

<!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>
    <style type="text/css">
        .style1
        {
            text-align: center;
        }
    </style>
</head>
<body style="font-weight: 700">
    <form id="form1" runat="server">
    <div>
   
        <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
        </asp:ToolkitScriptManager>
        <asp:MultiHandleSliderExtender ID="multiHandleSliderExtender1"
            runat="server" TargetControlID="TextBox2"
 BehaviorID="multiHandleSliderOne" Minimum="1" Maximum="100" BoundControlID="TextBoxRateOfinterest" Steps="50" Length="150" TooltipText="{0}">         

        </asp:MultiHandleSliderExtender>
        <br />
        <table align="center" >
            <tr>
                <td colspan="2" class="style1">
                    Loan Calculation</td>
            </tr>
            <tr>
                <td>
                    Enter Loan Amount</td>
                <td>
                    <asp:TextBox ID="TextBoxLoanAmount" runat="server"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td>
                    Select Rate of interest</td>
                <td>
                    <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
                </td>
            </tr>
           
            <tr>
                <td>
                    Rate of Interest</td>
                <td>
                    <asp:TextBox ID="TextBoxRateOfinterest" runat="server"
                        ontextchanged="TextBox3_TextChanged"></asp:TextBox>
                </td>
            </tr>
            <tr>
               
                <td>
         <asp:Button ID="ButtonCalculate" runat="server" style="font-weight: 700"
                        Text="calculate" onclick="ButtonCalculate_Click" />
                </td>
            </tr>
            <tr>
                <td>
                    Total
                    interest Amount</td>
                <td>
                    <asp:TextBox ID="TextBoxToTalInterest" runat="server"></asp:TextBox>
                </td>
            </tr>
           
        </table>
   
    </div>
    </form>
</body>
</html>
LoneCalculation.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.Data;


public partial class LoneCalculation : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void ButtonCalculate_Click(object sender, EventArgs e)
    {
        double dLoan;
        double dinterest;
        double dTotalInterestAmount;

        dLoan = Convert.ToDouble(TextBoxLoanAmount.Text);
        dinterest = Convert.ToDouble(TextBoxRateOfinterest.Text);
        dTotalInterestAmount = dLoan * dinterest / 100;
        TextBoxToTalInterest.Text = Convert.ToString(dTotalInterestAmount);
    }
    protected void TextBox3_TextChanged(object sender, EventArgs e)
    {
        double dLoan;
        double dinterest;
        double dTotalInterestAmount;

        dLoan = Convert.ToDouble(TextBoxLoanAmount.Text);
        dinterest = Convert.ToDouble(TextBoxRateOfinterest.Text);
        dTotalInterestAmount = dLoan * dinterest / 100;
        TextBoxToTalInterest.Text = Convert.ToString(dTotalInterestAmount);
    }
}