Guest User

Untitled

a guest
Apr 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. id code
  2.  
  3. 10 5987
  4. 11 34567
  5. 12 242
  6. 13 43244
  7.  
  8. id=reader["id"]== DBNull.Value?string.Empty:Convert.ToString(reader["id"]);
  9. while ( id.Length<15)
  10. {
  11. id= " " +id;
  12. }
  13. code =reader["code"]== DBNull.Value?string.Empty:Convert.ToString(reader["code"]);
  14. while ( code.Length<10)
  15. {
  16. code = "0" +code;
  17. }
Add Comment
Please, Sign In to add comment