Thursday, March 3, 2016

Nitip Codingan

Nitip codingan u/ sementara. sorry ngacak yaaa

---------------------------------------------------------------------

Untuk mengatasi invalid Character di Text Box ASP.Net

    Regex regex = new Regex(@"[^0-9^+^\-^\/^\*^\(^\)]");             //<<<< Data yang dibolehkan 
    MatchCollection matches = regex.Matches(textBox1.Text);
    if (matches.Count > 0) {
       //tell the user
    }


---------------------------------------------------------------------

Untuk me reset auto increment pada tabel database di SQL Server
          DBCC CHECKIDENT('TableName', RESEED, 0)


---------------------------------------------------------------------

Ini link u/ belajar import Data dari Excel ke Sql Server via ASP.Net
      http://www.c-sharpcorner.com/UploadFile/99bb20/import-excel-data-to-sql-server-in-Asp-Net/


---------------------------------------------------------------------