string temp1;
int j = 0;
temp1 = DsProList.Tables["TpProEdit"].Rows[0]["pro_question"].ToString();
for (int i = 1;i<temp1.Length;i++)
{
if ((i -4*j)% 100 ==0) 
{
temp1 = temp1.Insert(i+(j*4),"<br>");
j ++;
i=i+4;
}
}
pquestion.Text = temp1;
试试看