Skip to main content

Featured Post

How to use Tabs in ASP.NET CORE

I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component  public class AllViewComponent : ViewComponent     {         private readonly UserManager<ApplicationUser> _userManager;         public AllViewComponent(UserManager<ApplicationUser> userManager)         {             _userManager = userManager;         }         public async Task<IViewComponentResult> InvokeAsync()         {             List<StudentViewModel> allUsers = new List<StudentViewModel>();             var items = await _userManager.Users.ToListAsync();             foreach (var item in items)             {                 allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email });             }            

Top 10 asp.net forums

Asp.net forums: It mean provide help related to asp.net code and many more things like presentation related, business logic related etc. asp.net support many languages like c#, f#, vb etc. These languages are interoperable so all mentioned forums are working in all languages.

(Top-1)asp.net forums: This is related to many more things like tutorials, articles, learning skills, asp.net forums etc. Forums working on these following topics:

  1. Getting started: general awareness of asp.net.
  2. web forms:   Server controls, events, validation, master pages, themes, web parts, personalization, etc.
  3. Web Forms Data Controls : Data-bound controls such as the GridView, DataGrid, DataList, FormView, DetailsView, Repeater, and Microsoft Chart.
  4. MVC: Discussions regarding ASP.NET Model-View-Controller (MVC).
Alexa Traffic Rank




(Top-2)stack overflow: This is related to various technologies like asp.net, php, javascript, c++, java, mysql, css, html, python etc. Put your thread related to tag.

stack overflow alexa rank


(Top-3)c-sharpcorner : Uncategorized asp.net forums, in this you can put your thread and get answers from other developers of people.

Alexa rank: Global rank- 4864

(Top-4) asp.net forums : Simple categories forum in different technologies like DOTNET Framework, asp.net, Database, html,css and java script. First to register in it and put your thread in specific category.

Alexa Rank : Global rank - 83681

(Top-5) newly start forum: This forum is newly started, if you join this then you get golden membership. It categories in differeent sub categories like ASP.NET, AJAX, WEB FORMS, MVC, WEB SERVICE, JQUERY.

Alexa rank : Global rank - 6,20,230

(Top-6) dotnet spider : Before posting any thread in it, make register, register button available in top right corner. Fill all reguired fields, do login by their username and psasword. If you want to post your thread here then select forum from navigation, select respective forum.

Alexa rank : Global rank - 55, 428

(Top-7)Dotnet funda: Similarly in this, we can put thread for other users. Joining is so simple and sweet, first to register, confirm email by your mail box, login by their username and password. Select category under forum tab.

Alexa rank : Global rank- 27,602

(Top-8) Tutorialized Forum: You can start threading by your errors/doubts. Interesting thing in this forum, if you are new user for this forums then you can not allow to submit url.

Alexa rank:  Global rank - 82,259

(Top-9) Discountasp.net : Discount asp.net forums share current news and updates which is related to asp.net. Provide various services to the users like getting started, hosting services, general trubleshooting, control panel etc. Before reply to any thread, you have full permissions.

Alexa rank:  Global rank- 99,677

(Top-10) developer fusion :  This forum contain both licence and open source contents, i mean to say catogries realted to all technology like java, asp.net etc.

Alexa rank : Global rank- 71,191

Comments

Popular Post

How to use Tabs in ASP.NET CORE

I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component  public class AllViewComponent : ViewComponent     {         private readonly UserManager<ApplicationUser> _userManager;         public AllViewComponent(UserManager<ApplicationUser> userManager)         {             _userManager = userManager;         }         public async Task<IViewComponentResult> InvokeAsync()         {             List<StudentViewModel> allUsers = new List<StudentViewModel>();             var items = await _userManager.Users.ToListAsync();             foreach (var item in items)             {                 allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email });             }            

Polynomial representation using Linked List for Data Structure in 'C'

Polynomial representation using Linked List The linked list can be used to represent a polynomial of any degree. Simply the information field is changed according to the number of variables used in the polynomial. If a single variable is used in the polynomial the information field of the node contains two parts: one for coefficient of variable and the other for degree of variable. Let us consider an example to represent a polynomial using linked list as follows: Polynomial:      3x 3 -4x 2 +2x-9 Linked List: In the above linked list, the external pointer ‘ROOT’ point to the first node of the linked list. The first node of the linked list contains the information about the variable with the highest degree. The first node points to the next node with next lowest degree of the variable. Representation of a polynomial using the linked list is beneficial when the operations on the polynomial like addition and subtractions are performed. The resulting polynomial can also

Print the asp.net webpage using button

Introduction Today i am talking about printing, and how to print the content or you can say selected content in asp.net. If you have a webpage and you want to print this then you have to choose command key (ctrl+p) for that. Also you want to print the selected part then you have to select the text first then you have to use command key. But sometimes your selected page could not printed. So many websites provide the printing facilities on the webpage. Today i am talking about the same topics here. Lets take a simple example to demonstrate the topic. Source code: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="printpage.aspx.cs" Inherits="printpage" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head>     <title></title> <script> function printpage() { var getpanel = document.getElementById("<%= Panel1.ClientID%>"); var MainWin