Feeds:
Posts
Comments

Archive for March, 2007

1. What is an assembly?
Ans. Assemblies are the smallest units of versioning and deployment in .Net application.Assemblies are also building blocks for programs such as Web Services,Windows Services,Service Components and .Net Remoting Applications.
Here are some general Concepts of an Assembly.
An Assembly is a logical unit of code
Assembly physically exist as DLLs or EXEs
One [...]

Read Full Post »

Print PDF file in .net

I found this question at many places that how to print pdf file in .net in which you have only the full path of that pdf file
here is you solution in vb.net
Dim psi As New ProcessStartInfo
psi.UseShellExecute = True
psi.Verb = “print”
psi.WindowStyle = ProcessWindowStyle.Hidden
psi.FileName = sReport
Process.Start(psi)

Read Full Post »

How to use login control in .net

As a web developer we know that most of the time our application is having a login as well as the forget password kind of requirement.
Now, using visual studio 2005 it’s very easy to design a login page because the inbuilt login tab has been added into the toolbox of VS 2005 editor, which has [...]

Read Full Post »