User mnour - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T17:19:55Zhttp://stackoverflow.com/feeds/user/29268http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/238217/html-to-postscript-conversion1HTML to PostScript Conversionmnour2008-10-26T16:29:37Z2009-11-18T22:14:33Z
<p>I'm searching for a free component or library that could convert HTML to PostScript ( .ps file format ). I'm using .Net framework 1.1. Any one have experience with situation like this ?</p>
http://stackoverflow.com/questions/1478821/which-open-source-survey-system-is-the-best-now/1528202#15282020Answer by mnour for which open-source survey system is the best now?mnour2009-10-06T21:27:41Z2009-10-06T21:27:41Z<p><a href="http://www.mentor-logic.com/index.php/products/components/zodiacnet" rel="nofollow">Zodiac.NET</a> survey engine seems promising but it's a commercial one. It's also developed for .NET projects.</p>
http://stackoverflow.com/questions/1481271/access-isvalid-property-of-asp-net-validators-in-javascript0Access isvalid property of ASP.NET validators in Javascriptmnour2009-09-26T13:52:49Z2009-09-27T17:11:25Z
<p>I have read <a href="http://msdn.microsoft.com/en-us/library/aa479045.aspx" rel="nofollow">here</a> that all ASP.NET validators have a property called: isvalid which can be used in the client side. However, I hav tried to access this property in the client side as following but with no luck:
alert(document.getElementById("validator_clientID").isvalid);</p>
<p>Do you have any idea why this is not accessible? </p>
<p>Your help is appreciated. Thanks!</p>
http://stackoverflow.com/questions/216313/how-to-compress-files-in-net-1-10How to compress files in .NET 1.1mnour2008-10-19T11:44:16Z2009-03-06T16:24:51Z
<p>I need to compress files in [*.zip] format in .NET 1.1. I don't want to use SharpZip for compression as I got random errors - "Access Denied" - when running it in .NET 1.1. </p>
<p>SharptZip will work properly only if I put the assembly on the GAC - which is not an option in my project. This is the problem. Check this: <a href="http://forums.asp.net/p/1139901/1839049.aspx#1839049" rel="nofollow">http://forums.asp.net/p/1139901/1839049.aspx#1839049</a></p>
http://stackoverflow.com/questions/299895/whats-wrong-with-this-asp-recursive-function/299923#2999230Answer by mnour for What's wrong with this ASP recursive function?mnour2008-11-18T19:54:04Z2008-11-18T19:54:04Z<p>In each call you open a new connection to the database and you don't close it before opening a new one.</p>
http://stackoverflow.com/questions/274994/upgrading-asp-net-from-version-1-1-to-2-0-any-gotchas/275006#2750062Answer by mnour for Upgrading ASP.NET from version 1.1 to 2.0 - Any Gotchas?mnour2008-11-08T18:12:12Z2008-11-08T18:12:12Z<p>Here is my recommendation before upgrading:</p>
<ul>
<li>If you are used to use Visual Studio 2003, you will need to go for VS2005. You will have to convert the old solutions and projects so that it will be compatible with VS2005. Make sure to have a backup of the project you're going to convert so that you can roll back or even use it as source for any modification you may need to the converted projects.</li>
<li>If you're developing web applications using .NET 1.1, make sure that all the virtual directories and applications in the IIS is configured to work with ASP.NET 2.0. You may need also to configure a new Application Pool for your .NET 2.0 applications.</li>
<li>If you're using any third party libraries in your .NET 1.1 projects, you may need to confirm its compatibility with .NET 2.0 projects. Some old libraries used in .NET 1.1 are not compatible with 2.0.</li>
</ul>
http://stackoverflow.com/questions/273494/is-there-a-way-to-install-all-versions-of-all-browsers-on-one-machine/273556#2735560Answer by mnour for Is there a way to install all versions of all browsers on one machine?mnour2008-11-07T20:30:27Z2008-11-07T20:30:27Z<p>I am not sure why you really want this but if you want to install different versions of IE use the following tool:</p>
<p><a href="http://tredosoft.com/Multiple_IE" rel="nofollow">http://tredosoft.com/Multiple_IE</a></p>
http://stackoverflow.com/questions/273356/best-process-to-change-over-plain-html-pages-to-asp-net-aspx-pages/273372#273372-2Answer by mnour for Best "process" to change over plain HTML pages to ASP .NET aspx pages?mnour2008-11-07T19:41:01Z2008-11-07T19:41:01Z<p>If the new ASP.NET functionalities is minor, I would recommend to include IFrames inside your HTML which links to the new created ASP.NET pages containing your minor dynamic changes.</p>
http://stackoverflow.com/questions/264962/how-to-search-a-string-in-string-array/264985#2649850Answer by mnour for How to search a string in String array.mnour2008-11-05T12:19:42Z2008-11-05T13:19:54Z<p>Use "Any" quantifier for specify if a value exists in an array or not:</p>
<pre><code>bool exists = arr.Contains("One");
</code></pre>
http://stackoverflow.com/questions/257040/what-is-a-good-design-for-an-extensible-query-interface/257049#2570492Answer by mnour for What is a good design for an extensible query interface?mnour2008-11-02T16:56:04Z2008-11-02T17:18:33Z<p>I would also recommend to consider the "Specification Pattern" in this type of applications as a design decision for your backend. Check the following posts about "Specification Pattern":</p>
<p><a href="http://www.mattberther.com/2005/03/25/the-specification-pattern-a-primer/" rel="nofollow">http://www.mattberther.com/2005/03/25/the-specification-pattern-a-primer/</a></p>
<p><a href="http://devlicio.us/blogs/jeff_perrin/archive/2006/12/13/the-specification-pattern.aspx" rel="nofollow">http://devlicio.us/blogs/jeff_perrin/archive/2006/12/13/the-specification-pattern.aspx</a></p>
http://stackoverflow.com/questions/257052/how-to-design-multiple-lookups/257056#2570560Answer by mnour for how to design multiple lookups mnour2008-11-02T17:04:07Z2008-11-02T17:04:07Z<p>Try not to lose the scope and the target of the screen. For example, in the "Programmer" screen, you need at least to add the basic details of the new programmer item. The user shouldn't add all the details. If the user wants to add more details, he should add it later from the related "Add Programmer" screen.</p>
<p>Check GMail when you create a new filter and you need to add a new label for example. </p>
http://stackoverflow.com/questions/248696/error-after-changing-the-primary-key-to-from-pkid-to-userid/248707#2487071Answer by mnour for Error after changing the primary key to from PKID to UserIDmnour2008-10-29T22:51:34Z2008-10-29T22:51:34Z<p>Did you try to refresh the schema in the Server Explorer? Also, if you have added a connection, just try to remove or refresh it before adding your SqlDataSource.</p>
http://stackoverflow.com/questions/248688/favourite-ajax-library-for-classic-asp/248694#2486942Answer by mnour for Favourite AJAX library for classic ASP?mnour2008-10-29T22:45:38Z2008-10-29T22:45:38Z<p>Try <a href="http://jquery.com/" rel="nofollow">jQuery</a>. It's amazing!</p>
http://stackoverflow.com/questions/248683/how-can-i-do-boolean-logic-on-two-columns-in-mysql/248691#2486911Answer by mnour for How can I do boolean logic on two columns in MySQL?mnour2008-10-29T22:44:05Z2008-10-29T22:44:05Z<p>I am not sure but do you mean to concatenate?</p>
<pre><code>SELECT CONCAT(ColumnA, ColumnB) AS ColumnZ
FROM Table
</code></pre>
http://stackoverflow.com/questions/244903/why-is-a-password-salt-called-a-salt/244909#2449091Answer by mnour for Why is a password salt called a "salt"?mnour2008-10-28T21:21:42Z2008-10-28T21:21:42Z<p>Because before you hash the password, you add a random text to it. So, it looks like as if you add some "salt" to the original "food" ... password :)</p>
http://stackoverflow.com/questions/244285/how-the-heck-can-you-edit-valid-xml-in-a-webpage/244330#2443300Answer by mnour for How the heck can you edit valid XML in a webpage?mnour2008-10-28T18:31:25Z2008-10-28T18:44:55Z<p>This special character - "<" - should have replaced with other characters so that your XML will be valid. Check this link for XML special characters:</p>
<p><a href="http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references" rel="nofollow">http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references</a></p>
<p>Try also to encode your TextBlock content before sending it to the deserializer:</p>
<pre><code>HttpServerUtility utility = new HttpServerUtility();
string encodedText = utility.HtmlEncode(text);
</code></pre>
http://stackoverflow.com/questions/244246/c-alias-a-class-name/244289#2442892Answer by mnour for C#: Alias a class name?mnour2008-10-28T18:19:52Z2008-10-28T18:19:52Z<p>You can make an alias for your class by adding this line of code at the top of your code:</p>
<pre><code>using Outlook2007ColorScheme = YourNameSpace.ColorScheme;
</code></pre>
http://stackoverflow.com/questions/243469/limiting-file-attachments-to-a-sql-server-2005-db-to-a-value-8000-bytes/243495#2434950Answer by mnour for Limiting File Attachments to a SQL Server 2005 DB to a value > 8000 bytesmnour2008-10-28T14:17:58Z2008-10-28T14:17:58Z<p>I think you need to make it in the frontend. You can limit the HTTP request size in the web.config like that:</p>
<pre><code></configuration>
</system.web>
<httpRuntime maxRequestLength="60000"/>
</system.web>
</configuration>
</code></pre>
<p>You may also need to explicitly check the posted file size when the user try to upload a file more than the specified threshold.</p>
http://stackoverflow.com/questions/243110/asp-net-session-state-server-saving-unserialized-data1ASP.NET Session State Server - Saving Unserialized Datamnour2008-10-28T12:33:44Z2008-10-28T13:54:12Z
<p>As you know, in ASP.NET, you can store session data in one of following three modes:</p>
<ul>
<li>InProc</li>
<li>Session State </li>
<li>SQL Server</li>
</ul>
<p>For InProc mode, you can store any kind of data objects even it's not serializable. However, in Session State and SQL Server modes, you can only store serialized data. </p>
<p>In my project, I have a ready made portal which use "InProc" mode to store its session. I need to use Session State instead due to some scalability and failure handling issues. </p>
<p>The problem that this portal is internally storing unserialized objects in the session context (i.e The stored objects doesn't implement ISerializable interface). I have no access to their code. Is there any work around so that I can be able to store the session objects in State Server without changing their code. I still have access to their web.config file if this would help in any kind.</p>
http://stackoverflow.com/questions/242701/which-sql-statement-is-faster/242712#242712-7Answer by mnour for Which SQL statement is faster?mnour2008-10-28T09:58:23Z2008-10-28T09:58:23Z<p>Ignore JOINs whenever possible. Performance wise, Join statements are not efficient at all.</p>
http://stackoverflow.com/questions/242627/why-does-date-parse-not-return-a-date-object/242678#242678-3Answer by mnour for Why does Date.parse not return a Date object?mnour2008-10-28T09:43:45Z2008-10-28T09:43:45Z<p>And what is the problem in that? Why you need to to do it in one step? Is there any business need?</p>
http://stackoverflow.com/questions/237789/which-portals-do-you-recommend-for-the-latest-programming-technology/237815#2378152Answer by mnour for Which portals do you recommend for the latest programming technologymnour2008-10-26T10:05:33Z2008-10-26T10:19:19Z<p>Here is a list of the recommended blogs if you're into .NET development:</p>
<ul>
<li><a href="http://haacked.com" rel="nofollow">http://haacked.com</a></li>
<li><a href="http://weblogs.asp.net/scottgu/" rel="nofollow">http://weblogs.asp.net/scottgu/</a></li>
<li><a href="http://weblogs.asp.net/fredriknormen/" rel="nofollow">http://weblogs.asp.net/fredriknormen/</a></li>
<li><a href="http://www.nikhilk.net" rel="nofollow">http://www.nikhilk.net</a></li>
</ul>
http://stackoverflow.com/questions/237763/how-in-net-do-i-import-values-from-a-csv-in-the-format-i-want-using-oledb/237823#2378232Answer by mnour for How in .Net do I Import Values from a CSV in the format I want using OleDB?mnour2008-10-26T10:18:05Z2008-10-26T10:18:05Z<p>Try to use GetString() method in the reader when you need to read the column as string:</p>
<pre><code>string myStringValue = reader.GetString(0);
</code></pre>
http://stackoverflow.com/questions/236624/how-to-access-html-element-without-id/236664#2366640Answer by mnour for How to access HTML element without ID?mnour2008-10-25T16:38:53Z2008-10-25T16:46:38Z<p>Here I get the H1 elements value in a div where the H1 element which has CSS class="myheader":</p>
<pre><code>var nodes = document.getElementById("mydiv")
.getElementsByTagName("H1");
for(i=0;i<nodes.length;i++)
{
if(nodes.item(i).getAttribute("class") == "myheader")
alert(nodes.item(i).innerHTML);
}
</code></pre>
<p>Here is the markup:</p>
<pre><code><div id="mydiv">
<h1 id="myheader">Hello</h1>
</div>
</code></pre>
<p>I would also recommend to use <a href="http://www.jquery.com" rel="nofollow">jQuery</a> if you need a heavy parsing for your DOM.</p>
http://stackoverflow.com/questions/236555/compare-datatables/236625#236625-2Answer by mnour for Compare datatablesmnour2008-10-25T16:11:33Z2008-10-25T16:11:33Z<p>To avoid this blink, try to run your code in a thread running in the background.</p>
http://stackoverflow.com/questions/236553/any-tool-to-manage-checklists/236560#2365600Answer by mnour for Any tool to manage checklists?mnour2008-10-25T15:23:35Z2008-10-25T15:23:35Z<p>I am using <a href="http://www.shelltoys.com/personal_assistant/" rel="nofollow">Personal Assistant</a> By ShellToys. Very elegant and simple for keep tracking your todo list.</p>
http://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters/236386#2363863Answer by mnour for ASP.Net MVC - handling bad URL parametersmnour2008-10-25T13:13:49Z2008-10-25T13:13:49Z<p>In ASP.NET MVC, you can define a filter implementing IActionFilter interface. You will be able to decorate your action with this attribute so that it will be executed on, before or after your action.</p>
<p>In your case, you will define it to be executed "before" your action. So that, you will be able to cancel it if there is an error in the passed parameters. The key benefit here that you only write the code which checking the passed paramaters once (i.e you define it in your filter) and use it wherever you want in your controller actions.</p>
<p>Read more about MVC filters here: <a href="http://haacked.com/archive/2008/08/14/aspnetmvc-filters.aspx" rel="nofollow">http://haacked.com/archive/2008/08/14/aspnetmvc-filters.aspx</a></p>
http://stackoverflow.com/questions/236362/how-to-provide-a-session-host-object-for-use-in-both-a-windows-and-web-applicatio/236377#236377-2Answer by mnour for How to provide a Session/Host object for use in both a windows and web application?mnour2008-10-25T13:04:41Z2008-10-25T13:04:41Z<p>I guess you need to create a webservice or RESTfull service. The service will return an XML file representing your user information. You will be able to invoke the service wither from you windows or web application. </p>
http://stackoverflow.com/questions/235147/where-should-caching-occur-in-an-asp-net-mvc-application/235197#2351971Answer by mnour for Where should caching occur in an ASP.NET MVC application?mnour2008-10-24T20:43:53Z2008-10-24T21:01:18Z<p>I think the caching should somehow be related to the model. I think the controller shouldn't care more about the data. The controller responsibility is to map the data - regardless where it come from - to the views.</p>
<p>Try also to think why you need to cache? do you want to save processing, data transmission or what? This will help you to know where exactly you need to have your caching layer.</p>
http://stackoverflow.com/questions/234902/what-is-the-best-practice-for-naming-database-tables-to-provide-natural-organizat/234918#2349183Answer by mnour for What is the best practice for naming database tables to provide natural organization?mnour2008-10-24T19:16:42Z2008-10-24T19:16:42Z<p>I would use this notation i.e "UserEvent" in case this table is a representation of many-to-many relation between "User" and "Event" tables.</p>
http://stackoverflow.com/questions/1481271/access-isvalid-property-of-asp-net-validators-in-javascriptComment by mnour on Access isvalid property of ASP.NET validators in Javascriptmnour2009-10-06T00:09:26Z2009-10-06T00:09:26ZI have tried accessing it like that and it works:
bool flag = validatorname.isvalid;
For some reason, accessing isvalid through the object direct was accessible. But I don't know why getting the element using getElementById didn't retrieve the object. I have tried it event using the validator ID - not the ClientID - and it's still unaccessible. I got undefined value.http://stackoverflow.com/questions/264962/how-to-search-a-string-in-string-array/264985#264985Comment by mnour on How to search a string in String array.mnour2008-11-05T13:19:47Z2008-11-05T13:19:47Zyeah.. correct .. it was just a quick answer.. I will update the answer..http://stackoverflow.com/questions/248688/favourite-ajax-library-for-classic-asp/248694#248694Comment by mnour on Favourite AJAX library for classic ASP?mnour2008-10-29T22:59:30Z2008-10-29T22:59:30ZBut AJAX is actually for client development. Classic ASP is written in the markup so that combining javascript and jQuery calls with your code will be a piece of cake.http://stackoverflow.com/questions/244285/how-the-heck-can-you-edit-valid-xml-in-a-webpage/244330#244330Comment by mnour on How the heck can you edit valid XML in a webpage?mnour2008-10-28T18:46:39Z2008-10-28T18:46:39ZI have edited my answer and adding a sample code to encode the text before sending it to the serializer.http://stackoverflow.com/questions/243110/asp-net-session-state-server-saving-unserialized-data/243139#243139Comment by mnour on ASP.NET Session State Server - Saving Unserialized Datamnour2008-10-28T13:38:14Z2008-10-28T13:38:14ZYeah.. I see the point..http://stackoverflow.com/questions/243110/asp-net-session-state-server-saving-unserialized-data/243139#243139Comment by mnour on ASP.NET Session State Server - Saving Unserialized Datamnour2008-10-28T13:23:03Z2008-10-28T13:23:03ZI think the answer didn't resolve the issue.http://stackoverflow.com/questions/242701/which-sql-statement-is-faster/242712#242712Comment by mnour on Which SQL statement is faster?mnour2008-10-28T13:18:05Z2008-10-28T13:18:05ZDid you notice this sentence in the later link: "This comes back to the original statement, that the number of rows in a table can affect JOIN performance."http://stackoverflow.com/questions/242701/which-sql-statement-is-faster/242712#242712Comment by mnour on Which SQL statement is faster?mnour2008-10-28T13:15:34Z2008-10-28T13:15:34ZRead this: <a href="http://www.sql-server-performance.com/tips/tuning_joins_p1.aspx" rel="nofollow">sql-server-performance.com/tips/…</a>
The link show that you need to make extra stuff to be increase the performance of the join statements.http://stackoverflow.com/questions/242701/which-sql-statement-is-faster/242712#242712Comment by mnour on Which SQL statement is faster?mnour2008-10-28T13:12:41Z2008-10-28T13:12:41ZNo it's not 100% wrong! By default joins are not efficient. This is a fact. However, if you have two or more tables that are frequently joined together, then the columns used for the joins on all tables should have an appropriate index.http://stackoverflow.com/questions/243110/asp-net-session-state-server-saving-unserialized-data/243134#243134Comment by mnour on ASP.NET Session State Server - Saving Unserialized Datamnour2008-10-28T12:51:10Z2008-10-28T12:51:10ZActually, we don't have access to the code as it's a third party .NET portal. We can only make changes in the web.config.
Regarding your comment, can we include a wrapper as an external assembly/DLL and make changes to web.config to use this wrapper for object session storage?http://stackoverflow.com/questions/242698/regex-to-match-all-words-except-a-given-listComment by mnour on Regex to match all words except a given listmnour2008-10-28T09:54:37Z2008-10-28T09:54:37ZCan you give sample inputs and the expected result (match or not)?http://stackoverflow.com/questions/239628/access-how-to-execute-a-query-and-save-its-result-in-a-reportComment by mnour on Access: How to execute a query and save its result in a reportmnour2008-10-27T12:04:02Z2008-10-27T12:04:02ZWhat do you mean by report? Do you mean as HTML or word document?http://stackoverflow.com/questions/236362/how-to-provide-a-session-host-object-for-use-in-both-a-windows-and-web-applicatio/236377#236377Comment by mnour on How to provide a Session/Host object for use in both a windows and web application?mnour2008-10-25T13:35:04Z2008-10-25T13:35:04ZWell, I have suggested using webservcies because this is the ideal solution for this kind of abstraction you need across your applications. You can make a method in your webservice for login and invoked before calling: "GetUserInfo" method which retrieve the user info stored in the WS session.http://stackoverflow.com/questions/234493/how-can-i-setup-iis-with-an-ssl-cert/234516#234516Comment by mnour on How can I setup iis with an ssl cert?mnour2008-10-24T19:08:55Z2008-10-24T19:08:55ZI am not sure about that but you can make alot SSL staff directly from IIS 7 Manager in the "Administrative Tools". Check this link for creating Self-Signed SSL Certificate in IIS7: <a href="http://weblogs.asp.net/scottgu/archive/2007/04/06/tip-trick-enabling-ssl-on-iis7-using-self-signed-certificates.aspx" rel="nofollow">weblogs.asp.net/scottgu/archive/…</a>http://stackoverflow.com/questions/216430/cross-domain-user-tracking/216434#216434Comment by mnour on Cross Domain User Trackingmnour2008-10-24T11:33:30Z2008-10-24T11:33:30ZThe problem that this is require extra work to be done. You have to include that in every page you need to track.