I have created one popup calendar control with time using javascript. If anyone is interested then download it from this link.
http://www.box.net/shared/2ax3e74leb
Thanks,
Anil.I have created one popup calendar control with time using javascript. If anyone is interested then download it from this link.
http://www.box.net/shared/2ax3e74leb
Thanks,
Anil.In the Master page code behind file define the method you want to call as Public.
public partial class MasterPage : System.Web.UI.MasterPage
{
public void ShowLicenseErrorImage()
{
this.IMG_LicenseExceedWarn.Visible =
this.lblLicenseMisuse.Visible =
this.lblDetails.Visible = true;
}
public void HideLicenseErrorImage()
{
this.IMG_LicenseExceedWarn.Visible =
this.lblLicenseMisuse.Visible =
this.lblDetails.Visible = false;
}
}
Now in the content page code befind type the following.
MasterPage master = (MasterPage)this.Master;
master.ShowLicenseErrorImage();
Where “MasterPage” is the class name of class in master page.
Thats it!!!
When i was working for Globalization process in my project, I need to move all strings to resource files. And create different resource file for different languages. This was not a easy task. I had around 35 resource files which i was supposed to translate into 6 different languages. So instead doing this manually i found one much easier task, Using Google Translate API. You can call to google api method and translate the strings. So i created one small windows app which will help to translate resource files.

Please download this project and try using it. Upgrade or enhance it according to your requirement if necessary. Please leave your valuable comments.
You can download the exe from this link: http://www.box.net/shared/n1dqrxrpzd
You can also download the project from this link and modify according to your requirement.
Try this link- http://www.box.net/shared/zjo7mtmzvi