Hi,
I have a radio buttons a)English b)Arabic
When user select arabic the label must be displayed in arabic and vice versa
I had resource file: hello resource.ar-SA.resx
In feature title : $Resources:helloResources,FeatureTitle;
Description: $Resources:helloResources,FeatureDesc;
Below is the code
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Resources;
using System.Globalization;
using System.Threading;
using System.Reflection;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Utilities;
namespace Language.TestArabic
{
public partial class TestArabicUserControl : UserControl
{
private ResourceManager rm;
protected void Page_Load(object sender, EventArgs e)
{
CultureInfo ci;
uint language = SPContext.Current.Web.IsMulti ...
Go to the complete details ...