DOK
|
Registered User
|
Senior web developer specializing in ASP.Net and SQL Server. I generally work as a contractor.
|
|
1h |
comment |
Why WordPress is so popular? You might try this out on SuperUser.com. We're more into programming here. |
|
2h |
comment |
Naming Classes - How to avoid calling everything a “<WhatEver>Manager”? It belongs in the community wiki because there is no one "best" answer. It's a discussion. |
|
2h |
revised |
How to find which control raised an event, while in so called event? Visual C# added a tag |
|
8h |
accepted | Who here is working with java/jsp as web development can you recommend it ? |
|
17h |
comment |
Sharepoint intranet portal It was hugely more difficult to do Sharepoint 2003 and .Net 2.0, so having the ability to use Sharepoint 2007 is a real benefit. |
|
21h |
revised |
Sign In with Twitter in ColdFusion edited tags |
|
22h |
comment |
get the next id Be careful with this. If you get the next id a microsecond before somebody adds another record to the table, your id will no longer be the next one. |
|
22h |
comment |
C# Resized images have black borders. What does the HTML look like that's sent to the browser for these images? |
|
22h |
comment |
Saving order preference in SQL Instead of OrderNumber, which often means something else entirely, how about naming the new column ItemSequence? The relationship between User and Item may be many-to-many, but each user might have a different order, right? |
|
23h |
answered | Best way to track changes on a website for visitors’ information |
|
23h |
comment |
How to convert a string to datetime/timestamp in Sybase Do you have that string outside of Sybase and you want to know how to insert it as a datetime? Or do you have the string in Sybase and you want to return it as a datetime? |
|
23h |
comment |
Exception: Specified cast is not valid You did a cast for UserRole. Do you need to do one for Username too? |
|
23h |
comment |
What should a tester report? Do you know the reason why they brought in a tester? |
|
1d |
comment |
Am I wrong in wanting to roll my own Authenticate / Authorize system given the following requirements? I agree with you about the Membership provider being too generic. Not only that, I have found it very difficult to customize. I would avoid it on any non-trivial project. I'd still evaluate whether learning more about authentication and authorization is worth more to you than learning about something else. If you haven't done much with it, this is a great opportunity to learn and experiment. |
|
1d |
comment |
Using comma with an update sentence Not crazy about typing extra quotes -- it would be hard to spot an error. But I totally agree that the WHERE clause is not needed. |
|
1d |
revised |
Using comma with an update sentence added coding formatting |
|
1d |
revised |
Bind a multi-dimensional ArrayList to a Gridview added tag |
|
1d |
answered | Why this performance difference? (Exception catching) |
|
1d |
answered | Am I wrong in wanting to roll my own Authenticate / Authorize system given the following requirements? |
|
1d |
comment |
How to add missing element in XML using c#. How do you know the element is missing? |
|
1d |
revised |
How do you generate website navigation? added tags |
|
1d |
comment |
How do you generate website navigation? Yes. They rely on an XML file containing the sitemap. If you aren't using ASP.Net, you might still be able to use an XML-based solution. |
|
1d |
comment |
Visual Basics - Object reference not set to an instance of an object There is more than one for loop in your code. Which one throws the exception? Does it occur on the first pass or later? Should you be checking that there are more than zero items in the collection? |
|
1d |
answered | Who here is working with java/jsp as web development can you recommend it ? |
|
1d |
revised |
Is there a way to know the invoking method? added a tag |
|
1d |
comment |
Good ASP.NET hosting in Europe I'd try ServerFault.com, where there is a tag for web-hosting so you can find similar questions. Or add a new question if you don't find your answer there. |
|
1d |
answered | Is there a way to know the invoking method? |
|
1d |
answered | Sharepoint intranet portal |
|
1d |
comment |
Sharepoint intranet portal Can you add which version of .Net and Sharepoint it will be? |
|
1d |
awarded | ● Mortarboard |
|
1d |
accepted | How would I make a webpage that would use user input to generate a .doc(x)/.pdf document /w footnotes? |
|
1d |
comment |
Upgraded to Sql Server 2008. Now one query is running really slow Here's a good reason for installing the new SQL Server version side-by-side with the old one for a while, so you can do these kinds of comparisons if you run into issues. |
|
1d |
answered | How would I make a webpage that would use user input to generate a .doc(x)/.pdf document /w footnotes? |
|
1d |
comment |
Google chrome rendering incorectly What do you mean exactly when you say it doesn't "render correctly"? |
|
1d |
comment |
How can read a file, split the strings in it, and write the output to a hashtable in C#? Amplifying on Jason's comment: the keys must be unique in a Hashtable. |
|
1d |
comment |
Should a content management system be used for small custom projects? I agree about the difficulty of using a CMS. You will spend as much time learning it and then trying to get to do what you want as you will writing the code yourself. Then, when you inevitably run into a limitation of the CMS, you'll be stuck. With your own code, you won't be stuck. |
|
1d |
comment |
Save in database didn’t work ?! (VB.NET | OLE) Does your SQL work correctly when you run it directly in the database? If you step into your code and stop right after CommandText is set, you can see the SQL being sent. Copy that and run it in the database and verify that it works correctly. |
|
1d |
comment |
Does Microsoft Team System support ant? Lots of development teams using TFS still use CruiseContrl and ant separately. If you're satisfied with ant, perhaps it isn't worth the effort to learn something else. Use the parts of TFS that add to your toolkit. |
|
1d |
answered | On-Demand javascript |
|
1d |
comment |
How Do I Find Good Graphic Designers for my Web Application Projects? If you hate to advertise yourself on here, then don't! |
|
1d |
comment |
What .NET framework “shipped” with Windows XP Win XP was released in 2001. .Net 1.0 was released in 2002. |
|
1d |
comment |
Ebook files not visible? You may be more likely to find the answer to your hardware question on SuperUser.com. We're all about programming here. |
|
Dec 4 |
comment |
How can I get Visual Studio Web Development Server (Cassini) to send the domain name of the request to the web application? This is why I advocate developing in IIS instead of Cassini. No nasty surprises when you deploy. You can hit F5 to run an application in IIS from Visual Studio |
|
Dec 4 |
revised |
deleting brackets in a file using sed code formatting |
|
Dec 4 |
comment |
Does Visual Studio 2008 have something like Delphi’s structure view? I think you can create folders manually in VS to accomplish this. But, instead of trying to emulate another IDE, you might be better off in the long run following the VS way. That will help you learn the tool. You'll really be frustrated trying to understand someone else's VS project if you don't wrap your head around this. Painful, to be sure. |
|
Dec 4 |
comment |
Sorting by two columns with LINQ (Edited). Forget it! I’ll post the answer to make things clear. Exactly which row do you want to select? |
|
Dec 4 |
revised |
Sorting by two columns with LINQ (Edited). Forget it! I’ll post the answer to make things clear. typos |
|
Dec 4 |
revised |
db design with simpledb, examples? added a tag |
|
Dec 4 |
revised |
Trying to create a click method for a div, doesn’t work in IE6? added coding format |
|
Dec 4 |
comment |
What exactly is “interface based programming”? You changed a line of code there? Which one? Perhaps you could clarify? |
