Zbiór zmian 513 dla trunk/eCard/Expo/login.aspx.cs
- Data:
- 2009-03-31 10:14:40 (17 years ago)
- Pliki:
-
- 1 zmodyfikowane
-
trunk/eCard/Expo/login.aspx.cs (zmodyfikowane) (2 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/eCard/Expo/login.aspx.cs
r486 r513 35 35 protected void ZalogujButton_Click(object sender, EventArgs e) 36 36 { 37 if (!Page.IsValid) return; 37 38 string nip = NIPTextBox.Text.Replace(" ", string.Empty).Replace("-", string.Empty); 38 39 string nrZlec = NrZlecTextBox.Text.Replace(" ", string.Empty); 40 39 41 bool czyZalogowany = Zaloguj(nip, nrZlec); 40 42 if (czyZalogowany) … … 50 52 bool Zaloguj(string nip, string nrFaktury) 51 53 { 54 if (nrFaktury.Split('/').Length != 3) return false; 55 52 56 string fakturaNr = nrFaktury.Split('/')[0]; 53 57 string fakturaRoz = nrFaktury.Split('/')[1];
