Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~940 People Reached
Favorite Tags

7 Posted Topics

Member Avatar for daabomb2002

[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 …

Member Avatar for A_member
0
103
Member Avatar for ebabes

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 …

Member Avatar for ukerbel
0
80
Member Avatar for cancer10

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 …

Member Avatar for cancer10
0
341
Member Avatar for ukerbel

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 …

Member Avatar for nav33n
0
47
Member Avatar for dotNetDummi

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: …

Member Avatar for dotNetDummi
0
96
Member Avatar for ShawnCplus

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?

Member Avatar for ukerbel
0
158
Member Avatar for maurya_alld

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 …

Member Avatar for ukerbel
0
110

The End.