Today , I am going to show you how to create a simple web server using node.js. 1. Download node from here and install it. After That test it from cmd to ensure all is ok or not. Test “node -v” To see if Node is installed, type the above on your command line. Test […]
Author Archives: Admin
The Issue is ASP.NET 4.0 has not been registered on the Web server. You need to manually configure your Web server for ASP.NET 4.0 in order for your site to run correctly. It shows with a dialog box at project opening time. This dialog box has no impact to the project once the dialog box […]
Download node from here and install it. After That test it from cmd to ensure all is ok or not. Test “node -v” To see if Node is installed, type the above on your command line. Test “npm -v” To see if npm is installed, type the above on your command line. If your cmd […]
For tomcat server,XAMPP is installed here. To start, we first start XAMPP Control Panel then start tomcat server. To test visit this link.http://localhost:8080/if Apache Tomcat/7.0.56 page loaded then your tomcat server ready to work. Visit tomcat manager page through this link.http://localhost:8080/manager This is manager page window through which we upload our project to tomcat server. […]
As a developer you must have focused on speeding up your website and implementing a responsive design. So that something always keeps in mind such as performance matter, loading time etc. Today I discuss about Google tools named as page speed insights which test your site tell you how to increase your site performance. It […]
A batch file is a kind of script file in DOS, OS/2 and Windows. A sequence of commands for a computer operating system that store in a text file is known as batch file. Its called a batch file because it batches (bundles or packages) into a single file. A batch file is usually created […]
For above reason, exception throws which looks like To call this method, the Membership.Provider property must be an instance of ExtendedMembershipProvider In details to solve this issue: 1. Create a new MVC 4 project using the “Empty” template2. Add Two references WebMartix.Data and WebMatrix.WebData 3. Now main task which we have to complete. Go to […]
Script sometimes not minifying or compressing which are referenced in bundle config. This can be happend- 1.because Bundle is used instead of ScriptBundle 2.occur when you are in DEBUGGING mode. Ok after testing above things if still there is problem then add this to your bundle config BundleTable.EnableOptimizations = true;
A query string is the part of a uniform resource locator (URL) containing data that does not fit conveniently into a hierarchical path structure. The query string commonly includes fields added to a base URI by a Web browser or other client application, for example as part of an HTML form.Query strings can be generated […]
To detect multiple button event separately like ASP.NET button event then here is a mostly clean attribute-based solution for the multiple submit button issue. You decorate an action method in a controller with the ActionNameSelectorAttribute (or a subclass), ASP.NET MVC will use this attribute to determine which action method to call. In View Just Create […]