Search Results

0
votes
4answers
1k views

Asp.net c# and logging ip access on every page and frequency

Are there any prebuilt modules for this? Is there an event thats called everytime a page is loaded? I'm just trying to secure one of my more important admin sections. …
2
votes
2answers
270 views

How to get which page threw an exception to Application_error in aspx

I have a general exception handler, Application_error in my global.asx what I'm trying to isolate all the uncaught exceptions on all my many pages. I don't want to use Page_error to catch exception …
0
votes

C#, int or Int32? Should I care?

I remember the old borland days and int was not only dependant on your machine but on your compiler. So the real point here is -- if you are a sloppy coder then use whatever and continue being tha …
1
vote

c# determine the number of lines within a text file

If by easy you mean a lines of code that are easy to decipher but per chance inefficient? string[] lines = System.IO.File.RealAllLines($filename); int cnt = lines.Count(); That's pr …