Skip to main content

Posts

Showing posts with the label ASP.NET Multipal Question

My company currently uses Windows SharePoint Services 2.0. Why should we upgrade to Windows SharePoint Services 3.0?

Windows SharePoint Services 3.0 offers many new and enhanced features that help business organizations of all sizes further improve individual and team productivity, and the efficiency of their business processes. These new and improved features help employees to implement and manage workspaces and team sites more easily without help from IT, simplify and improve the management and maintenance of documents stored on SharePoint sites, and provide more robust and easy-to-use collaboration tools that encourage information sharing within the organization. Windows SharePoint Services 3.0 also provides IT departments with enhanced control of company resources and a more flexible and robust foundation for building new, Web-based applications and services that can connect to and capitalize on existing line-of-business applications.

Why should I consider using Windows SharePoint Services for my organization?

Windows SharePoint Services offers you benefits in four primary areas: Efficient collaboration: Help your employees and teams to stay connected and productive by providing access to the people, documents, and information they need. Rapid deployment, ease of use: Deploy collaboration applications quickly that are easy to use through integration with familiar productivity tools such as the Microsoft Office system. Manageable infrastructure: Manage the security of your organization’s information resources by deploying a scalable storage infrastructure with powerful administration services and controls. Robust foundation platform for Web-based applications: Increase business process efficiency by creating Web applications and workflow scenarios on a cost-effective, extensible platform.

ASP.NET Multipal Question

What is ASP.NET? ASP.NET is a programming framework built on the common language runtime that can be used on a server to build powerful Web applications Why does my ASP.NET file have multiple form tag with runat=server? This means that ASP.Net is not properly registered with IIS. .Net framework provides an Administration utility that manages the installation and uninstallation of multiple versions of ASP.NET on a single machine. You can find the file in C:\WINNT\Microsoft.NET\Framework\v**\aspnet_regiis.exe How to find out what version of ASP.NET I am using on my machine? Response.Write(System.Environment.Version.ToString() ) Is it possible to pass a querystring from an .asp page to aspx page? Yes you can pass querystring from .asp to ASP.NET page .asp response.redirect "webform1.aspx?id=11 What is a ViewState? View State Allows the state of objects to be Stored in Hidden Fields.In ASP .NET, when the form is submitted the for...