User azamsharp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T00:31:05Zhttp://stackoverflow.com/feeds/user/3797http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1918305/unit-testing-entity-framework-objectcontext-in-asp-net-application0Unit Testing Entity Framework ObjectContext in ASP.NET Applicationazamsharp2009-12-16T22:36:38Z2009-12-16T23:58:45Z
<p>I am creating the Entity Framework ObjectContext per ASP.NET Request using the following code: </p>
<pre><code> public static class ObjectContextPerRequest
{
public static EStudyTestDatabaseEntities Context
{
get
{
var _context = HttpContext.Current.Items["EStudyModel"] as EStudyTestDatabaseEntities;
if(_context == null)
{
_context = new EStudyTestDatabaseEntities();
HttpContext.Current.Items.Add("EStudyModel", _context);
}
return _context;
}
}
public static void RemoveContext()
{
var _context = HttpContext.Current.Items["EStudyModel"] as EStudyTestDatabaseEntities;
if(_context != null)
{
_context.Dispose();
}
}
}
</code></pre>
<p>In the Repository I use it like this: </p>
<pre><code>public class RoleRepository : IRoleRepository
{
public IList<Role> GetAll()
{
using(var db = ObjectContextPerRequest.Context)
{
return db.RoleSet.ToList();
}
}
}
</code></pre>
<p>This works fine if I run the application. The problem is how I will unit test the Repository because I need to create a HttpContext. </p>
<pre><code> [TestFixture]
public class when_getting_all_roles
{
[Test]
public void should_get_roles_successfully()
{
var repository = new RoleRepository();
Assert.AreNotEqual(4,repository.GetAll());
}
}
</code></pre>
<p>UPDATE: </p>
<p>I can make IObjectContextPerRequest interface and ObjectContextPerRequest as shown below: </p>
<pre><code> public interface IObjectContextPerRequest
{
EStudyTestDatabaseEntities Context { get; }
void RemoveContext();
}
</code></pre>
<p>And now I can write my test as follows: </p>
<pre><code>[TestFixture]
public class when_getting_all_roles
{
[Test]
public void should_get_roles_successfully()
{
var objectContextPerRequestStub = MockRepository.GenerateStub<IObjectContextPerRequest>();
objectContextPerRequestStub.Expect(x => x.Context).Return(new EStudyTestDatabaseEntities());
var repository = new RoleRepository(objectContextPerRequestStub);
Assert.AreNotEqual(4,repository.GetAll());
}
}
</code></pre>
http://stackoverflow.com/questions/1903706/entity-framework-attaching-a-persisted-object-to-the-new-object1Entity Framework Attaching a Persisted Object to the New Objectazamsharp2009-12-14T21:44:20Z2009-12-14T23:28:42Z
<p>I am trying to perform a very simple task which is "Add the user with role in the database". The roles are already populated in the database and I am simply adding the role to the User roles collection but it keeps throwing the following exception: </p>
<p>The EntityKey property can only be set when the current value of the property is null.</p>
<p>Here is the code in User.cs: </p>
<pre><code> public void AddRole(Role role)
{
if (!Exists(role))
{
role.User = this;
Roles.Add(role);
}
}
</code></pre>
<p>And here is the test that fails: </p>
<pre><code> [Test]
public void should_save_user_with_role_successfully()
{
var _role = _roleRepository.GetByName("Student");
_user.AddRole(_role);
_userRepository.Save(_user);
Assert.IsTrue(_user.UserId > 0);
}
</code></pre>
<p>The Repository Code: </p>
<pre><code> public bool Save(User user)
{
bool isSaved = false;
using (var db = new EStudyDevDatabaseEntities())
{
db.AddToUsers(user);
isSaved = db.SaveChanges() > 0;
}
return isSaved;
}
</code></pre>
<p>Here is the AddRole Method: </p>
<pre><code> public bool Exists(Role role)
{
var assignedRole = (from r in Roles
where r.RoleName.Equals(role.RoleName)
select r).SingleOrDefault();
if (assignedRole != null) return true;
return false;
}
public void AddRole(Role role)
{
if (!Exists(role))
{
role.User = this;
Roles.Add(role);
}
}
</code></pre>
<p>And here is the whole exception: </p>
<p>------ Test started: Assembly: EStudy.Repositories.TestSuite.dll ------</p>
<p>TestCase 'EStudy.Repositories.TestSuite.Repositories.when_saving_new_user.should_save_user_with_role_successfully'
failed: System.InvalidOperationException : The EntityKey property can only be set when the current value of the property is null.
at System.Data.Objects.EntityEntry.GetAndValidateChangeMemberInfo(String entityMemberName, Object complexObject, String complexObjectMemberName, StateManagerTypeMetadata& typeMetadata, String& changingMemberName, Object& changingObject)
at System.Data.Objects.EntityEntry.EntityMemberChanging(String entityMemberName, Object complexObject, String complexObjectMemberName)
at System.Data.Objects.EntityEntry.EntityMemberChanging(String entityMemberName)
at System.Data.Objects.ObjectStateEntry.System.Data.Objects.DataClasses.IEntityChangeTracker.EntityMemberChanging(String entityMemberName)
at System.Data.Objects.DataClasses.EntityObject.set_EntityKey(EntityKey value)
at System.Data.Objects.Internal.LightweightEntityWrapper<code>1.set_EntityKey(EntityKey value)
at System.Data.Objects.ObjectStateManager.AddEntry(IEntityWrapper wrappedObject, EntityKey passedKey, EntitySet entitySet, String argumentName, Boolean isAdded)
at System.Data.Objects.ObjectContext.AddSingleObject(EntitySet entitySet, IEntityWrapper wrappedEntity, String argumentName)
at System.Data.Objects.DataClasses.RelatedEnd.AddEntityToObjectStateManager(IEntityWrapper wrappedEntity, Boolean doAttach)
at System.Data.Objects.DataClasses.RelatedEnd.AddGraphToObjectStateManager(IEntityWrapper wrappedEntity, Boolean relationshipAlreadyExists, Boolean addRelationshipAsUnchanged, Boolean doAttach)
at System.Data.Objects.DataClasses.RelatedEnd.IncludeEntity(IEntityWrapper wrappedEntity, Boolean addRelationshipAsUnchanged, Boolean doAttach)
at System.Data.Objects.DataClasses.EntityCollection</code>1.Include(Boolean addRelationshipAsUnchanged, Boolean doAttach)
at System.Data.Objects.DataClasses.RelationshipManager.AddRelatedEntitiesToObjectStateManager(Boolean doAttach)
at System.Data.Objects.ObjectContext.AddObject(String entitySetName, Object entity)
C:\Projects\EStudy\EStudySolution\EStudy.BusinessObjects\Entities\EStudyModel.Designer.cs(97,0): at EStudy.BusinessObjects.Entities.EStudyDevDatabaseEntities.AddToUsers(User user)
C:\Projects\EStudy\EStudySolution\EStudy.BusinessObjects\Repositories\UserRepository.cs(17,0): at EStudy.BusinessObjects.Repositories.UserRepository.Save(User user)
C:\Projects\EStudy\EStudySolution\EStudy.Repositories.TestSuite\Repositories\Test_UserRepository.cs(47,0): at EStudy.Repositories.TestSuite.Repositories.when_saving_new_user.should_save_user_with_role_successfully()</p>
<p>0 passed, 1 failed, 0 skipped, took 6.07 seconds (NUnit 2.5).</p>
<p>UPDATE: </p>
<p>Here is my UserRepository and RoleRepository and they both uses separate contexts: </p>
<pre><code> public bool Save(User user)
{
bool isSaved = false;
using (var db = new EStudyDevDatabaseEntities())
{
db.AddToUsers(user);
isSaved = db.SaveChanges() > 0;
}
return isSaved;
}
public Role GetByName(string roleName)
{
using (var db = new EStudyDevDatabaseEntities())
{
return db.Roles.SingleOrDefault(x => x.RoleName.ToLower().Equals(roleName.ToLower()));
}
}
</code></pre>
<p>As, you can see the user and the role are using different context which you have already pointed out. The problem with using single datacontext is that I cannot layer the application properly. </p>
http://stackoverflow.com/questions/1833298/how-to-grab-aspx-page-name-from-the-url/1834093#18340930Answer by azamsharp for How to grab .aspx Page Name from the URL?azamsharp2009-12-02T16:29:47Z2009-12-02T16:29:47Z<p>How about this: </p>
<pre><code> var pageName = System.IO.Path.GetFileName(Request.Url.ToString());
Response.Write(pageName);
</code></pre>
http://stackoverflow.com/questions/1833532/asp-net-gridview-get-hidden-field-value/1834073#18340730Answer by azamsharp for ASP.NET - GridView - Get Hidden Field Valueazamsharp2009-12-02T16:26:47Z2009-12-02T16:26:47Z<p>Check out the following article that shows how to access GridView invisible columns: </p>
<p><a href="http://www.highoncoding.com/Articles/178%5FAccess%5FGridView%5FInvisible%5FColumns.aspx" rel="nofollow">http://www.highoncoding.com/Articles/178%5FAccess%5FGridView%5FInvisible%5FColumns.aspx</a></p>
<p>The idea is to basically use a TemplateField column instead of a BoundColumn. </p>
http://stackoverflow.com/questions/1833475/how-to-tell-what-is-passed-when-no-value-exists/1834041#18340410Answer by azamsharp for How to tell what is passed when no value existsazamsharp2009-12-02T16:23:27Z2009-12-02T16:23:27Z<p>You can do something like this using Extension Methods: </p>
<pre><code>if(!Request["Name"].IsNullOrEmpty())
{
// do something with the Request["Name"] value
// OR
// You can extract the Request["Name"] into a variable and do the same with the variable
}
</code></pre>
<p>The ExtentionMethod look something like this: </p>
<pre><code> public static bool IsNullOrEmpty(this string str)
{
return String.IsNullOrEmpty(str);
}
</code></pre>
<p>Thanks! </p>
http://stackoverflow.com/questions/1024375/the-type-initializer-for-nhibernate-cfg-configuration-threw-an-exception1The type initializer for 'NHibernate.Cfg.Configuration' threw an exception.azamsharp2009-06-21T17:34:20Z2009-12-02T06:00:02Z
<p>I am using FluentNHibernate and during the configuration phase I am getting the following error: </p>
<p>Here is the configuration: </p>
<p>public static ISessionFactory CreateSessionFactory()
{
return
Fluently.Configure().Database(
MsSqlConfiguration.MsSql2000.ConnectionString(
c => c.FromConnectionStringWithKey("HighOnCodingConnectionString")))
.Mappings(m =><br />
m.FluentMappings.AddFromAssemblyOf())
.BuildSessionFactory();
}</p>
<p>And here is the error: </p>
<p>[failure] when_instantiating_a_session_factory.should_be_able_to_create_a_session_factory
TestCase 'when_instantiating_a_session_factory.should_be_able_to_create_a_session_factory'
failed: The type initializer for 'NHibernate.Cfg.Configuration' threw an exception.
System.TypeInitializationException
Message: The type initializer for 'NHibernate.Cfg.Configuration' threw an exception.
Source: NHibernate
StackTrace:
at NHibernate.Cfg.Configuration..ctor()
c:\FluentNHibernate\src\FluentNHibernate\Cfg\FluentConfiguration.cs(25,0): at FluentNHibernate.Cfg.FluentConfiguration..ctor()
c:\FluentNHibernate\src\FluentNHibernate\Cfg\Fluently.cs(16,0): at FluentNHibernate.Cfg.Fluently.Configure()
C:\Projects\highoncodingmvc\src\highoncoding\src\HighOnCoding.BusinessObjects\Factories\SessionFactory.cs(17,0): at HighOnCoding.BusinessObjects.Factories.SessionFactory.CreateSessionFactory()
C:\Projects\highoncodingmvc\src\highoncoding\src\HighOnCoding.TestSuite\Configuration\TestFluentNHiberate.cs(17,0): at HighOnCoding.TestSuite.Configuration.when_instantiating_a_session_factory.should_be_able_to_create_a_session_factory()
Inner Exception
System.IO.FileLoadException
Message: The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
Source: NHibernate
StackTrace:
at NHibernate.Cfg.Configuration..cctor()</p>
<p>Here is the log information from FusionLog thing: </p>
<p><strong>* Assembly Binder Log Entry (6/21/2009 @ 12:49:38 PM) *</strong></p>
<p>The operation failed.
Bind result: hr = 0x80070002. The system cannot find the file specified.</p>
<p>Assembly manager loaded from: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll
Running under executable C:\Projects\highoncodingmvc\src\highoncoding\src\HighOnCodingConsole\bin\Debug\HighOnCodingConsole.exe
--- A detailed error log follows. </p>
<p>=== Pre-bind state information ===
LOG: User = D9SKQBG1\AzamSharp
LOG: DisplayName = NHibernate.XmlSerializers, Version=2.0.1.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL
(Fully-specified)
LOG: Appbase = file:///C:/Projects/highoncodingmvc/src/highoncoding/src/HighOnCodingConsole/bin/Debug/
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = NULL</p>
<h1>Calling assembly : System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089.</h1>
<p>LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Projects\highoncodingmvc\src\highoncoding\src\HighOnCodingConsole\bin\Debug\HighOnCodingConsole.exe.Config
LOG: Using machine configuration file from c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
LOG: Post-policy reference: NHibernate.XmlSerializers, Version=2.0.1.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL
LOG: GAC Lookup was unsuccessful.
LOG: Attempting download of new URL file:///C:/Projects/highoncodingmvc/src/highoncoding/src/HighOnCodingConsole/bin/Debug/NHibernate.XmlSerializers.DLL.
LOG: Attempting download of new URL file:///C:/Projects/highoncodingmvc/src/highoncoding/src/HighOnCodingConsole/bin/Debug/NHibernate.XmlSerializers/NHibernate.XmlSerializers.DLL.
LOG: Attempting download of new URL file:///C:/Projects/highoncodingmvc/src/highoncoding/src/HighOnCodingConsole/bin/Debug/NHibernate.XmlSerializers.EXE.
LOG: Attempting download of new URL file:///C:/Projects/highoncodingmvc/src/highoncoding/src/HighOnCodingConsole/bin/Debug/NHibernate.XmlSerializers/NHibernate.XmlSerializers.EXE.
LOG: All probing URLs attempted and failed.</p>
http://stackoverflow.com/questions/9/how-do-i-calculate-someones-age-in-c/1811311#18113110Answer by azamsharp for How do I calculate someone's age in C#?azamsharp2009-11-28T01:58:57Z2009-11-28T01:58:57Z<p>Would this work? </p>
<pre><code>public override bool IsValid(object value)
{
_dateOfBirth = (DateTime) value;
var yearsOld = (double) (DateTime.Now.Subtract(_dateOfBirth).TotalDays/365);
if (yearsOld > 18)
return true;
return false;
}
</code></pre>
http://stackoverflow.com/questions/1793050/changing-web-content-based-on-browser-type/1793437#17934370Answer by azamsharp for Changing web content based on browser typeazamsharp2009-11-24T22:39:35Z2009-11-24T22:39:35Z<p>For ASP.NET applications you can check out the Global.asax file and Session_BeginRequest event. </p>
http://stackoverflow.com/questions/1793332/check-if-email-address-really-exists-with-a-service-via-ajax-not-regularexp-rea/1793412#17934122Answer by azamsharp for check if email address really exists with a service via ajax (not regularexp) real time if it reallly exists.azamsharp2009-11-24T22:36:13Z2009-11-24T22:36:13Z<p>Checking if the email address is legitimate is hard. Although there are some techniques you can use. Here is a simple technique that uses an image to make sure that the email address is a correct one. Please note that there are many ways this technique will fail. This includes the email server not allowing the images to be downloaded. But any how you can check out the following technique. </p>
<p><a href="http://azamsharp.com/Posts/153%5FGet%5FNotified%5FWhen%5FUser%5FChecks%5FEmail.aspx" rel="nofollow">http://azamsharp.com/Posts/153%5FGet%5FNotified%5FWhen%5FUser%5FChecks%5FEmail.aspx</a></p>
http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1765695#17656950Answer by azamsharp for What are the biggest potential time wasters in development?azamsharp2009-11-19T18:55:41Z2009-11-19T18:55:41Z<p>Boring useless meetings that serves as time vampire! </p>
http://stackoverflow.com/questions/1745381/modalpopup-codebehind-function-wait-for-user-response/1746458#17464580Answer by azamsharp for ModalPopup CodeBehind Function Wait For User Responseazamsharp2009-11-17T03:47:12Z2009-11-17T03:47:12Z<p>I have read your question couple of times and I am having hard time understanding what you are trying to do. Can you please explain in detail the problem? </p>
http://stackoverflow.com/questions/1746064/what-is-a-good-web-host-that-is-developer-friendly-for-what-i-am-trying-to-do-a/1746447#17464470Answer by azamsharp for What is a good web host that is "developer-friendly" for what I am trying to do and learn?azamsharp2009-11-17T03:43:49Z2009-11-17T03:43:49Z<p>I will go with Scott! I have used Webhost4life for the past 4 years and I am completely satisfied with their service. </p>
http://stackoverflow.com/questions/1452742/watir-with-ironruby0Watir with IronRuby!azamsharp2009-09-21T03:14:43Z2009-11-13T20:00:03Z
<p>Has anyone used Watir with IronRuby successfully? I am getting an error that the required file 'Watir' was not found. What path do I need to set to get this file to work in IronRuby? </p>
<p>For some reason my igem command is not working: </p>
<p>C:\DevTools\IronRuby\ironruby\Merlin\Main\Languages\Ruby\Scripts\bin>igem instal
l watir
'"C:\DevTools\IronRuby\ironruby\Merlin\Main\Languages\Ruby\Scripts\bin\ir.exe"'
is not recognized as an internal or external command,
operable program or batch file.</p>
<p>I am using 0.9 version of Ironruby. </p>
<p>I remember that in 0.9 you have to indicate the ir tool: I used the following and got the error again! </p>
<p>C:\DevTools\IronRuby\ironruby\Merlin\Main\Languages\Ruby\Scripts\bin>ir igem ins
tall watir
ERROR: While executing gem ... (RangeError)
bignum too big to convert into Fixnum</p>
<p>The current version of RubyGems is 1.3.5: </p>
<p>C:\DevTools\IronRuby\ironruby\Merlin\Main\Languages\Ruby\Scripts\bin>ir igem -v
1.3.5</p>
<p>I even tried using the full path: </p>
<pre><code>require File.dirname(__FILE__) + "C:/ruby/lib/ruby/gems/1.8/gems/commonwatir-1.6.2/lib/watir.rb"
</code></pre>
http://stackoverflow.com/questions/1721115/how-to-bind-an-asp-net-details-view-to-an-object-with-a-liststring-property/1723674#17236740Answer by azamsharp for How to bind an Asp.NET details view to an object with a List<string> propertyazamsharp2009-11-12T16:50:29Z2009-11-12T16:50:29Z<p>You can also use the Extension Methods so you don't explicitly have to make the methods for this task on all of your pages. </p>
<pre><code><asp:TextBox TextMode="MultiLine" ID="txtQuotes" runat="server" Text='<%# ((List<String>) Eval("Quotes")).ToMultiLine() %>' />
public static class ExtensionMethods
{
public static string ToMultiLine(this List<String> list)
{
return String.Join("\n", list.ToArray());
}
}
</code></pre>
http://stackoverflow.com/questions/1717086/hyperlinks-not-clickable-when-exported-to-excel/1718627#17186270Answer by azamsharp for Hyperlinks not Clickable when Exported to excelazamsharp2009-11-11T22:47:31Z2009-11-11T22:47:31Z<p>One of the ways is to show the result of the query in a grid like GridView control and then export the Grid. This will causes the underlying HTML to get exported as well (i.e GridView HTML and all the controls inside the GridView). </p>
<p>After that when you open the Excel file you will see the links intact. Here is an article which talks about exporting GridView to excel. </p>
<p><a href="http://www.highoncoding.com/Articles/197%5FExtensive%5FStudy%5Fof%5FGridView%5FExport%5Fto%5FExcel.aspx" rel="nofollow">http://www.highoncoding.com/Articles/197%5FExtensive%5FStudy%5Fof%5FGridView%5FExport%5Fto%5FExcel.aspx</a></p>
http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1703905#17039050Answer by azamsharp for What are common UI misconceptions and annoyances?azamsharp2009-11-09T21:21:06Z2009-11-09T21:21:06Z<p>I really hate the UI which greets you using voice! </p>
<p>Sometimes it is even hard to find which window is produced the voice. </p>
http://stackoverflow.com/questions/1669956/jquery-json-plugin-tojson-a-custom-object1JQuery JSON Plugin toJSON a Custom Objectazamsharp2009-11-03T20:30:02Z2009-11-03T20:34:13Z
<p>I am using the JQuery json plugin and trying to convert a custom object to JSON using the toJSON function. Here is the object: </p>
<pre><code>function Customer(firstName, lastName, age) {
Customer.prototype.firstName = firstName;
Customer.prototype.lastName = lastName;
Customer.prototype.age = age;
}
</code></pre>
<p>And here is the $.toJSON applied: </p>
<pre><code> var customer = new Customer('mohammad', 'azam', 28);
var a = $.toJSON(customer);
</code></pre>
<p>For some reason "a" is always empty. </p>
<p>But if I use the following code: </p>
<p>var params = new Object();
params.firstName = 'Mohammad';
params.lastName = 'Azam';
params.age = 28;</p>
<p>var a = $.toJSON(params); </p>
<p>then it works fine! </p>
<p>What am I missing when trying to perform toJSON on a custom object. </p>
http://stackoverflow.com/questions/1662003/stop-debugger-to-debug-il0Stop Debugger to Debug ILazamsharp2009-11-02T15:36:16Z2009-11-02T15:47:23Z
<p>My debugger keep jumping into debugging the IL instead of jumping to debug code of another assembly. How can I turn it off? </p>
http://stackoverflow.com/questions/1654666/wcf-service-updating-the-service-url-easy-way0WCF Service Updating the Service URL (Easy Way)azamsharp2009-10-31T15:10:29Z2009-10-31T15:16:09Z
<p>There is a WCF service that I was using and now it is pointing to a new URL. Is there anyway to go and change the URL without having to delete the service from the project and add it again using the new URL. </p>
<p>The problem with deleting the service is stupid TFS is giving problems. Any suggestions how I can update the service url without deleting the service? </p>
http://stackoverflow.com/questions/1646113/timeout-question-about-invoking-a-remote-wcf-service0Timeout Question about Invoking a Remote WCF Serviceazamsharp2009-10-29T19:46:47Z2009-10-29T20:39:56Z
<p>When I invoke a remote WCF service I get the following timeout: </p>
<p>The request channel timed out while waiting for a reply after 00:00:59.2810338. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.</p>
<p>Please note that I am sending a single object which is LOADED with a LOT of data. </p>
<p>Any ideas how to fix this issue and is this a problem on the client (ME) or the Server. </p>
http://stackoverflow.com/questions/1619307/programmatically-start-an-asp-net-integrated-webserver-with-visual-studio-files/1620035#16200351Answer by azamsharp for Programmatically start an asp.net integrated webserver with visual studio filesazamsharp2009-10-25T04:43:07Z2009-10-25T04:43:07Z<p>Hi Mixmasterxp, </p>
<p>Check out the following article in which I have used C# to start the webdev server. </p>
<p><a href="http://www.highoncoding.com/Articles/367%5FUnit%5FTesting%5FASP%5FNET%5FPages%5FUsing%5FWatiN.aspx" rel="nofollow">http://www.highoncoding.com/Articles/367%5FUnit%5FTesting%5FASP%5FNET%5FPages%5FUsing%5FWatiN.aspx</a></p>
http://stackoverflow.com/questions/1608714/how-to-avoid-argument-validation/1609002#16090021Answer by azamsharp for How to avoid argument validationazamsharp2009-10-22T18:07:04Z2009-10-22T18:07:04Z<p>You can try using the Castle Validation Framework => <a href="http://www.castleproject.org/activerecord/documentation/v1rc1/usersguide/validation.html" rel="nofollow">http://www.castleproject.org/activerecord/documentation/v1rc1/usersguide/validation.html</a> </p>
<p>OR </p>
<p>You can use a simple validation framework that I created. Both the frameworks uses Attribute based validation. Check out the link below: </p>
<p><a href="http://www.highoncoding.com/Articles/424%5FCreating%5Fa%5FDomain%5FObject%5FValidation%5FFramework.aspx" rel="nofollow">http://www.highoncoding.com/Articles/424%5FCreating%5Fa%5FDomain%5FObject%5FValidation%5FFramework.aspx</a></p>
http://stackoverflow.com/questions/1606784/convert-bitmap-to-image-c/1608444#16084440Answer by azamsharp for convert bitmap to image c#azamsharp2009-10-22T16:33:08Z2009-10-22T16:33:08Z<p>You might be forgetting to set the Response.Headers. Check out the following example that shows how to create bar chart images and then display it on the screen: </p>
<p><a href="http://www.highoncoding.com/Articles/399%5FCreating%5FBar%5FChart%5FUsing%5F%5FNET%5FGraphics%5FAPI.aspx" rel="nofollow">http://www.highoncoding.com/Articles/399%5FCreating%5FBar%5FChart%5FUsing%5F%5FNET%5FGraphics%5FAPI.aspx</a></p>
http://stackoverflow.com/questions/1608183/creating-a-custom-api-in-asp-net/1608419#16084190Answer by azamsharp for Creating a custom API in ASP.NETazamsharp2009-10-22T16:28:25Z2009-10-22T16:28:25Z<p>It seems like you are trying to build a bug tracker. If you want to build it from scratch just for fun then check out health monitoring system of ASP.NET 2.0. Also, check out ELMAH it is super awesome. </p>
<p>Here is a screencast showing off how easy it is to setup ELMAH: </p>
<p><a href="http://www.highoncoding.com/Articles/458%5FPlugging%5FElmah%5Finto%5FWeb%5FApplication%5Fto%5FCatch%5FUnhandled%5FExceptions.aspx" rel="nofollow">http://www.highoncoding.com/Articles/458%5FPlugging%5FElmah%5Finto%5FWeb%5FApplication%5Fto%5FCatch%5FUnhandled%5FExceptions.aspx</a></p>
http://stackoverflow.com/questions/1607578/binding-dataset-to-gridview/1608356#16083560Answer by azamsharp for Binding DataSet to GridViewazamsharp2009-10-22T16:18:01Z2009-10-22T16:18:01Z<p>You need to return anonymous type to get all the properties you need or else it will return all the public properties which will also include RowError and HasErrors. Here is the code that I have used: </p>
<pre><code> gvCustomers.DataSource = from c in ds.Tables[0].AsEnumerable()
where c["FirstName"].ToString().StartsWith("J")
select new { FirstName = c["FirstName"].ToString(), LastName = c["LastName"].ToString() };
gvCustomers.DataBind();
</code></pre>
<p>Since, DataTable is not IEnumerable I used the AsEnumerable() method which will return a strongly type collection of DataRow. You can also explicitly specify the type as shown in the following code: </p>
<pre><code> gvCustomers.DataSource = from DataRow c in ds.Tables[0].Rows
where c["FirstName"].ToString().StartsWith("J")
select new { FirstName = c["FirstName"].ToString(), LastName = c["LastName"].ToString() };
gvCustomers.DataBind();
</code></pre>
<p>Hope it helps! </p>
http://stackoverflow.com/questions/1603947/using-findcontrol-accessing-controls-in-a-formview/1604404#16044040Answer by azamsharp for Using FindControl: Accessing Controls in a Formviewazamsharp2009-10-22T00:29:18Z2009-10-22T00:29:18Z<p>You need to use recursive FindControl method in order to access the elements inside the FormView control. There are many implementations available and one of them is linked below: </p>
<p><a href="http://www.highoncoding.com/Articles/606%5FCreating%5Fa%5FBetterFindControl%5Fand%5FMuchBetterFindControl.aspx" rel="nofollow">http://www.highoncoding.com/Articles/606%5FCreating%5Fa%5FBetterFindControl%5Fand%5FMuchBetterFindControl.aspx</a></p>
http://stackoverflow.com/questions/1577918/blocking-comment-spam-without-using-captcha/1578414#15784140Answer by azamsharp for Blocking comment spam without using captchaazamsharp2009-10-16T14:31:53Z2009-10-16T14:31:53Z<p>I have reduced about 99% of spam on my website through a simple mathematical question like the following: </p>
<p>What is 2+4 [TextBox] </p>
<p>The user will be able to submit the question/comment if they answer "6". </p>
<p>Works for me and similar solution works for Jeff Atwood from Coding Horror!</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/1574793#15747932Answer by azamsharp for Great programming quotesazamsharp2009-10-15T20:21:27Z2009-10-15T20:21:27Z<p>I am not smart I just screwed up first! </p>
<p>I am not smart I just stay with problems longer. </p>
http://stackoverflow.com/questions/1560936/run-an-nunit-test-without-using-the-mouse/1561091#15610910Answer by azamsharp for Run an NUnit test without using the mouse?azamsharp2009-10-13T15:42:38Z2009-10-13T15:42:38Z<p>If you go to Tool=> Options => Keyboard then you can create a new shortcut key to run the unit test for a method or the complete suite. Just pick up the command from the list and assign a key. </p>
http://stackoverflow.com/questions/55083/opening-a-pdf-in-wpf-application2Opening a PDF in WPF Applicationazamsharp2008-09-10T19:19:52Z2009-10-12T21:59:59Z
<p>Hi, </p>
<p>Any ideas how to open a PDF file in a WPF Windows Application? </p>
http://stackoverflow.com/questions/1918305/unit-testing-entity-framework-objectcontext-in-asp-net-application/1918652#1918652Comment by azamsharp on Unit Testing Entity Framework ObjectContext in ASP.NET Applicationazamsharp2009-12-17T01:26:06Z2009-12-17T01:26:06ZThat is pretty much what I ended up doing! In real application I would leverage the power of IOC container. http://stackoverflow.com/questions/1903706/entity-framework-attaching-a-persisted-object-to-the-new-object/1903815#1903815Comment by azamsharp on Entity Framework Attaching a Persisted Object to the New Objectazamsharp2009-12-15T01:12:45Z2009-12-15T01:12:45ZThanks! I think I will go the HttpRequest way since it is an ASP.NET MVC application. http://stackoverflow.com/questions/1903706/entity-framework-attaching-a-persisted-object-to-the-new-object/1903815#1903815Comment by azamsharp on Entity Framework Attaching a Persisted Object to the New Objectazamsharp2009-12-14T22:33:34Z2009-12-14T22:33:34ZThanks! I have updated my response! http://stackoverflow.com/questions/1903706/entity-framework-attaching-a-persisted-object-to-the-new-object/1903815#1903815Comment by azamsharp on Entity Framework Attaching a Persisted Object to the New Objectazamsharp2009-12-14T22:09:42Z2009-12-14T22:09:42ZI updated the original post! There is User table, Roles table and UserRoles. Roles is pre populated. UserRoles has UserId and RoleId. http://stackoverflow.com/questions/1903706/entity-framework-attaching-a-persisted-object-to-the-new-objectComment by azamsharp on Entity Framework Attaching a Persisted Object to the New Objectazamsharp2009-12-14T21:55:29Z2009-12-14T21:55:29ZNo just the Table Users and Roles (custom tables not associated with authentication).
http://stackoverflow.com/questions/9/how-do-i-calculate-someones-age-in-c/1811311#1811311Comment by azamsharp on How do I calculate someone's age in C#?azamsharp2009-12-09T02:32:12Z2009-12-09T02:32:12ZNegative rater please explain the reason!!!http://stackoverflow.com/questions/1833643/best-way-to-refresh-pageComment by azamsharp on Best way to refresh pageazamsharp2009-12-02T15:57:14Z2009-12-02T15:57:14ZI am confused how do you know which item is removed from the Repeater control. Since, I don't see you passing any ID or index values. http://stackoverflow.com/questions/1816826/asp-net-ajax-toolkit-what-is-the-maximum-number-of-items-in-comboboxComment by azamsharp on ASP.NET Ajax Toolkit: What is the maximum number of items in ComboBox?azamsharp2009-11-29T23:30:12Z2009-11-29T23:30:12ZCan you explain what do you mean by stops working? http://stackoverflow.com/questions/1815197/how-to-pass-session-value-from-code-behind-to-javascriptComment by azamsharp on how to pass session value from code behind to javascriptazamsharp2009-11-29T23:02:50Z2009-11-29T23:02:50ZIs there any specific point where you need the value? Like a click of a button or something! http://stackoverflow.com/questions/321568/vs2008-debugging-with-firefox-as-default-browser-how-to-make-the-debugger-stop/471509#471509Comment by azamsharp on VS2008 debugging with firefox as default browser - how to make the debugger stop/close on exit?azamsharp2009-11-19T16:46:56Z2009-11-19T16:46:56ZI have experienced that when debugging an application using VS 2008 it opens a new FF window for each time F5 is pressed (debugging started). I wonder if it can use the existing opened FF window for debugging. http://stackoverflow.com/questions/1726073/is-it-something-bad-to-use-brComment by azamsharp on Is it something bad to use <BR />?azamsharp2009-11-12T23:20:33Z2009-11-12T23:20:33ZThe best way to find the best answer is go to your dev team and ask them WHY?http://stackoverflow.com/questions/1720355/get-dataset-in-rowcommand-event-get-modified-rows-in-rowcommandComment by azamsharp on Get DataSet in RowCommand event/Get modified rows in RowCommandazamsharp2009-11-12T15:46:02Z2009-11-12T15:46:02ZHow are you updating your DataSet using your GridView control? Are you using any type of data source controls like SqlDataSource etc. http://stackoverflow.com/questions/1669956/jquery-json-plugin-tojson-a-custom-object/1669979#1669979Comment by azamsharp on JQuery JSON Plugin toJSON a Custom Objectazamsharp2009-11-03T20:41:46Z2009-11-03T20:41:46ZThis article says that by using prototype you will add the properties to the instance of the Object => <a href="http://www.javascriptkit.com/javatutors/proto2.shtml" rel="nofollow">javascriptkit.com/javatutors/proto2.shtml/…</a>
http://stackoverflow.com/questions/1669956/jquery-json-plugin-tojson-a-custom-object/1669979#1669979Comment by azamsharp on JQuery JSON Plugin toJSON a Custom Objectazamsharp2009-11-03T20:36:49Z2009-11-03T20:36:49ZYou are right! Thanks :D http://stackoverflow.com/questions/1662003/stop-debugger-to-debug-il/1662069#1662069Comment by azamsharp on Stop Debugger to Debug ILazamsharp2009-11-02T15:54:26Z2009-11-02T15:54:26ZYou are right for some reason those assemblies were missing! Not sure what happened as I was using them last week and never deleted them. Thanks!