我有一系列radtextboxes作爲radgrid中的列。他們提取的數據通常爲空。在這種情況下,我希望他們的默認值爲零。我如何做到這一點?如果數據綁定後的值爲null,如何將默認值0設置爲radgrid中的radtextbox?
我想這沒有成功:
protected void rGrid_Inductions_PreRender(object sender, EventArgs e)
{
foreach (GridDataItem item in rGrid_Inductions.Items)
{
foreach (Control ctr in item.Controls)
{
if (ctr.GetType() == typeof(RadTextBox))
{
(ctr as RadTextBox).Text = "0" + (ctr as RadTextBox).Text;
}
}
}
rGrid_Inductions.Rebind();
}
欣賞的幫助
這聽起來像我需要的,但我如何在prerender循環中完成該操作?你會有一個鏈接或示例代碼,偶然嗎? –