Blog
I remembered my first day as a Web Developer at NCT my VP asked me " can you do sending Email in VB.Net/ ASP Net for 20 minutes?" Well it 's tooked me more than 20 minutes then...if it is today, just closed my eyes, and have it done in bthe C# and VB.Net In ASP.NET, sending emails has become simpler. The classes required to send an email are contained in the System.Net.Mail. The steps required to send an email from ASP.NET are as follows : Step 1: Declare the System.Net.Mail namespace C# - using ......
I am using Visual Studio 2008 and thereby utilizing the ASP.NET AJAX plumbing that comes along with it. Step 1: Open VS 2008. Click File > New > Website. Choose ASP.NET Website from the list of installed template, choose target platform as .NET Framework 3.5, choose the desired language and enter the location where you would like to store the website on your FileSystem. I have created a folder called VS2008 Projects, so the location over here is C:\VS2008 Projects\ GridViewPaginUsingSliderExt... ......
We like to show how to dynamically pull data from the database and display it using an ASP.NET AJAX Accordion control. We will be using the data from the Employees table of the Northwind database. We have specifically chosen this table so in order to demonstrate how to display images dynamically in an Accordion control. You can adopt the approach shown in this article to display Authors information for your website or to display Employee Info. Note: I am using Visual Studio 2008 and thereby utilizing ......
Q. List the features od ISA Server or Internet Security and Acceleration Server 2000>? A. 1-Ability to schedule the download of contents. 2-Ability to create and enforece Internet usage policies. 3.Integrated instrusion detection. 4.Integrated logging and reporting functionality Q. List the features of Application Center 2000 A. 1-One-click rollout of new servers 2-Simply server cluster creation and Management. 3-Automatic failover and server health monitoring. 4-Dynamic response to health monitoring. ......
Q. What are all the technology areas that Microsoft.Net contains? Ans: 1. .NET Frame Work 2. . Net Enterprise Servers 3. . Net Languages and Languages Tools. Q. What are all the parts of .Net Framework? Ans: 1. Common Language Runtime 2. Net FrameWork Class Library Q. What is CLR? Ans: The Common Language Runntime provides a runtime environment for the execution of code written in .Net Languages. Q. What is CLS? Ans: The Common Language Specification describes a subset of the data types supported ......
Use ASP.NET and Skype Simultaneously (CIOL)You may get errors while using ASP.NET Web Applications and Skype Simultaneously. You may encounter this type of problem after installing Skype in your system. Mainsoft Extends ASP.Net Across J2EE to WebSphere (Linux World)Mainsoft is partnering two IBM Premier Business Partners: The TamGroup, specializing in the integration, management, and delivery of information via Portals, and with Prolifics, a provider of WebSphere, Portal, SOA, and Business Integration ......
I created http://makesdatawork.net on Themes (skin & css files) in ASP.NET 2.0. Still trying to decide when it's best to use skin files over css files. Already figured out that an object property should not belong to both. Tested some, and haven't been able to receive consistent results. Is it because... Caching - How does the ASP.NET Developer server work? When using multiple CSS / skin file- Are they always applied in the same sequence Who knows???? I seem to experience the most inconsistencies ......
An Active Server Page is an HTML page that includes script code that is processed on a web server before the page is sent to the user. In most systems, the HTML (which is always stored on the server) is processed by script code that is also stored by the server using information received from the client browser. The server then builds the page 'on the fly' before sending it to the client. Since ASP just builds a regular HTML page, it can be delivered to any browser. Here's the essentials of that ......
At times users access a resource as though they were someone else. This is known as impersonation. For example, if a web page has no access controls, then any user can access that web page. HTML pages, ASP pages, and components in version 3.0 and earlier can be accessed through two accounts named IUSR_machinename and IWAM_machinename. Both the accounts are set up during IIS installation, and are automatically added to all the folders in every web site on the server. Anonymous access to a resource ......
ASP.NET Web Server Controls are controls that run at the web server. All ASP.NET Web Server Controls can be identified by their attribute ‘runat=”server&... ASP.NET Web Server Controls are similar to HTML controls. The only difference is that HTML controls run at the client-side and the developers have to write the code for each type of browsers. The ASP.NET Web Server Controls run at the server-side and automatically adapt to the type of browser that request it. ASP.NET Web ......
After you create a web form, you should make sure that mandatory fields of the form elements such as login name and password are not left blank; data inserted is correct and is within the specified range. Validation is the method of scrutinizing that the user has entered the correct values in input fields. In HTML you can perform validation either by checking the values at client-side or after submitting the form at the server-side. But these methods in HTML take lots of time to create and maintain ......
Once you complete developing a web application, you need to secure it. This is when the aspect of security comes into picture. There will be some portions of your application which need to be secured from users. Securing an application may need extra hardware to build complex multi-layer systems with firewalls, and also some highly secure features. Security enables you to provide access to a specified user after the user is authenticated and authorized to access the resources in your web application. ......
Net Framework is a platform or development environment to seamlessly create web-applications that are accessible through client machines from across the globe. These web-applications adopt open standards such as eXtensible Markup Language (XML), HyperText Transfer Protocol (HTTP), and Simple Object Access Protocol (SOAP) to interact with applications that are available in other platforms. Net Framework is platform independent and language independent. This means that .Net Framework allows you to ......
Web pages in ASP.Net are called ASP.NET Web Forms which have certain server controls such as text, dropdown list, checkboxes, and buttons. An ASP.NET Web Form looks similar to the web forms in HTML. The only difference is that in ASP.NET, the Web Forms runs at the server side and in HTML the web forms runs at the client side. Apart from this difference an ASP.NET Web Form has more features than an ordinary HTML web form such as: • The code blocks are processed on the server.• The entire ......
Though you can apply multiple server controls in your web form, ASP.NET allows you to create new controls according to your requirements. The controls that you create are called ASP.NET User Controls. ASP.NET User Controls have .ascx extension. The biggest advantage of ASP.NET User Controls is that it allows you to save a part of the web form and reuse it many other web forms. This drastically reduces the developers’ time. ASP.NET User Controls are self-contained entities that are saved in ......
The high level programming languages that need to be compiled require a runtime, so that the architecture on which the language runs is provided with details on how to execute its code. All the programming languages use its corresponding runtime to run the application. For example, to run an application developed using Visual Basic, the computer on which the application will be run must be installed with the Visual Basic runtime. The Visual Basic runtime can run only the applications developed with ......
Globalization is a process of designing and developing software in such a way that it can be used in multiple locales with some minimal modifications to the software. The software changes the locale-specific information, to provide information to the user based on the configured locale of the operating system. Globalization involves two processes, internationalizing the application code and localizing the application to other languages and cultures. The internationalization process includes steps ......
Web Services Description Language (WSDL) is one of the prime specifications in web services, the other two being SOAP and UDDI. WSDL is the description language for web services that describes a set of SOAP messages and how these messages are exchanged across network. WSDL will be in XML format; therefore it can be easily understood and edited by humans and machines. Another advantage of WSDL being in XML format is that it is programming-language independent and also platform independent. In addition, ......
This part of the article is going to be the last of the series. In the last part I introduced you to what the .NET Assemblies are and for what reasons are they used? You also were informed about the advantages of using the .NET Assemblies as compared to the other scripting techniques that we have available in the ASP .NET. Before implementing an assembly I would like to add, that we implement many pre-built assemblies while we are working on ASP .NET based applications. For example; the System namespace ......
ASP .NET introduces many techniques for better code management and code reusability. Code Behind and Custom Controls are one of the best implementations of these techniques where you can separate your HTML tags and coding from your server-side script. It also provides future facilities to manage the code easily. The Code Behind and Custom Controls development is a good approach to better web development, but there is a performance hit that also exists. You may know about the CLR (Common Language ......
The Microsoft Visual InterDev manual explains the global.asa file as follows: The Global file is an optional file in which you can specify event scripts and declare objects that have session or application scope. It is not a content file displayed to the users; instead it stores event information and objects used globally by the application. This file must be named Global.asa and must be stored in the root directory of the application. An application can only have one Global.asa file. Global.asa ......
Click on “Features Examples From Mai”. line above. I am hoping you enjoying my examples
Enjoy my Favors .NET Articles...they are very usefull for me...
Click “ASP-Sources”. line above. You are right on, this is another of my favor ASP Sources Links...
An assembly in ASP.NET is a collection of single-file or multiple files. The assembly that has more than one file contains either a dynamic link library (DLL) or an EXE file. The assembly also contains metadata that is known as assembly manifest. The assembly manifest contains data about the versioning requirements of the assembly, author name of the assembly, the security requirements that the assembly requires to run, and the various files that form part of the assembly. In the first part we will ......
When I first started building personal web sites for myself. At that time my tool of HTML development was MS FrontPage 2000, which didn't require knowing coding syntax for the most part. Later I learned HTML scripting in and out and used it in many commercial projects as well as other needs. This web site for instance has been built solely in plain HTML with lots of JavaScript and CSS. In most cases I use manual coding as opposed to drag-n-drop features of such code editors as FrontPage and Dreamweaver ......