Exportar Excel: evite eliminar los ceros iniciales

Estoy exportando un dato a la hoja de Excel en C # .Net. Ahí estoy teniendo la columna que tiene los datos como "00123450098". Los datos se exportan sin los primeros ceros. Quiero mostrar los datos tal como son.

Aquí está mi código de exportación de Excel.

 string style = @"<style> .text { mso-number-format:\@; } </style> ";
    HttpContext.Current.Response.Clear();
    HttpContext.Current.Response.AddHeader(
        "content-disposition", string.Format("attachment; filename={0}", fileName));
    HttpContext.Current.Response.ContentType = "application/ms-excel";
    HtmlForm frm = new HtmlForm();
    ...................
    ...................
     table.RenderControl(htw);
            HttpContext.Current.Response.Write(style);
            //render the htmlwriter into the response
            HttpContext.Current.Response.Write(sw.ToString());
            HttpContext.Current.Response.End();

Respuestas a la pregunta(6)

Su respuesta a la pregunta