No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
[QUOTE=jbennet;353083]Same. After i put my email in my sig my spam increased about tenfold.[/QUOTE] classic hopefully you're getting some good deals :icon_cheesygrin: As long as your site is actually useful then it will work, but if your site is just a load of BS then you may get some traffic …
I've seen this before. I think that you may be running the website under ASP.NET 1.0 instead of 2.0 on the server. Go to the website in IIS, right click on it, get the properties, make sure you're running it under asp.net 2.0 on the asp.net tab. That should fix …
Enterprise manager is actually very cool. I have used Toad before for Oracle and they have a free beta version for SQL Server ([URL="http://www.toadsoft.com/toadsqlserver/toad_sqlserver_beta.htm"]http://www.toadsoft.com/toadsqlserver/toad_sqlserver_beta.htm[/URL]) so if you're dying to use something else, I'd give that a shot based on past experience with their tools. I haven't used this one though …
Hey everyone, I post to a bunch of forums, but always looking for new resources to learn and share. Been a developer for many years and currently working on productivity and organizational projects amongst others. I'm an OOP (Java and C#) and asp.net guru so hopefully you'll see me around …
One way of doing it is to stream the file to the client. Here's a code C# snippet as an example: [code] private void StreamToClient(string filename, byte[] fileContent) { Response.Clear(); Response.ContentType = "application/octet-stream"; Response.AddHeader("content-disposition", "attachment; filename=" + filename); Response.BinaryWrite(fileContent); Response.End(); } [/code] To pass in the bytes you could do: …
Did you find any specifics that are different about extension development. A big part of one of our projects is toolbar button integration. Haven't tested it yet in 3 beta so I'm not sure how backward compatible they are. Anybody found anything interesting so far?
Visual Studio has a fantastic 'Publish Web Site' option under the Build menu. It's super easy to use and has some properties you can play with. The biggest challenge most people find is the security permissions on their application folder on the server. Just make sure that you set that …
The End.