-
Control inside repeater row ASP.NET

-
Dependency Injection with Ninject in .NET
-
LinkButton ,Label inside Repeater – ASP.NET
Hello All Today I will show you how to fire Link Button’s event with argument and initialize a label inside of a repeater. To do that first we have to take LinkButton and a Label control inside the ItemTemplate of the repeater. Then we have to initialize the the Label from OnItemDataBound event of the…
-
Print C# properties in aspx,ascx page from code behind file.
Hello all Today I will show you how to print something in aspx or ascx page from code behind file.In this example I have taken a “Web User Control” named “WebUserControl.ascx”. What I wanted to do was, print a value of a variable in “.ascx” page where the variable has been initialize from “.ascx.cs” better…
-
File streaming in .NET
-
Consume WCF Service
-
Creating WCF Service
-
Custom Event in .NET
-
Namespace in ASP.NET
Commonly Used Types and Namespaces in ASP.NET System.Web HttpApplication HttpCookie HttpRequest HttpResponse HttpRuntime HttpServerUtility System.Web.ApplicationServices *NEW AuthenticationService NEW ProfileService NEW RoleService NEW System.Web.Caching Cache System.Web.ClientServices *NEW ClientFormsIdentity NEW ClientRolePrincipal NEW ConnectivityStatus NEW System.Web.ClientServices.Providers *NEW ClientFormsAuthenticationMembershipProvider NEW ClientRoleProvider NEW System.Web.Compilation BuildProvider System.Web.Configuration WebConfigurationManager *NEW System.Web.Hosting ApplicationManager System.Web.Management WebBasedEvent System.Web.Security FormsAuthentication FormsIdentity Membership Roles System.Web.SessionState HttpSessionState System.Web.UI…
-
Isolated Unit Test of Business Logic With NMock in TDD
Hello All In test driven development its always needed to test a particular project tested with make it isolate ( test with removing dependency from other projects ), In this scenario we virtually create the input set which will be produced from other projects(class,methods etc) and test whether our testable methods are functioning with that…