protected void Page_Load(object sender, System.EventArgs e)
{
    if (this.IsPostBack) return;
    FarPoint.Web.Spread.CurrencyCellType cct = new FarPoint.Web.Spread.CurrencyCellType();
    cct.EditMode.NumberFormat = new System.Globalization.NumberFormatInfo();
    cct.EditMode.NumberFormat.CurrencySymbol = "VND";
    cct.NumberFormat = new System.Globalization.NumberFormatInfo();
    cct.NumberFormat.CurrencySymbol = "D";
    FpSpread1.Sheets[0].Columns[1].CellType = cct;
}
	 
	
		Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    If IsPostBack Then
        Return
    End If
    
    Dim cct As New FarPoint.Web.Spread.CurrencyCellType()
    cct.EditMode.NumberFormat = New System.Globalization.NumberFormatInfo()
    cct.EditMode.NumberFormat.CurrencySymbol = "VND"
    cct.NumberFormat = New System.Globalization.NumberFormatInfo()
    cct.NumberFormat.CurrencySymbol = "D"
    FpSpread1.Sheets(0).Columns(1).CellType = cct
End Sub