You must Sign In to post a response.
Category: [Competition Entries]
#707504
Hi..
I suggest you to learn oops concept and try to do simple programs or take it any concept and work on that. Then you will get more knowledge on that while doing the task.
refer this site:
http://www.codeproject.com/Articles/4468/Beginners-Introduction-to-ASP-NET
http://www.homeandlearn.co.uk/net/vbnet.html
I suggest you to learn oops concept and try to do simple programs or take it any concept and work on that. Then you will get more knowledge on that while doing the task.
refer this site:
http://www.codeproject.com/Articles/4468/Beginners-Introduction-to-ASP-NET
http://www.homeandlearn.co.uk/net/vbnet.html
#707508
hi mani
thanks for post me i will try these site.
thanks for post me i will try these site.
#707572
AJAY,
You can learn / start from in DNS tutorial section itself. try to work each and every control in the tool box in the beginning stage understand what is the use of each control and then slowly come to project side. Do some simple projects using controls.
If you have any doubt on any .NET concept post in the forum section we will help you to solve your doubt..
Regards
N.Ravindran
Your Hard work never fails
You can learn / start from in DNS tutorial section itself. try to work each and every control in the tool box in the beginning stage understand what is the use of each control and then slowly come to project side. Do some simple projects using controls.
If you have any doubt on any .NET concept post in the forum section we will help you to solve your doubt..
Regards
N.Ravindran
Your Hard work never fails
#707585
you can read the tutorials/resources posted in dotnetspider
also you can get lot of tutorials in the net.
if you want to know about advanced feature, look in msdn
some sites are listed below
Regards,
Shine
also you can get lot of tutorials in the net.
if you want to know about advanced feature, look in msdn
some sites are listed below
dotnetperls.com/
codeproject.com/
csharp-station.com/Tutorial.aspx
c-sharpcorner.com/UploadFile/anandnarayanswamy/CSTutorial1AN11282005015140AM/CSTutorial1AN.aspx
msdn.microsoft.com/en-us/library/aa288436%28v=vs.71%29.aspx
msdn.microsoft.com/en-us/library/67ef8sbd.aspx
msdn.microsoft.com/en-us/library/618ayhy6%28v=vs.71%29.aspx
Regards,
Shine
#707686
hi frnds can any one tell me briefly about cls or cts with example. why cls is subtype of cts.
#708068
Hai Ajay,
CLS(Common Language Specification)- All the languages which support in net have the same and common specification or we can say common structure to write the programs. The structure of the C# code and VB.Net code is same the only different is writing based on the syntax. So all the supported languages follows the Common Language Specifications of writing or developing the applications.
CTS (Common Type System)- It fully describes all the common data types for all the languages.
For example- in C#, to declare the integer variable, we use the below snippet of code:
The same code snippet in VB.Net, can be written as:
Now here the int and Integer both represent the same type and the net framework read it as System.Int32. SO the System.Int32 is the common type.
.Net framework support more than 45 language so if you declare the int variable in any of these supportable language it will understand System.Int32
CLS is Subtype of CTS because in CTS we only talk about the common types but in CLS we talks about the whole stricture which also includes the types internally.
Hope it will be helpful to you
Regards,
Pawan Awasthi(DNS MVM)
+91 8123489140 (whatsApp), +60 14365 1476(Malaysia)
pawansoftit@gmail.com
CLS(Common Language Specification)- All the languages which support in net have the same and common specification or we can say common structure to write the programs. The structure of the C# code and VB.Net code is same the only different is writing based on the syntax. So all the supported languages follows the Common Language Specifications of writing or developing the applications.
CTS (Common Type System)- It fully describes all the common data types for all the languages.
For example- in C#, to declare the integer variable, we use the below snippet of code:
int i=10;
The same code snippet in VB.Net, can be written as:
Dim i as Integer = 10
Now here the int and Integer both represent the same type and the net framework read it as System.Int32. SO the System.Int32 is the common type.
.Net framework support more than 45 language so if you declare the int variable in any of these supportable language it will understand System.Int32
CLS is Subtype of CTS because in CTS we only talk about the common types but in CLS we talks about the whole stricture which also includes the types internally.
Hope it will be helpful to you
Regards,
Pawan Awasthi(DNS MVM)
+91 8123489140 (whatsApp), +60 14365 1476(Malaysia)
pawansoftit@gmail.com
Return to Return to Discussion Forum