Friday, August 23, 2019
CSharpBeginner - Beginner of Dot NET Development in C#
Basic important URLs for C#
**********Online compiler Microsoft of c#****************** |
Click on below link: | |
https://www.microsoft.com/net/learn/in-browser-tutorial/1 | |
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/index-operator | |
---------------------- About Access Modifier in C#:---------------------------------------- | |
Public: Anywhere from the class | |
Private: Only within the class | |
Protected: Only within that class and the sub classes of that class | |
Internal: Within the assembly of the class | |
Protected Internal: Within that class, sub classes of that class and and assembly | |
**************************Web Session Management in C#**************************************** | |
C:\Windows\Microsoft.NET\Framework\v4.0.30319>aspnet_regsql -S localhost -U root -P root -ssadd -sstype p (SQL server session mode) | |
****************************Session timeout:************************************************** | |
https://www.aspsnippets.com/Articles/Display-Session-Timeout-message-before-Session-expires-in-ASPNet.aspx | |
https://www.c-sharpcorner.com/UploadFile/225740/introduction-of-session-in-Asp-Net/ | |
----------call in direcctly page_load() in <class-name>.cs :------------------- | |
HtmlMeta meta = new HtmlMeta(); | |
meta.HttpEquiv = "Refresh"; | |
meta.Content = Convert.ToString(Session.Timeout * 60) + ";url=LogIn.aspx"; | |
this.Page.Header.Controls.Add(meta); | |
*****************Some useful links for C# Beginner .NET Development:********************* | |
https://www.1keydata.com/sql/sql.html | |
https://demo.aspnetawesome.com/ | |
https://www.javatpoint.com/c-sharp-systemexception --> I Prefer this link as beginner. | |
https://www.youtube.com/watch?v=JhxC-K-Eehg | |
https://www.completecsharptutorial.com/ | |
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/accessibility-levels | |
https://www.questpond.com/demo.html | |
https://www.youtube.com/watch?v=lx2tSY4joDg | |
---------------------------Registration Adult Validation URLs;------------------------------------------------------------ | |
https://www.c-sharpcorner.com/UploadFile/cd7c2e/apply-client-side-validation-on-dob-selected-by-user/ | |
https://www.c-sharpcorner.com/UploadFile/cd7c2e/apply-server-side-validation-on-dob-selected-by-user/ | |
https://www.aspsnippets.com/Articles/Validate-Date-of-Birth-18-Minimum-Age-validation-in-ASPNet.aspx1 | |
--------------------------------------FORGOT PWD:---------------------------------------------------------------- | |
https://www.aspdotnet-suresh.com/2012/11/code-for-forgot-password-in-aspnet.html | |
-----------------------------------GIT HUB LINK:--------------------------------------------------------------- | |
https://github.com/hb20007/miscellaneous-programs | |
https://github.com/DotnetMob/ | |
https://github.com/dbugtime/Csharp-For-Beginners | |
https://github.com/MicrosoftDocs/visualstudio-docs/tree/master/docs/ide | |
https://github.com/dotnetcurry?utf8=%E2%9C%93&tab=repositories&q=&type=&language=c%23 |
Prefer below URL for more details:
https://github.com/autom99/CSharpBeginner
Saturday, August 17, 2019
Roman Numerals Chart
Roman Numerals Chart
Symbol
|
Value
|
---|---|
I | 1 |
V | 5 |
X | 10 |
L | 50 |
C | 100 |
D | 500 |
M | 1000 |
Huge Numbers Chart
Symbol
|
Value
|
---|---|
V | 5,000 |
X | 10,000 |
L | 50,000 |
C | 100,000 |
D | 500,000 |
M | 1,000,000 |
1-20
|
21-40
|
41-60
|
61-80
|
81-100
|
|||||
---|---|---|---|---|---|---|---|---|---|
1 | I | 21 | XXI | 41 | XLI | 61 | LXI | 81 | LXXXI |
2 | II | 22 | XXII | 42 | XLII | 62 | LXII | 82 | LXXXII |
3 | III | 23 | XXIII | 43 | XLIII | 63 | LXIII | 83 | LXXXIII |
4 | IV | 24 | XXIV | 44 | XLIV | 64 | LXIV | 84 | LXXXIV |
5 | V | 25 | XXV | 45 | XLV | 65 | LXV | 85 | LXXXV |
6 | VI | 26 | XXVI | 46 | XLVI | 66 | LXVI | 86 | LXXXVI |
7 | VII | 27 | XXVII | 47 | XLVII | 67 | LXVII | 87 | LXXXVII |
8 | VIII | 28 | XXVIII | 48 | XLVIII | 68 | LXVIII | 88 | LXXXVIII |
9 | IX | 29 | XXIX | 49 | XLIX | 69 | LXIX | 89 | LXXXIX |
10 | X | 30 | XXX | 50 | L | 70 | LXX | 90 | XC |
11 | XI | 31 | XXXI | 51 | LI | 71 | LXXI | 91 | XCI |
12 | XII | 32 | XXXII | 52 | LII | 72 | LXXII | 92 | XCII |
13 | XIII | 33 | XXXIII | 53 | LIII | 73 | LXXIII | 93 | XCIII |
14 | XIV | 34 | XXXIV | 54 | LIV | 74 | LXXIV | 94 | XCIV |
15 | XV | 35 | XXXV | 55 | LV | 75 | LXXV | 95 | XCV |
16 | XVI | 36 | XXXVI | 56 | LVI | 76 | LXXVI | 96 | XCVI |
17 | XVII | 37 | XXXVII | 57 | LVII | 77 | LXXVII | 97 | XCVII |
18 | XVIII | 38 | XXXVIII | 58 | LVIII | 78 | LXXVIII | 98 | XCVIII |
19 | XIX | 39 | XXXIX | 59 | LIX | 79 | LXXIX | 99 | XCIX |
20 | XX | 40 | XL | 60 | LX | 80 | LXXX | 100 | C |
Reference URL: https://romannumerals.info/
Subscribe to:
Posts (Atom)