Banner Ad

Friday, May 16, 2014

Daily interview Question #9: what is the purpose of ref and out parameters in C#?

By Francis   Posted at   9:00 AM   No comments

          Ref keyword is used to send the particular parameter as a reference to the function or subroutine.
          In some cases we may want to return value from the function but we don't want to use that variable within the function. We just get back some value, that's all. In these kind of scenarios we may go with 'out' parameter.
          The main difference between the two is, before passing ref parameter we must initialize the particular variable. But this kind of initialization is not necessary with 'out' parameter.

Sunday, May 11, 2014

ASP.Net Forums - FAQ #4 : Running ASP.Net website from Home

By Francis   Posted at   3:20 PM   ASP.Net Forums 1 comment
                                           Here is the next question for a newbie who are wish to run a ASP.Net website from home or going with a hosting company. However, as per my experience I suggest to instead of running website from home, you may prefer a good hosting company. Running a website from home is not a bad idea. But the stuff behind it some what hard. So in this article i am going to highlight what are the stuffs you need to run a website.
WebSiteIdea
                                 

Thursday, May 1, 2014

A List of Developer Tools : A Tech blogger must have

By Francis   Posted at   6:27 PM   Blogging No comments
                    I Love Technology blogging. Since the beginning of this blog, I have lot of troubles to write my articles, to show my output of my demo, Convert code from vb.net to C# and vice versa etc. So some useful stuffs and utilities needed for me which simplify my day today blogging activities. In this post, I am going to guide you these kind of useful stuffs.
Blogging_Tools

Monday, April 21, 2014

File Upload Control–How to give same UI in all browsers?

By Francis   Posted at   6:56 PM   CodeProject No comments
                                  As all of know, the File Upload control is used to upload your favourite files to the server. One of the biggest challenge while using this control is UI issue. That is this control is rendered in a different ways in all browsers. Please see the below figures, each of them rendered the File Uploader in a different way. That is UI is vary across the browsers.

Friday, April 18, 2014

ASP.Net Forums - FAQ #2 : ASP.Net Project Ideas

By Francis   Posted at   8:17 AM   ASP.Net Forums No comments
how-to-start-project
                                              ASP.Net Forums have tons of Questions. I have preferred some most frequently questions and give a detailed explanation here. This one also I encountered a lot in the ASP.Net Forums. Most of the college students and beginners are asked about the below questions:
How to start an ASP.Net Web Projects?
Where to get some basic ideas about web based projects?
                    In this post I just want to guide those people from my practical experiences.

Prerequisite – Software:
                Before start your project you need the below softwares:
  1. Visual Studio
  2. .Net Framework
  3. SQL Server   
                        For students and beginners express version of visual studio is enough. While this writing Microsoft released Visual Studio 2013. You can download the Visual Studio 2013 express for web development here. With that installation, .Net framework 4.5 also installed. So there is no separate download is not necessary.
                         Each and every website that are developed are data centric or data driven. That are data are stored and retrieved from a database like SQL Server. So you must need that one also.
                         For SQL Server also Microsoft provide express version. You can get it SQL Server 2008 Express with SP2 here and SQL Server 2012 here.
                        For the above software installation you must need Windows 7 with SP1 or Windows 8.
Prerequisite – Skills:
              The below are the must have skill sets that are required for every beginner in ASP.Net.
  1. .Net Architecture (CLR and BaseClass Library)
  2. C# or VB.Net Language
  3. ADO.Net
  4. ASP.Net (Web Form, Worker Process, AppDomain, Session, Cache, Authentication etc)

               It is better how the .Net frameworks works which helps to the developer to grasp the rest of the things easily. If you want to go with ASP.Net you should learn any one of the .Net compatible language such that C# or VB.Net. ADO.Net always deals with Database related objects like Datasets, Datatables etc. In beginner level choosing Web Form will give a easy to move way in ASP.Net. The above lists are specific to .Net.

Some Good Books for ASP.Net:
         Below are my personal suggestion to sharpen your skills in ASP.Net as well as .Net Languages such as C# and VB.Net in some extend.

  1. Programming ASP.Net By Dino Espotio (From Microsoft Press)
  2. Professional ASP.Net 2.0/3.5/4.5 (from wrox publications)
  3. C# 4.0 – The Complete Reference By Herbert Schildt

Online Tutorials & Trainings for ASP.Net:
               For ASP.Net technology, there are so many good online tutorial sites available. Some of them for your reference:
www.asp.net/getstarted
http://www.codeproject.com/KB/aspnet/
http://channel9.msdn.com/Tags/asp.net

What do you think?
                  The above are my professional experience, that I have earned over lot of time. Do you want to say something, please let me know thru comments.
Connect with Us