Directive Syntax
Directives are instructions used to specify settings (related to how a page should render and processed) used by the page and user control compilers when they process ASP.NET Web Forms page (.aspx) and user control (.ascx) files. These are the essential part of every ASP.NET Page or Control.
Directives can be located anywhere in an .aspx or .ascx file, but the standard practice is to include them at the beginning of the file (The advantage of using them at the top or the beginning of the file is that we …
In previous Articles we have discused that how we can upload a dile using .asmx web service and isolated storage space. Here in continution to the topic I am going to discuss how we can use WCF for the same purpose.
Steps :
Create the a silverlight project with the “FileUploadWCF” name.
Make these important changes in the properties of FileUploadWCF.Web project
Right click on FileUploadWCF.Web.
Select Properties
Under Web tab Select Specific port and give the port number I am using port number 1366
Note: we are using specific port so that every time we …
In My Article File Handling in Silverlight I have discussed that we can use file upload in tow ways one using the Isolated storage of the silerlight and the other is using the classic (.asmx) Web services or WCF. Here I am discussing about
the classic .asmx web services. To upload files in the silverlight applications.
Steps :
Create a silverlight project in Visual Studio 2008 or beyond. As silverlight 3.0 is released so you can use that or go with Silverlight 2.0 hardly matters.
Make these important changes in the properties of FileUploadASMX.Web …
Creating A setup For a Windows Application
Some one has asked me today that how can I create a setup for a windows application in VB.Net so in order to answer the question I have prepared an article which I am sharing with you all hoping it will be of any help to others to running into the same problem.
The one thing I would like to clear is that creating setup for a windows application is not based on any language.
We need to follow the following Steps, in order to …