HollyStyles
|
Registered User
|
Me? ...erm ....ummmm ...yeah.
|
|
Nov 26 |
revised |
.NET DateTime object string format added 630 characters in body |
|
Nov 26 |
comment |
.NET DateTime object string format I already did that. However I did it again this time I connected as the user that ASP.NET uses to connect. and I get a different output. The login has default language set to british english. It's not an NT Account it's a SQl Server login. |
|
Nov 26 |
comment |
.NET DateTime object string format I checked that and it's correct. United kingdom. |
|
Nov 26 |
revised |
.NET DateTime object string format added 3 characters in body |
|
Nov 26 |
comment |
.NET DateTime object string format It's a SQL Datetime in the select and it remains unchanged, the ADO code uses a SqlAdapter to Fill a DataTable and returns it's default view. I understand on the wire datetimes are seconds since some startdate. I've never had this much trouble with datetimes it's so weird. |
|
Nov 26 |
comment |
How to prevent password getting reset often whenever the ajax is called? Well there you go then. I Have extended my answer, hope this helps. |
|
Nov 26 |
revised |
How to prevent password getting reset often whenever the ajax is called? added 734 characters in body; added 3 characters in body |
|
Nov 26 |
asked | .NET DateTime object string format |
|
Nov 12 |
comment |
How to prevent password getting reset often whenever the ajax is called? Password fields are always blanked out after an HTTP POST operation. |
|
Nov 12 |
comment |
How to prevent password getting reset often whenever the ajax is called? Code isn't the problem here. Is your password field inside the update panel? |
|
Nov 11 |
answered | How to prevent password getting reset often whenever the ajax is called? |
|
Nov 10 |
answered | asp.net mvc update webpage from server |
|
Nov 10 |
revised |
Edit all views and stored precedures, find and replace? deleted 48 characters in body |
|
Nov 10 |
revised |
Edit all views and stored precedures, find and replace? deleted 475 characters in body |
|
Nov 10 |
comment |
Edit all views and stored precedures, find and replace? @Saar - and truncation thpt.... |
|
Nov 10 |
revised |
Edit all views and stored precedures, find and replace? added 142 characters in body; added 24 characters in body |
|
Nov 10 |
revised |
Edit all views and stored precedures, find and replace? added 110 characters in body; deleted 458 characters in body; added 157 characters in body |
|
Nov 10 |
comment |
Edit all views and stored precedures, find and replace? @Saar - Hmm yeah the ALTER/CREATE thing CREATE is already in syscomments corrected. Not sure how any views and procedures with escaped quotes might turn out too. |
|
Nov 10 |
revised |
Define variable to use with IN operator (T-SQL) added 53 characters in body |
|
Nov 10 |
revised |
Define variable to use with IN operator (T-SQL) added 392 characters in body |
|
Nov 10 |
comment |
Define variable to use with IN operator (T-SQL) @Vilx - do you mean for setting the variable @list? if so set is fine but only sets one variable, with select you can populate several variables in one statement. As there's not much between them I'm in the habit of always using SELECT. |
|
Nov 10 |
comment |
Define variable to use with IN operator (T-SQL) @badbod99 - Thats a generalisation and all generalisations are wrong :) I have offered alternatives |
|
Nov 10 |
answered | Define variable to use with IN operator (T-SQL) |
|
Nov 10 |
comment |
Edit all views and stored precedures, find and replace? @Saar - your script doesn't search views. |
|
Nov 10 |
revised |
Edit all views and stored precedures, find and replace? added 64 characters in body |
|
Nov 10 |
accepted | SSIS Loop a list of connection strings in a master package, executing two other packages for each connection string |
|
Nov 10 |
answered | Edit all views and stored precedures, find and replace? |
|
Nov 6 |
revised |
SSIS Loop a list of connection strings in a master package, executing two other packages for each connection string deleted 19 characters in body |
|
Nov 6 |
revised |
SSIS Loop a list of connection strings in a master package, executing two other packages for each connection string added 591 characters in body |
|
Nov 6 |
revised |
SSIS Loop a list of connection strings in a master package, executing two other packages for each connection string added 148 characters in body |
|
Nov 6 |
answered | SSIS Loop a list of connection strings in a master package, executing two other packages for each connection string |
|
Nov 6 |
comment |
Can’t connect to MySQL for .NET application deployed in Wine using Ubuntu Sorry I don't have full answer for you, but from the error it looks like something to do with character encoding of the data maybe. |
|
Nov 6 |
asked | SSIS Loop a list of connection strings in a master package, executing two other packages for each connection string |
|
Sep 6 |
comment |
How do you set up your .NET development tree? different versions can be shared just fine too, so not including them in the project tree doesn't mean you have to upgrade at all. |
|
Sep 4 |
comment |
ASP.NET: single and double quotes inside the text property of a Literal Literal1.Text = System.Web.HttpUtility.HtmlEncode("This is my \"text\", isn't it pretty?"); |
|
Aug 27 |
revised |
Multiple TransactionScope problem added 243 characters in body |
|
Aug 27 |
comment |
Multiple TransactionScope problem @boj: because it has an example of usage with good comments explaining what occurs and when. |
|
Aug 27 |
comment |
What is an excellent software architecture? Object Oriented Skeptic C Fanboy - OOSCF a new acronym is born! My sympathies :( |
|
Aug 27 |
answered | Multiple TransactionScope problem |
|
Aug 27 |
comment |
Newbie Question - Looking for an example of C# GUI to browse SqlServer 2005 database What's wrong with MS Sql Server Management Studio? or am I missing something? |
|
Aug 27 |
comment |
asp.net gridview checkbox selection @Supremester: No problem. Accepting the answer accepts all comments also. I've Edited my answer to match your edits. |
|
Aug 27 |
revised |
asp.net gridview checkbox selection deleted 16 characters in body |
|
Aug 27 |
comment |
DataList Set SelectedIndex from DataKey Value Shouldn't you use the DataBound event? bind everything first, then find the item and select it at the end. |
|
Aug 27 |
accepted | asp.net gridview checkbox selection |
|
Aug 27 |
comment |
I have a code below - works great in IE and Opera, but does not work at all in Firefox / Netscape. Any ideas? @mck89: I know what you mean. But I would always maintain document.GetElementById("id") is best if not using a framework. What I should have said is: 'Not a good standard' my bad. |
|
Aug 27 |
comment |
when working with a repeater would you declare a new datacontext on every itemdatabound? That's part way there. Then you have a resident datacontext in RAM with all it's object tracking baggage and you still hit the DB for each row. Better to cache the data itself no? |
|
Aug 27 |
accepted | when working with a repeater would you declare a new datacontext on every itemdatabound? |
|
Aug 27 |
comment |
asp.net gridview checkbox selection Made some edits. Yuo could attach a selectedIndexChanged to the CheckBox but as I was writing it I thought that really smells as a solution. |
|
Aug 27 |
revised |
asp.net gridview checkbox selection deleted 196 characters in body |
|
Aug 27 |
revised |
asp.net gridview checkbox selection added 648 characters in body |
