1
vote
3answers
714 views
Asp.Net: Javascript Modal Window
I would like to create a javascript modal pop up window to get some values from a user in a ASP.Net 2.0 webpage.
The basic idea is this. When a user clicks a button, a modal window will com …
0
votes
C# 3.0 Auto-Properties - useful or not?
I love them. They are a real time saver for me. They also help make the code more readable in my opinion. :)
…
1
vote
C# foreach within a foreach loop.
I don't see a problem with this as long as you don't change doc.Bodies inside the inner loop, as this would cause things to blow up. But in theory this would work. As for optimization I'm not sure …
1
vote
Where can I find a Good Sample ASP.NET Database Driven Web Application?
For 1 through 3, I would recommend downloading some of the ASP.NET starter kits. I'm not sure if they work with Oracle though.
Some of the bigger frameworks are also great starts like DotNe …
1
vote
Why are Static Methods not Usable as Web Service Operations in ASMX Web Services ?
When a client creates an object for your web service, what they are really creating is a proxy object to that web service. This proxy object handles things like opening and closing your connections …
1
vote
Better word for inferring variables other than var - C#
I think this is a great idea. I myself have had to explain the var keyword from time to time and how it is really just a placeholder for a type and that it still insures strong typing.
…
1
vote
File Transfer using FTP
For this you could use: FtpWebRequest.
Here is a great example. I hate linking to another site, but it has an example with it for uploading and downloading using FTP.
…
