我使用文本框的值一樣1455.23
,使用圓形功能我輸出0000145523
但客戶不能進入像1234
浮點值我的輸出000
請給我建議 我的代碼是format.cs如何在asp.net中使用圓形數學函數?
public bool formatAmount(float flAmount, out string strOutput)
{
bool bval = false;
float rounded = (float)Math.Round(flAmount, 2);
if(rounded!=null)
{
flAmount = flAmount * 100;
strOutput = Convert.ToString(flAmount);
bVal = true;
}
return bVal;
}
在我的asp頁面這樣的代碼
string ods;
float a = Convert.Todecimal(txtSSA.Text);
string sss = oclsUtility.formatAmount(a, out ods);
用戶輸入1234時應該輸出什麼內容? –
什麼問題? – FishBasketGordo
@hmk:請提供輸入字符串和所需輸出格式的示例。 –