Author: admin

  • Blog
  • Author: admin

Insert with Dapper Micro ORM and ASP.NET MVC 3

As I have already posted about the how to fetch data in my earlier post for Dapper ORM. In this post I am going to explain how we can insert data with the dapper ORM. So let’s extend the earlier post project. As explained in earlier post I have already created a class called CustomerDB

Dynamic URL of asp.net web service with web reference

It’s been a while I am writing this. But never late.. So I am writing this. Before some time one of friend asked about the URL of web service when we add reference. So I am writing this. Some of you may find this very basic but still many of people does not know this

Chart Helpers in ASP.NET MVC3- Create chart with asp.net mvc3

I am exploring ASP.NET MVC3 and everyday I am learning something new. In today’s post I am going to explain how we can create chart with ASP.NET MVC3. Chart is one of greatest way of expressing figures. We all need that functionality in any commercial application. I am still remembering old days with ASP.NET  where

Redirecting to new window in ASP 3.0

Hi,Any one can very easily redirect the page in new windows with the help of java script.Following are syntax for redirecting to a new page. <%if request(“submit”)<>”” then %> <script language=”javascript”> window.open(‘http://localhost/content/login.asp?mstMsg=logged”%>’,’login’); </script> <% end if %>