Skip to main content

About Me

Naveed Ahmed (Software Developer)

.Net Developer 
Having 10+ years of experience in Computer Programming, currently using ASP.Net, MVC, SQL Server, Crystal Report, and WordPress.

Teaching

I am interested in learning and sharing knowledge with new learners.

Technologies

I am interested in:
  • Software Engineering
  • Web Development
  • C# & .NET
  • ASP.Net MVC & CORE
  • SQL Server & TSQL
  • Mobile Application Development
  • WordPress
  • PowerBI
  • Windows Services

 

Contact

you can contact me if you want to

Learn

  • .Net Development
  • Web Development
  • C#
  • ASP.Net

Development

  • .Net Development
  • Web Development

Email: professionalsna@gmail.com

Comments

Popular posts from this blog

Getting Highest Entered Records from the Table (SQL Server)

If you want to get the highest entered records (transactions) in the current month you may write the query below select top 1 CourseID,count(*) as forms from dataform where month(DataFormDate)=MONTH(GETDATE()) group by CourseID order by forms desc when you want more than one records change the top 1 to the desired numbered.

Convert Array to Comma Seprated String

If you have an array of Integers and want to convert it into comma separated string. here is the following code //integer Array int[] arr = new int[5] {1,2,3,4,5}; string arrvalue= string.Join(",", arr); results will be arrvalue= "1,2,3,4,5"