I'm a software engineer with a strong passion for business.
|
2d
|
|
comment |
How to add web application to default website in IIS 7 A better fit on serverfault.com |
|
2d
|
|
comment |
How to deserialize json to multiple types dynamically in c# Possible duplicate: stackoverflow.com/questions/3142495/… |
|
May
13 |
|
comment |
how to submit id from one page and get on another page in ASP.NET using C# Why loop over the collection for a single item? You can access the item directly with a proper null wrapper. |
|
May
10 |
|
revised |
Extracting the contents of a zipped tab delimited file from a byte array Tags are not needed in title. |
|
May
7 |
|
awarded | Necromancer |
|
May
6 |
|
answered | Difference between Page Methods and Web API in asp.net |
|
May
4 |
|
awarded | Enthusiast |
|
May
1 |
|
comment |
Length cannot be less than zero Have you stepped through it with the debugger to be sure you have more than an empty string? |
|
Apr
30 |
|
comment |
Enable Single Sign-On using C# Why can't you use Windows Authentication? stackoverflow.com/questions/5321671/… |
|
Apr
30 |
|
comment |
How can I select the record with the 2nd highest salary in Oracle? @Tech-user I hope this user isn't at the interview now hoping StackOverflow will get the job for him/her :| |
|
Apr
29 |
|
revised |
Ruby on Rails Model Relationships Corrected misspelled author name and provided link to tutorial mentioned. |
|
Apr
29 |
|
reviewed | Edit suggested edit on Ruby on Rails Model Relationships |
|
Apr
29 |
|
reviewed | Approve suggested edit on Pseudocode example of quicksort using concurrency |
|
Apr
29 |
|
reviewed | Approve suggested edit on IText html header/footer and table overlapping |
|
Apr
29 |
|
comment |
SaveFileDialog doesn't work @fitz_lucassen In that case, you need to use code similar to my answer to create an HttpHandler that would serve this file. You don't need to save the file first you can output the excel file to a MemoryStream and then serve that MemorySteam using your HttpHandler. |
|
Apr
29 |
|
comment |
fetching date and time into excel sheet through c# @pranav Moved the comment to an answer. Glad I could help. |
|
Apr
29 |
|
answered | fetching date and time into excel sheet through c# |
|
Apr
29 |
|
comment |
fetching date and time into excel sheet through c# Have you tried expanding the column width? Hash signs in Excel generally mean there is more data than the current column width allows to be shown and it can't truncate it. |
|
Apr
29 |
|
comment |
SaveFileDialog doesn't work @fitz_lucassen I don't understand what you mean. Where is the code executing and what is the expected results? What is the topology as well (Web Server, File Server, etc.)? Add as much detail in the question as is feasible and I'll attempt to clarify my answer. |
|
Apr
29 |
|
comment |
Generate sequential number with a prefix @LordRelix I would keep it as simple as adding a column on the table called "IdPrefix" (or similar) and whenever I return the customer ID I would concatenate that column with the Id column. Then you're free to store whatever prefix you need on account creation and never need to adjust it later (if anything changes regarding prefixes being added or removed or etc.). |