Online Movie & TV Shows

One more link for online movide and TV shows.

Just click here to visit the site

:)


Report Broken link to linkoblast@gmail.com

How to : Configure Microsoft Dynamics CRM Internet Facing Web Site

Once you complete  installation of Microsoft CRM 4.0, you need to configure the Microsoft Dynamics CRM Internet Facing Web Site.

Excerpts:

To use the Microsoft Dynamics CRM Internet Facing Deployment Configuration tool, follow these steps:
  1. Obtain the Microsoft Dynamics CRM Internet Facing Deployment Configuration tool. The following file is available for download from the Microsoft Download Center:


    Collapse this imageExpand this image
    Download
    Download the CRM4IFDTool.zip package now. (http://download.microsoft.com/download/4/e/f/4ef5f568-7320-4861-a947-47baf0966537/crm40ifdtool.zip) Release Date: February 6, 2008

    For more information about how to download Microsoft support files, click the following article number to view the article in the Microsoft Knowledge Base:

    119591  (http://kbalertz.com/Feedback.aspx?kbNumber=119591/ ) How to obtain Microsoft support files from online services
    Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help prevent any unauthorized changes to the file.
  2. On the computer that is running the server installation of Microsoft Dynamics CRM 4.0, extract the tool to the following folder:
    drive:\Program Files\Microsoft Dynamics CRM\Tools
  3. Double-click the CRM4IFDTool.exe file to start the Microsoft Dynamics CRM Internet Facing Deployment Configuration tool.
  4. In the Authentication Strategy box, click IFD+On Premise.
  5. Type the IP address and the subnet, and then click Add.

    Notes
    • The IP address does not have to be a Microsoft Dynamics CRM server IP address. However, it must be a valid IP address.
    • If you have multiple subnets for the IP address, add each IP address and subnet as needed.
    • If a blank line appears in the list of IP addresses, click the blank line, and then click Delete.
  6. In the IFD Domain Scheme box, click HTTP or HTTPS.
  7. In the IFD App Root Domain box and in the IFD SDK Root Domain box, type the domain or the subdomain as appropriate. For example, type a domain or a subdomain that resembles one of the following:
    • domain.com
    • subdomain.domain.com
    Note The domain placeholder is the name of the domain. The subdomain placeholder is the name of the subdomain. Additionally, these IFD settings specify the method by which a client computer accesses the Microsoft Dynamics CRM Web site when the computer is not connected to the local intranet.
  8. In the AD Domain Scheme box, click HTTP or HTTPS.
  9. In the AD App Root Domain box and in the AD SDK Root Domain box, type the URL of the server that is running the server installation of Microsoft Dynamics CRM 4.0. For example, type a URL that resembles the following URL:
    crmserver:5555
    Notes
    • Do not type "HTTP" or "HTTPS" when you type the URL.
    • The Active Directory settings specify the method by which the client computers access the Microsoft Dynamics CRM Web site when the computer is connected to the local intranet.
    • The URLs that you type in the App Root Domain box and in the SDK Root Domain box may not match if the server roles are split between servers.
  10. On the File menu, click Apply Changes.


Click here to visit the original site.

Start Wars in Text Version via Telnet

Watch full STAR WARS movie using telnet for free.

Abstract:
While it's not technically an Easter egg, one of the most eye-popping tips in last Sunday's Top 10 Easter eggs post comments was a pointer to a telnet server that broadcasts Star Wars Episode IV to your command line as animated text. You didn't read that wrong. Give it a try: from any command line, type and sit back to watch the show. This is the least productive thing you'll do all day, but you know what they say about all work and no play. After the jump, see a handful of screenshots—just 4 of the 13,935 frames that make up the entire movie.




Click here to visit the original site.






Building a Hello World Web Part for Windows SharePoint Services 3.0

Building a Hello World Web Part for Windows SharePoint Services 3.0


Excerpts:
The purpose of this article is to demonstrate how to develop a very simple Hello World Web Part. The target application for this Web Part is Windows SharePoint services 3.0 (WSS), although it could of course be installed on Microsoft Office SharePoint Server (MOSS). The development of this assembly will be conducted on a system that does not have WSS/MOSS installed. The conclusion will demonstrate how to manually deploy and run this code, as opposed to using Visual Studio's built in deploy process.
This article is inspired by the work of Ted Pattison, whose video this writing is based upon and loosely follows.





Click here to read the original article.


Is the above link useful to you? Let us know your feedback, it will help us to improve our posting(s). or You can send your feedback linkOblast.

Watch Online, Desi video, Bollywood Movies and more.....

Watch Online, Desi video, Bollywood Movies and more.....


Muft.tv


Is the above link useful to you? Let us know your feedback, it will help us to improve our posting(s). or You can send your feedback linkOblast.

Image Map in ASP.NET

Want to use clickable Image Map on your web page?

You can visit the site by clicking here

Is the above link useful to you? Let us know your feedback, it will help us to improve our posting(s). or You can send your feedback linkOblast.

Outlook 2007 Attachment Previewer

Turn Off Outlook Attachment Previewer (Default is it set to ON)

Outlook 2007 has a great feature that allows you to preview attachments and documents if the handler is available for that filetype. However, some users do not use (or like) this functionality. To turn off Attachment Preview, follow these steps:


1. Click Tools and select Trust Center.

2. In the left pane, select Attachment Handling.
3. In the right pane, under Attachment and Document Preview, uncheck the Turn off Attachment Preview checkbox. If you only want to disable Attachment Preview for certain types of files, leave the checkbox checked and click the Attachemnt and Document Previewers button. From the File Previewing Options window, uncheck the previewers that you do not want to use.
4. Click OK to close the window(s).


Changing Page Title and Meta Tags with Master Pages

In ASP.NET, Master Pages are good for so many things.

They also cause some confusion on how to have a different page title for each page, how to specify Meta Tags, etc.
This post is neither on Master Pages nor on best practices on handling these two topics. I would try to list couple of simple ways to handle them.
Title:
Title tag in Master Page acts as a place holder. On each page that uses Master Page, specify the “Title” in the page declarative.
In your content page, i.e., (.aspx),
<%@ Page Language=”C#” MasterPageFile=”~/Master1.master” AutoEventWireup=”true” Title=”Content Page Title” %>
You could also change the “title” tag in the code file as follows.
base.Master.Page.Header.Title = “Content Page Title”;

Meta Tags:
Meta Tags are little different compared to setting the page Title. Check the code that creates a meta tag “keywords” with content “ASP.NET, AJAX, Web Services”.
HtmlMeta metaTag = new HtmlMeta();
metaTag.Name = “keywords”;
metaTag.Content = “ASP.NET, AJAX, Web Services”;
base.Master.Page.Header.Controls.Add(metaTag);
If you need to do this in multiple content pages, you might want to have a base page with properties like, “MetaKeywords”, “MetaDescription”, “MetaRobots” etc. So, on your regular page you could set these properties.


Configure anonymous access (Office SharePoint Server)

I was searching to provide Anonymous on my SharePoint Web Site, I just found this useful article at follwoing path:

Click here to View Article

Abstracts:

Configure anonymous access (Office SharePoint Server)

Updated: 2009-03-26

In this article:

Anonymous access enables users to find resources in the public areas of Web sites without having to provide authentication credentials.

About anonymous access

Internet Information Services (IIS) creates the IUSR_computername account to authenticate anonymous users in response to a request for Web content. The IUSR_computername account, where computername is the name of the server that is running IIS, gives the user access to resources anonymously under the context of the IUSR account. You can reset anonymous user access to use any valid Windows account.

NoteNote:

You can set up different anonymous accounts for different Web sites, virtual or physical directories, and files.

In a stand-alone environment, the IUSR_computername account is on the local server. If the server is a domain controller, the IUSR_computername account is defined for the domain.

By default, anonymous access is disabled by Office SharePoint Server 2007 when you create a new Web application. This provides an additional layer of security because IIS rejects anonymous access requests before they can ever be processed by Office SharePoint Server 2007 if anonymous access is disabled.

Enable anonymous access for a zone

Use the following procedures to enable anonymous access for a zone of a Web application. Within each Web application, you can categorize different classes of users into one of the following five zones:

  • Internet is the zone used for customers. Typically, the Internet zone is the only zone you would configure for anonymous access.

  • Intranet is the zone used for internal employees.

  • Default is the zone used for remote employees.

  • Custom is the zone used for administrators.

  • Extranet is the zone used for partners.

Enable anonymous access for a zone of a Web application

  1. From Administrative Tools, open the SharePoint Central Administration Web site application.

  2. On the Central Administration home page, click Application Management.

  3. On the Application Management page, in the Application Security section, click Authentication providers.

  4. On the Authentication Providers page, make sure the Web application that is listed in the Web Application box (under Site Actions) is the one that you want to configure. If the listed Web application is not the one that you want to configure, click the drop-down arrow to the right of the Web Application drop-down list box and select Change Web Application.

  5. In the Select Web Application dialog box, click the Web application that you want to configure.

  6. On the Authentication Providers page, click the zone of the Web application on which you want to enable anonymous access. The zones that are configured for the selected Web application are listed on the Authentication Providers page.

  7. On the Edit Authentication page, in the Anonymous Access section, select Enable Anonymous Access, and then click Save.

At this point, the Web application zone has been enabled for anonymous access.

Enable anonymous access for individual sites

Now you need to enable anonymous access for individual sites in the site collection.

Enable anonymous access for individual sites

  1. Go to the site on which you want to enable anonymous access and click the Site Actions menu.

  2. On the Site Actions menu, click Site Settings.

  3. On the Site Settings page, in the Users and Permissions section, click Advanced Permissions.

  4. On the Permissions page, on the Settings menu, click Anonymous Access. The settings for anonymous access lists three options:

    • Entire Web site   Select this option if you want to enable anonymous access for the entire Web site.

    • Lists and libraries   Select this option if you want to limit anonymous access to only the lists and libraries on your site.

    • Nothing   Select this option if you want to prevent anonymous access from being used on your site.

  5. Click OK.

At this point, your site is configured for anonymous access based on the options that you have selected.

Enable anonymous access for individual lists

If you select Lists and libraries, enable anonymous access for individual lists.

Enable anonymous access for individual lists

  1. Go to the home page of your Web site and, in the left navigation pane, click View All Site Content.

  2. Click the list on which you want to enable anonymous access.

  3. On the Settings menu, click List Settings.

  4. On the Customize List page, in the Permissions and Management section, click Permissions for this list.

  5. On the Permissions page, on the Actions menu, click Edit Permissions. A dialog box is displayed informing you that you are about to create unique permissions for this list. Click OK.

  6. On the Settings menu, click Anonymous Access.

  7. Select permissions for users who have anonymous access to the list, and then click OK.

At this point, users have anonymous access to the list you have configured. You can control whether users have anonymous access to other lists, the home page, or other pages on this site.