User Aleksandar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T23:00:35Zhttp://stackoverflow.com/feeds/user/29511http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/217655/using-entity-framework-entities-as-business-objects9Using Entity Framework entities as business objects?Aleksandar2008-10-20T06:34:59Z2009-09-23T10:06:55Z
<p>I'm using Entity Framework O/R mapper from Microsoft and using entity classes (generated classes that are mapped to DB objects) as a business objects.
Is this OK? Please state your cons or pros. What to do in a case of WCF communication between business layer and presentation, how to send those objects as data members?</p>
http://stackoverflow.com/questions/970486/how-do-you-transition-from-coder-to-software-professional/970551#9705512Answer by Aleksandar for How do you transition from coder to software professional?Aleksandar2009-06-09T14:55:53Z2009-06-09T14:55:53Z<p>If you are <strong>"Doing What You Love"</strong> then you are on the right course, otherwise you must master the <strong>"Loving What You Do"</strong>. Ultimately you can try to find other <strong>"Doing What You Love"</strong> job.</p>
<p>And work hard as you can of curse :) </p>
http://stackoverflow.com/questions/970336/asp-net-response-write-inside-an-ascx-aspx-file/970397#9703971Answer by Aleksandar for Asp.net Response.Write inside an ascx/aspx fileAleksandar2009-06-09T14:29:46Z2009-06-09T14:29:46Z<p>I think that is better to use Literal control and set his Text property in Page_Load or OnLoad methods in the code behind class. </p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
if (CanRemove)
{
myLiteral.Text = "<b>ProductName</b>"
}
}
</code></pre>
<p>Additionally System.Web.UI.WebControls.Literal control has an property named Mode that gives control of the rendering: </p>
<ol>
<li>PassThrough - The contents of the control are not modified; </li>
<li>Encode - The contents of the control are converted to an HTML-encoded string (can give you some defense against cross-site scripting). </li>
<li>Transform - Unsupported markup-language elements are removed from the contents of the control. If the Literal control is rendered on a browser that supports HTML or XHTML, the control's contents are not modified. </li>
</ol>
<p>Check MSDN online documentation for literal class <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.literal.aspx" rel="nofollow">link</a></p>
http://stackoverflow.com/questions/720373/polling-a-webpage-periodically/720382#7203822Answer by Aleksandar for Polling a webpage periodicallyAleksandar2009-04-06T06:30:01Z2009-04-06T06:30:01Z<p>Try with windows service. It can be set to start when system is started up without the need for someone to log in. Also check this article <a href="http://www.codeproject.com/KB/dotnet/WindowsServiceScheduler.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/WindowsServiceScheduler.aspx</a></p>
http://stackoverflow.com/questions/399941/is-it-ok-to-use-net-membershipprovider-to-have-multiple-virtual-applications-o0Is it ok to use .NET MembershipProvider to have multiple virtual "applications" on one web application?Aleksandar2008-12-30T10:30:23Z2009-03-09T21:47:02Z
<p>I want to build portal-like asp.net web application from scratch and was looking at asp.net MembershipProvider as a standard way for user's management. I created my provider inheriting from SqlMembershipProvider and override ValidateUser method:</p>
<pre><code> public override bool ValidateUser(string username, string password)
{
string temp = ApplicationName;
List<MtscApp> allApps = GetAllApplications();
foreach (MtscApp app in allApps)
{
ApplicationName = app.Name;
Roles.ApplicationName = app.Name;
if (base.ValidateUser(username, password))
{
return true;
}
}
ApplicationName = temp;
Roles.ApplicationName = temp;
return false;
}
</code></pre>
<p>I'm trying to validate entered credentials against all applications, while GetAllApplicationsMethod() gets all applications from aspnet_Applications table (I also have part for inserting applications in the same table).</p>
<p>
If validation succeed then Application name is leaved on both Membership and Roles providers, otherwise it stays on the default one which is predefined application for anonymous users.
</p>
http://stackoverflow.com/questions/510272/how-can-i-add-a-mousedown-event-handler-to-a-asp-button-control/510403#5104030Answer by Aleksandar for How can i add a MouseDown event handler to a <asp: button> control?Aleksandar2009-02-04T07:30:51Z2009-02-04T07:30:51Z<p>Use <strong>ValidationGroup</strong> property on controls that are validated and controls that triggers validation (e.g. save/update buttons) and on validators. <br /> Additionally set <strong>CausesValidation</strong> property to false on each button that does not need to trigger validation (cancel button).</p>
http://stackoverflow.com/questions/502743/asp-net-deleting-a-directory-results-in-application-restart/502848#5028481Answer by Aleksandar for ASP.NET Deleting a directory results in application restart.Aleksandar2009-02-02T10:59:53Z2009-02-02T10:59:53Z<p>For storing data files that are frequently updated, created and deleted you need to use App_Data folder in the root of the web site. MSDN for App_Data folder states:</p>
<blockquote>
<p>Contains application data files
including MDF files, XML files, as
well as other data store files. The
App_Data folder is used by ASP.NET 2.0
to store an application's local
database, which can be used for
maintaining membership and role
information.</p>
</blockquote>
<p>Also check Q&A section for App_Data folder usage: <a href="http://social.msdn.microsoft.com/Forums/en-US/Vsexpressinstall/thread/3f941c2d-d603-4998-978f-32de9a397761/" rel="nofollow">App_Data folder question</a></p>
http://stackoverflow.com/questions/373831/has-anybody-used-codeless-software-development-system/374005#3740052Answer by Aleksandar for Has anybody used codeless software development system?Aleksandar2008-12-17T08:44:20Z2008-12-17T08:44:20Z<p>Off topic... open it trough google's translate: <a href="http://translate.google.com/translate?hl=en&u=http://www.codeless.com/&sl=nl&tl=en" rel="nofollow">http://translate.google.com/translate?hl=en&u=http://www.codeless.com/&sl=nl&tl=en</a></p>
http://stackoverflow.com/questions/368803/how-can-i-find-the-location-of-the-solution-project-on-my-harddrive-in-visual-stu/368820#3688200Answer by Aleksandar for how can I find the location of the solution/project on my harddrive in Visual Studio?Aleksandar2008-12-15T16:00:11Z2008-12-15T16:00:11Z<p>When you have loaded you project in Visual Studio select the solution in the Solution explorer window and then select Properties window. You will see "Path" in the Properties window which points to the actual file.</p>
http://stackoverflow.com/questions/368169/conditional-logic-in-asp-net-page/368241#3682411Answer by Aleksandar for Conditional Logic in ASP.net pageAleksandar2008-12-15T12:38:19Z2008-12-15T12:38:19Z<p>There are may ways to do that, I'm usually using repeater's event OnItemDataBound event that occurs when repeater's item is bound to a data item.</p>
<p>To explain OnItemDataBound event let's assume that we have repeater with one field that is always displayed (Name) and optional field that is displayed if is not null (Optional). Further more we want to display some predefined value if optional field is null or empty. <br /> To do this we need first to set repeater's OnItemDataBound event to point to a method, And also to build repeater's item template. We could use any server control within repeater's item template that we can reference later in OnItemDataBound method.</p>
<pre><code><asp:Repeater ID="repeaterResults" runat="server" OnItemDataBound="repeaterResult_ItemDataDataBound">
<ItemTemplate>
<strong><%#Eval("Name") %></strong>
<asp:Literal runat="server" ID="ltlOption" />
<br />
</ItemTemplate></asp:Repeater>
</code></pre>
<p>Further let's suppose that we will bind a collection of simple objects that are having two properties :Name and Option like follows:</p>
<pre><code>public class SimpleEntity
{
public string Name {get;set;}
public string Option {get;set;}
}
</code></pre>
<p>Next we will implement repeaterResult_ItemDataDataBound method as follows:</p>
<pre><code>protected void repeaterResult_ItemDataDataBound(object sender, RepeaterItemEventArgs e)
{
SimpleEntity ent = e.Item.DataItem as SimpleEntity;
Literal ltlOption = e.Item.FindControl("ltlOption") as Literal;
if (ent != null && ltlOption != null)
{
if (!string.IsNullOrEmpty(ent.Option))
{
ltlOption.Text = ent.Option;
}
else
{
ltlOption.Text = "Not entered!";
}
}
}
</code></pre>
<p>As method above is implemented, we will display optional field if exists, while if optional field is null or empty string we will display predefined string "Not entered!".</p>
http://stackoverflow.com/questions/359422/web-user-controls-and-validation/359465#3594650Answer by Aleksandar for Web User Controls and ValidationAleksandar2008-12-11T14:07:52Z2008-12-11T14:07:52Z<p>Try adding [ValidationProperty("NameOfPropertyToBeValidated") on your user control class.</p>
http://stackoverflow.com/questions/352177/are-enums-only-named-integers-types-or-neither-of-both6Are enums only named integers, types or neither of both?Aleksandar2008-12-09T09:03:41Z2008-12-09T16:36:02Z
<p>Fun with enums in C#. Take one generic list that is created to store some Enum that you had defined previously and add few items in it. Iterate with foreach or <code>GetEnumerator<T>()</code> but specify some other enum then the original and see what happens. I was expecting InvalidCastException or something like that but it perfectly works :). </p>
<p>
For the illustration let's take a simple console application and create two enums there: Cars and Animals:
</p>
<pre><code> public enum Cars
{
Honda = 0,
Toyota = 1,
Chevrolet = 2
}
public enum Animals
{
Dog = 0,
Cat = 1,
Tiger = 2
}
</code></pre>
<p>And do this in main method:</p>
<pre><code> public static void Main()
{
List<Cars> cars = new List<Cars>();
List<Animals> animals = new List<Animals>();
cars.Add(Cars.Chevrolet);
cars.Add(Cars.Honda);
cars.Add(Cars.Toyota);
foreach (Animals isItACar in cars)
{
Console.WriteLine(isItACar.ToString());
}
Console.ReadLine();
}
</code></pre>
<p>It will print this in console:</p>
<blockquote>
<pre><code>Tiger
Dog
Cat
</code></pre>
</blockquote>
<p>Why is this happening? My first guess was that enum is not actually a Type by himself it's just and int but that's not true: If we write:</p>
<p><code>Console.WriteLine(Animals.Tiger.GetType().FullName);</code>
We will get his fully qualified name printed! So why this?</p>
http://stackoverflow.com/questions/340298/why-are-so-many-web-languages-interpreted-rather-than-compiled/340337#340337-9Answer by Aleksandar for Why are so many web languages interpreted rather than compiled?Aleksandar2008-12-04T11:54:50Z2008-12-04T11:54:50Z<p>Scripting languages where the only option for web development a long time ago. Now we have other alternatives (Java, .NET ..) so situation is not so bad. <br /></p>
<p>
C as a platform was not very successful for web development since it's hard to build a module that could be loaded and executed from web/application server, but one of the first framework for building dynamic web application was ISAPI modules for Microsoft's IIS that where mainly developed in C++ and where compiled.
</p>
http://stackoverflow.com/questions/339912/accessing-internal-property-out-of-the-assembly-scope/340195#3401950Answer by Aleksandar for Accessing internal property out of the assembly scope.Aleksandar2008-12-04T10:43:45Z2008-12-04T10:43:45Z<p>Yes I agree that this is weird design. I will go with protected modifier since <code>InternalVisibleTo</code> attribute doesn't works for me.</p>
http://stackoverflow.com/questions/339912/accessing-internal-property-out-of-the-assembly-scope2Accessing internal property out of the assembly scope.Aleksandar2008-12-04T08:37:43Z2008-12-04T10:43:45Z
<p>I have class with internal property:</p>
<pre><code>internal virtual StateEnum EnrolmentState
{
get { ..getter logic }
set { ..setter logic }
}
</code></pre>
<p>However I want to be able to access to this property outside of the assembly so I created method that simply returns this property:</p>
<pre><code>public StateEnum GetCurrentState()
{
return EnrolmentState;
}
</code></pre>
<p>But when I call this method from class outside of this assembly i get an exception <br /><code>(System.TypeLoadException: Method 'get_EnrolmentState' on type 'EnrolmentAopProxy' from assembly '44fe776f-458e-4c5d-aa35-08c55501dd43, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' is overriding a method that is not visible from that assembly.)</code></p>
<p>So it is possible to access to internal member outside of the assembly in any way? Or I should consider different approach.</p>
<p>Just to mention that this class is used as an O/R mapper entity (NPersist) and it is overrided from the O/R mapper to inject persistence code. <br /><br />
Thank you</p>
http://stackoverflow.com/questions/333865/how-can-we-identify-good-code/334308#3343081Answer by Aleksandar for How can we identify "good code"?Aleksandar2008-12-02T15:26:12Z2008-12-02T15:26:12Z<p>Good code is no code at all.</p>
http://stackoverflow.com/questions/334204/i-want-a-master-usercontrol-a-master-page-but-for-usercontrols/334240#3342400Answer by Aleksandar for I want a Master UserControl (a Master page, but for UserControls)Aleksandar2008-12-02T15:04:36Z2008-12-02T15:04:36Z<p>You could also place nested user control on a place holder control in a "master" user control.
Use Load method that accepts virtual path to ascx file to load appropriate control.</p>
http://stackoverflow.com/questions/323696/auto-update-web-application0Auto-update web applicationAleksandar2008-11-27T12:59:56Z2008-11-27T13:05:33Z
<p>I'm in a very bad situation: I need to maintain asp.net web application hosted in an environment on which I don't have any access. For every small intervention I need to go personally which includes checking procedures since it'as a government agency.
<p>
I was wondering if there is some way to partially of full update an asp.net web application from the application himself of from some other web-based tool. </p> I don't have neither remote desktop, vpn and all this should be done through http.</p>
<p>Thanks...</p>
http://stackoverflow.com/questions/316904/why-are-asp-net-pages-so-much-slower-on-localhost-than-on-the-production-server/317196#3171960Answer by Aleksandar for Why are ASP.NET pages so much slower on localhost than on the production serverAleksandar2008-11-25T12:35:55Z2008-11-25T12:35:55Z<p>Small million of things are in the game: faster network; better DB server running for a long time and having all queries already executed before; ... maybe is due to Vista :)</p>
http://stackoverflow.com/questions/299811/why-does-the-checkbox-stay-checked-when-reloading-the-page/301943#301943-1Answer by Aleksandar for Why does the checkbox stay checked when reloading the page?Aleksandar2008-11-19T13:54:25Z2008-11-19T13:54:25Z<p>It could be due to a browser caching - very useful for static web sites that are not changed too often, very bad for dynamic web applications.
<br /> Try with those two meta tags in the head section of the page. Second meta tag is for older browsers (IE5) that are not recognizing "no-cache" meta tag and although different produces the same result: Each request goes to the server.</p>
<blockquote>
<pre><code><META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
</code></pre>
</blockquote>
http://stackoverflow.com/questions/286850/localization-for-winforms-from-designmode/286885#2868850Answer by Aleksandar for Localization for Winforms from designmode?Aleksandar2008-11-13T13:19:32Z2008-11-13T13:19:32Z<p>Try with inheriting basic win controls and override OnPaint method. Example bellow is a button that has his text set on paint depending on value contained in his Tag property (let suppose that you will use Tag property to set the key that will be used to read matching resource). Then you can find some way to read all cache resource strings from xml files (e.g. fictional MyGlobalResources class.</p>
<pre><code>public class LocalizedButton : Button
{
protected override void OnPaint(PaintEventArgs pevent)
{
base.OnPaint(pevent);
this.Text = MyGlobalResources.GetItem(this.Tag.ToString());
}
}
</code></pre>
http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286556#2865561Answer by Aleksandar for FileStream StreamReader problem in C#Aleksandar2008-11-13T08:47:50Z2008-11-13T08:47:50Z<p>To read all lines in New Text Document.txt:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace testing
{
public class Program
{
public static void Main(string[] args)
{
string file = @"C:\Temp\New Folder\New Text Document.txt";
using(FileStream fs = new FileStream(file, FileMode.Open, FileAccess.Read))
{
using(StreamReader sr = new StreamReader(fs))
{
while(!sr.EndOfStream)
{
Console.WriteLine(sr.ReadLine());
}
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/16963/who-actually-uses-datagrid-gridview-formview-etc-in-production-apps/283928#2839281Answer by Aleksandar for Who actually uses DataGrid/GridView/FormVIew/etc in production apps?Aleksandar2008-11-12T13:31:06Z2008-11-12T13:31:06Z<p>GridView is fine and very powerful control and works well with css or theme. The only thing that is annoying me is that VirtualCount property was dropped when old 1.1 DataGrid was replaced with GridView in asp.net 2.0 and it was useful for implementing custom paging. However same can be done via data adapters. <br />
Though working with repeaters is maybe clearer and you have total control over rendered html still I wouldn't recommend going on that ways because is harder to implement and maintain.</p>
http://stackoverflow.com/questions/280751/what-is-the-best-practice-for-copy-local-and-with-project-references/280804#2808041Answer by Aleksandar for What is the best practice for "Copy Local" and with project references?Aleksandar2008-11-11T12:54:06Z2008-11-11T12:54:06Z<p>You can try to use a folder where all assemblies that are shared between projects will be copied, then make an DEVPATH environment variable and set <br/><br/> <code><developmentMode developerInstallation="true" /></code> <br/><br/> in machine.config file on each developer's workstation. The only thing you need to do is to copy any new version in your folder where DEVPATH variable points.</p>
<p>
Also divide your solution into few smaller solutions if possible.
</p>
http://stackoverflow.com/questions/273858/software-worth-buying/280440#2804400Answer by Aleksandar for Software worth buyingAleksandar2008-11-11T09:36:11Z2008-11-11T09:36:11Z<p>Some of Altova xml tools.</p>
http://stackoverflow.com/questions/269172/generate-random-values-from-sql/269222#2692220Answer by Aleksandar for Generate Random values from SQLAleksandar2008-11-06T15:56:34Z2008-11-06T16:53:50Z<p>According to books-on-line for rand() function: If seed is not specified, the Microsoft SQL Server 2005 Database Engine assigns a seed value at random. For a specified seed value, the result returned is always the same. <br />
You can avoid this with quick & dirty trick:</p>
<ol>
<li><p>Create view like this:</p>
<pre><code>create view [dbo].[wrapped_rand_view]
as
select rand( ) as random_value
</code></pre></li>
<li><p>Next create function that reads from the view:</p>
<pre><code>create function [dbo].[wrapped_rand]()
returns float
as
begin
declare @f float
set @f = (select random_value from wrapped_rand_view)
return @f
</code></pre></li>
</ol>
<p>In this way you have random seed each time when you call your wrapped_rand() function and distinct random value between 0 and 1.</p>
http://stackoverflow.com/questions/267872/asp-net-comparevalidator-issue/267922#2679220Answer by Aleksandar for ASP.NET CompareValidator issueAleksandar2008-11-06T08:15:31Z2008-11-06T08:15:31Z<p>CompareValidator, RegularExpressionValidator and RangeValidator validation controls are working on non-empty string values. This is useful for situations where we have an non-required field that needs to satisfy some condition when entered. </p>
<p>
For example we have a form with two fields: primary email that must be entered; and alternative email that is not required but when entered it must be validated. To validate this we would add RequiredFieldValidator and RegularExpressionValidator to the primary email and only RegularExpressionValidator to the second field.
</p>
<p>It would be tricky to validate mentioned form if RegularExpressionValidator was triggered on empty input, and we would have to change the regex in the second one to allow empty value which is considerably harder to do and mantain and not so obvious solution.</p>
http://stackoverflow.com/questions/265501/what-is-your-opinion-of-npersist0What is your opinion of nPersist?Aleksandar2008-11-05T15:32:07Z2008-11-05T15:44:37Z
<p>It's a candidate to be used for our project so if anyone has used it any opinion will be appreciated. </p>
http://stackoverflow.com/questions/265501/what-is-your-opinion-of-npersist/265529#2655290Answer by Aleksandar for What is your opinion of nPersist?Aleksandar2008-11-05T15:40:04Z2008-11-05T15:40:04Z<p>:) Actually is hosted on codeplex as an open source project - <a href="http://www.codeplex.com/PuzzleNPersist" rel="nofollow">npersist</a></p>
http://stackoverflow.com/questions/257221/asp-net-multilingual-web-application-localization0Asp.net multilingual web application - localizationAleksandar2008-11-02T19:09:43Z2008-11-02T19:18:45Z
<p>What's your opinion for the best possible way to build asp.net multilingual localized web application (only UI localization of string resources). Especially this two things:</p>
<ol>
<li>How to store resources? Xml files, resx files or something else?</li>
<li>How to handle URL's? I don't want to keep language parameter in query string all the time so I need to use URL rewriting maybe?</li>
</ol>
<p>/BR</p>
http://stackoverflow.com/questions/352177/are-enums-only-named-integers-types-or-neither-of-both/352210#352210Comment by Aleksandar on Are enums only named integers, types or neither of both?Aleksandar2008-12-10T07:19:57Z2008-12-10T07:19:57ZYes very good answer. I realize now that explicit cast between enums of any type would not fail since they are practically an integers, and there was the root of the problem.http://stackoverflow.com/questions/339912/accessing-internal-property-out-of-the-assembly-scopeComment by Aleksandar on Accessing internal property out of the assembly scope.Aleksandar2008-12-04T09:21:21Z2008-12-04T09:21:21ZYes true, I added just an example code while actual code is virtual internal property "EnrolmentState". Thanks for the commenthttp://stackoverflow.com/questions/323696/auto-update-web-applicationComment by Aleksandar on Auto-update web applicationAleksandar2008-11-27T15:46:37Z2008-11-27T15:46:37ZNot necessarily, click once application can auto-update himself against url from which was downloaded (if newer version is copied on the server with higher assemblies version). I was thinking if such solution could work for web application.http://stackoverflow.com/questions/323696/auto-update-web-applicationComment by Aleksandar on Auto-update web applicationAleksandar2008-11-27T13:36:21Z2008-11-27T13:36:21ZYes server on which the application is hosted can see internet, but due to a security issues I need to do everything through http.http://stackoverflow.com/questions/280751/what-is-the-best-practice-for-copy-local-and-with-project-references/280804#280804Comment by Aleksandar on What is the best practice for "Copy Local" and with project references?Aleksandar2008-11-12T13:39:02Z2008-11-12T13:39:02ZI'm not sure whether any suitable solution exists for loading debug/release assemblies through a DEVPATH, it's intended to be used for shared assemblies only, I wouldn't recommend it for making regular builds.
Also be aware that assembly version and GAC are overridden when using this technique.http://stackoverflow.com/questions/269172/generate-random-values-from-sql/269222#269222Comment by Aleksandar on Generate Random values from SQLAleksandar2008-11-07T08:32:06Z2008-11-07T08:32:06ZIt's assigning new seed value each time you call wrapped_rand() function so you don't have to manually set random seed which you must do when calling rand() directly. If you call rand() directly without assigning new seed every time you will get same value all the time.