124 reputation
210
bio website
location Ukraine
age
visits member for 2 years, 6 months
seen 18 hours ago
stats profile views 31

Jun
9
answered ActionResult - Service
May
9
comment Facebook share from within an Iframe which directs to a Parent page
If you are sharing the parent page then the description, title and thumbnail of the parent page will be used during sharing. There is no way to change that. Facebook will get those info from the meta tags of the exact page that is shared.
May
9
comment Facebook share from within an Iframe which directs to a Parent page
Is the parent page on the same domain as the page in the iframe?
May
6
comment Find keyword in text when keyword match certain conditions - C#
This code won't work properly because there is a critical defect in the FindAndReplaceKeywordWithAnchor method. node.InnerHtml.Contains(keyword) will return true if your tag is in the text even as part of some word. So if you need "son" but there is a "Jason" it will return true. And then your break will cancel the loop so "son" won't be found. You need to change node.InnerHtml.Contains(keyword) to regex.IsMatch(node.InnerHtml) where regex is new Regex(pattern).
Dec
19
awarded  Popular Question
Dec
10
awarded  Popular Question
Nov
30
comment Language strings in .resx-files or Redis?
How do you update your translations when releasing? Do you run some queries to add the new strings? Or do you use a separate database for the translations and use it both for dev and production? Or have you found a better solution?
Nov
30
comment Language strings in .resx-files or Redis?
I am wondering about the same question. Have you found an answer? What solution have you chosen?
Nov
27
awarded  Notable Question
Oct
17
revised DownloadString timed out
added 1 characters in body
Oct
15
comment How to run .NET 4 code analysis on build server
What value should be set to StanDir?
Sep
27
comment Empty input type file doesn't work in IE
The same issue is in Opera. But this solution doesn't work for Opera:/
Jun
6
awarded  Self-Learner
Feb
25
accepted EF 4.3 Code First one-to-one relationship when using an existing database
Feb
25
answered EF 4.3 Code First one-to-one relationship when using an existing database
Feb
22
awarded  Commentator
Feb
22
comment EF 4.3 Code First one-to-one relationship when using an existing database
@rfmodulator, Well yes:) But in real life things are not so easy. So you think that EF wasn't created/tested for the purpose I am trying to use it?
Feb
22
asked EF 4.3 Code First one-to-one relationship when using an existing database
Jan
23
awarded  Enthusiast
Jan
21
accepted DownloadString timed out