Skip to main content

Free Online Calculators | SWP, BMI & Random Number Generator

Free Online Calculators

SWP Calculator - Systematic Withdrawal Plan

Calculate how long your investments will last with systematic withdrawals. This tool helps you plan your finances by estimating the duration of your funds based on monthly withdrawals.

BMI Calculator - Body Mass Index

Check your BMI to determine if you are underweight, normal, overweight, or obese. This calculator helps you assess your body mass index based on your weight and height.

Random Number Generator

Generate a random number between the specified range. This tool is great for picking random numbers for games, decisions, or experiments.

Comments

Popular posts from this blog

The Page Life Cycle of an ASP.NET and its controls.

The life cycle starts when a user requests a web page through his/her browser. The Web server than process the page through a sequence of steps before response is sent back to the user's browser. The steps are as: Page Request Start Page Initialization Load Validation PostBack Event Handling Render Unload Page Request The page request occurs before the page life cycle begins. When a user requests the page, ASP.NET determines whether the page needs to be parsed and compiled (therefore beginning the life of a page), or whether a cached version of the page can be sent in response without running the page. Start In the start step, page properties such as Request and Response are set. At this stage, the page also determines whether the request is a postback or a new request and sets the IsPostBack property. Additionally, during the start step, the page's UICulture property is set. Page Initialization During page initialization, controls on ...

Embed Tiny Editor in Your Web Application:

1 . First of all open your Web page in your application in which you want to embed the Editor. 2 . This editor is know as Tiny Editor which has nice features by which the user can enter his/her text in stylish way by embedding smileyes, embed photos. 3 . We can set font family, Font Size, Cut, Copy, Paste and many other functions are there by which the text can be represented in a better way. 4 . Now Steps to embed the Tiny Editor in you web page are: a : Drag and Drop Textbox and give id to id name RichTextBox. b : Set the Property of Textbox:-TextMode Property to Multiline. c : Drop one Label to page, we transfer the text from RichText Box to Label when we store the text to database. d : Put this Code in your Head Tag:   < script type ="text/javascript" src ="tinymce/jscripts/tiny_mce/tiny_mce.js"></ script > < script type ="text/javascript">    tinyMCE.init(     {         mode : "textareas...

Create File Uploader (Visual Studio)

By this Coding you can create File Uploader  and the is file will uploaded into Foder:-    Design Source Code:-    < form id ="form1" runat ="server" > < asp:FileUpload id ="FileUploadControl" runat ="server" /> < asp:Button runat ="server" id ="UploadButton" text ="Upload"   onclick ="UploadButton_Click" /> < br />< br /> < asp:Label runat ="server" id ="StatusLabel" text ="Upload  status: " /> </ form > Coding C#: protected void UploadButton_Click( object sender, EventArgs e) { if (FileUploadControl.HasFile) { try { string filename = Path.GetFileName(FileUploadControl.FileName); FileUploadControl.SaveAs(Server.MapPath( " ~/Folderpath " ) + filename); StatusLabel.Text = " Upload status: File uploaded! " ; } catch (Exception ex) { StatusLabel.Text = " Upload stat...