Search Results

3
votes
3answers
286 views

Three Layered Web Application

Is it OK - best practise wise - to use the second layer to redirect the user? For example: public static void ForceLogin() { HttpCookie cookie = HttpContext.Current.Requ …
1
vote

Would C# be a good language to learn for Web Development?

I started with HTML and CSS, after that I choose PHP, because of the many tutorials and documentations. When I started at my current education I began to use C# and ASP.NET which blew my mi …
2
votes

Reasons for why a WinForms label does not want to be transparent?

If you want to focus on designing your windows application, I suggest you use WPF. Making controles transparent in WPF is very easy. <TextBox Width="200" Height="40" Opac …
0
votes

C#: How can i elegantly and or simplistically make cross threaded calls?

Using delegates and events. That would be my best answer. http:/ …
0
votes

FileUploads and rooted directories

Sometimes the MapPath is not directly accessible. In this case use ctl.SaveAs(Server.MapPath("~/UserFiles/[username]/[filename]")); …
0
votes

How to retrieve an html redirected webpage programmatically ?

You can't do it a easy way, since the meta tag is read by the client and executed. In this case, when you're using HttpWebRequest, the request doesn't care about the functions the text may …
0
votes

C# - Do you use “var”?

I'm a 2. I only use var when dealing with LINQ to SQL. Otherwise I don't really like making the compiler decide the type for my object. …