User Vikas - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:37:58Z http://stackoverflow.com/feeds/user/74988 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1825213/how-to-create-thumbnail-images-in-classic-asp 1 How to create thumbnail images in classic asp? Vikas 2009-12-01T10:05:51Z 2009-12-01T20:22:40Z <p>I found the best solution in <a href="http://www.codeproject.com/KB/asp/thumbtools2.aspx" rel="nofollow">codeproject</a></p> <p>But to enable that, I need to register the com object first.</p> <p>So is there any other way to create thumbnails with out using any third party?</p> <p>In about example we have to use CxImageATL.dll. If we can't do without third party then, Is there any other way to use this dll with out registering the dll on server?</p> http://stackoverflow.com/questions/882405/reportviewer-datasource-in-asp-net-mvc 2 Reportviewer datasource in asp.net-mvc Vikas 2009-05-19T12:20:31Z 2009-11-21T10:55:43Z <p>How do I integrate reportviewer in asp.net mvc project?</p> <p>I want to add business objects of MVCProject.Model namespace.</p> <p>Reportviewer allows Business objects of DataSet.</p> <p>Is it possible to choose other data source? Like LINQ data source... or Direct object to LINQ-to-SQL class objects.</p> <p>What would be the best solution to add reports in MVC project?</p> http://stackoverflow.com/questions/801022/data-entry-screen-in-asp-net-mvc 0 Data entry screen in asp.net MVC Vikas 2009-04-29T05:43:04Z 2009-11-19T11:00:06Z <p>You may thick that it is a silly question but I am confused!</p> <p>I have a situation that I have a Lecture table.</p> <p>And I want to store attendance of who have registered for it.</p> <p>I have master table of People who will register, lecture table, and Important one table is attendance that stores P.k. as f.k. of rest of the table.</p> <p>On Index view of lecture operator will select Attendance and enter attendance information.</p> <p>My problem It show only one page for attendance entry and that page can also open open in <strong>EDIT mode</strong>, for editing attendance.</p> <p>So what would be the design of the page and process flow of taking attendance? </p> http://stackoverflow.com/questions/847232/how-do-i-use-server-transfer-method-in-asp-net-mvc 0 How do I use Server.Transfer method in asp.net MVC? Vikas 2009-05-11T08:45:39Z 2009-11-11T01:42:11Z <p>I am trying to use it for Login page.</p> <pre><code>if (Session["UserID"] == null) Server.Transfer("/Account/Login", true); </code></pre> <p>But I get The Exception -> Error executing child request /Account/Login.</p> http://stackoverflow.com/questions/1617402/the-request-failed-or-the-service-did-not-respond-in-a-timely-fashion 0 The request failed or the service did not respond in a timely fashion? Vikas 2009-10-24T08:49:31Z 2009-10-24T21:18:12Z <p>I have the following error while I connect to SQL Server 2008 Management Studio with Windows authentication.</p> <pre><code>"The request failed or the service did not respond in a timely fashion. Consult the event log or other applicable error logs for details." </code></pre> <p>Is anybody tell me why i am getting this error, whereas my SQL Server is running under network service built in a/c????</p> <p>I googled it but not getting solution..</p> <p>Thanks</p> http://stackoverflow.com/questions/1571938/how-to-enable-row-value-editable-in-datagridview-of-win-app 0 How to enable row value editable in datagridview of win app? Vikas 2009-10-15T11:59:27Z 2009-10-18T09:52:03Z <p>Hi,</p> <p>I set the data source programmatically to datagridview of the windows application.</p> <p>I set the "Enable editing" to true &amp; readonly property is also set to false.</p> <p>so is there any thing I'm missing?</p> <p>Thanks..</p> http://stackoverflow.com/questions/963683/asp-net-mvc-checkbox-headache 3 asp.net MVC checkbox headache! Vikas 2009-06-08T06:44:58Z 2009-10-11T17:53:19Z <p>I have seen lots of questions relating to this topic.</p> <p>I am using asp.net MVC 1.0</p> <p>Problem area</p> <p>If I use</p> <pre><code>&lt;%= Html.CheckBox("Status", true) %&gt; </code></pre> <p>Then why It renders like</p> <pre><code>&lt;input checked="checked" id="Status" name="Status" type="checkbox" value="true" /&gt;&lt;input name="Status" type="hidden" value="false" /&gt; </code></pre> <p>I put this in foreach loop and I have 5 rows.</p> <p>when I submit form with <strong>true,true,true,false,false</strong> then I get <code>true,false,true,false,true,false,false,false</code></p> <p>i.e. for false => false.</p> <p>for true => true,false</p> <p>If I use</p> <pre><code>&lt;input type="checkbox" value="true" name="Status" checked="checked" /&gt; </code></pre> <p>Then I don't get unchecked one's.</p> <p>so how do I overcome form this problem?</p> <p>Please don't post answer with using loop in formcollection object and checking each key!</p> http://stackoverflow.com/questions/1525378/how-can-i-make-my-product-as-a-trial-version-for-30-days/1525633#1525633 2 Answer by Vikas for how can i make my product as a trial version for 30 days ? Vikas 2009-10-06T13:34:51Z 2009-10-07T12:46:24Z <p>I have one simple solution for you.</p> <p>Take 2 variables for registry: 1. date 2. counter</p> <p>steps:</p> <ol> <li><p>Set a counter = 1</p></li> <li><p>Copy system date to date</p></li> <li><p>Check each time if the date is different than the current date, than copy that date to the registry date, also increment the counter by 1. If the date is same, don't do anything.</p></li> <li><p>Now you can check you counter for trial days expiration</p></li> </ol> <p>By using these trick, if user change the system date to previous date than also it works.</p> <p>For registry you can encrypt the date &amp; counter so that technical person would not recognize your logic!</p> <p>cheers...</p> <p><strong>ADDED</strong></p> <p>This logic fails only when user doesn't change the date for each day! Again we have the solution for that!</p> <p>I don't know whether it is possible or not but you can always have some solution:</p> <ol> <li>count the total time for trial period &amp; store it in registry.</li> <li>Now count the total time for each run and add it in another variable. (I hope that it can be done by timer)</li> <li>Compare above two values for taking decision for expiration.</li> </ol> http://stackoverflow.com/questions/1461038/how-to-copy-insert-records-in-table-by-strored-procedure 0 How to copy & insert records in table by strored procedure? Vikas 2009-09-22T16:10:05Z 2009-09-22T16:17:47Z <p>I have a table with one field: lngStatusID with value 2 for all the records.</p> <p>Now I need to insert all the records again in the same table but with lngStatusID=1</p> <p>So for that I think stored procedure will help me somehow.</p> <p>AS per my logic it should be something like:</p> <p>1) I need to read each record with loop</p> <p>2) copy all fields in temporary variables</p> <p>3) And than execute insert query to insert the record with lngStatusID=1</p> <p>I am new to stored procedure. So can any one guide me how to do that?</p> <p>Or is there any easy way to do so?</p> http://stackoverflow.com/questions/681353/how-to-maintain-separate-layers-in-mvc-like-business-layer-and-security-layer 0 How to maintain separate layers in MVC? like Business layer and Security layer Vikas 2009-03-25T12:26:24Z 2009-09-20T08:58:29Z <p>I am familiar with three layers viz. view model &amp; controller.</p> <p>Now i want to separate another two layers viz. Security layer &amp; Business logic layer apart from these.</p> <p>So how do i do this?</p> <p>Let's say controller is ok but which user have that privilege, is i want to decide in security layer &amp; if it pass this layer it goes to business layer in which complex query will be executed like business rules.</p> <p>so can any one help me with small code?</p> http://stackoverflow.com/questions/985297/cascading-delete-update-in-linq-to-sql-class 1 Cascading Delete / Update in LINQ-to-SQL class Vikas 2009-06-12T06:43:04Z 2009-09-15T08:59:59Z <p>Hi,</p> <p>I am not deleting records permanently (just maintaining flag) but I'd like to know how cascading delete / update works in LINQ-to-SQL class.</p> <p><strong>EDIT</strong></p> <p>If I have similar situation e.g. maintaining <strong>flag for Delete</strong> option. How do you achieve <strong>Cascading Delete for your database</strong>? </p> http://stackoverflow.com/questions/929401/how-do-i-create-3d-pie-chart-asp-net-mvc 1 How do I create 3D pie chart? -Asp.net MVC. Vikas 2009-05-30T09:05:12Z 2009-09-14T13:32:06Z <p>I have seen Microsoft charting control @ <a href="http://code-inside.de/blog-in/2008/11/27/howto-use-the-new-aspnet-chart-controls-with-aspnet-mvc/" rel="nofollow">here</a> and <a href="http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx" rel="nofollow">here</a>.</p> <p>It has good demonstration for displaying bar chart in MVC.</p> <p>On scottgu's blog There are plenty of examples but they are using server controls (i.e <code>&lt;asp:CHRT runat"server"&gt;</code>. This is also supported in MVC by Modifying web.config.</p> <p>but as we should avoid using server control as postback is not supported in MVC, we should render it as shown in "without code behind page" example.</p> <p>Exactly like This <a href="http://stackoverflow.com/questions/319835/new-asp-net-charting-controls-will-they-work-with-mvc-eventually">Question</a>.</p> <p>Now I would like to know <strong>how other chart types</strong> (like pie chart) can be created in controller?</p> http://stackoverflow.com/questions/1389799/how-to-create-target-directory-structure-for-copy-files-in-classic-asp 1 How to create target directory structure for copy files in classic ASP? Vikas 2009-09-07T15:03:25Z 2009-09-08T14:11:28Z <p>Hi,</p> <p>I want to copy a file to target directory. It is simple with copyFile command of File system object. But I need some enhancement like,</p> <p>If target directory is not exist then it'll create target directory and then copy a file.</p> <p>Can you help me achieve it?</p> <p>Let me know if there are other ways to do same.</p> <p>Thanks.</p> <p>Solution:</p> <pre><code>'Create folder if it doesn't exist If not oFSO.FolderExists(sDestinationFolder) then oFSO.CreateFolder(sDestinationFolder) End If </code></pre> http://stackoverflow.com/questions/1367127/c-2008-sample-windows-application 0 c# 2008 sample windows application Vikas 2009-09-02T11:25:46Z 2009-09-02T12:59:54Z <p>I want to create windows application in c# 2008.</p> <p>The problem is I don't have enough knowledge about this.</p> <p>Can anybody give me some links to study about writing codes in C# specially for windows application?</p> <p>I would like to read tutorials about windows applications.</p> http://stackoverflow.com/questions/1332743/pass-parameter-to-sql-dts-package 0 Pass parameter to SQL DTS package Vikas 2009-08-26T06:41:12Z 2009-08-26T07:37:18Z <p>Hi,</p> <p>I have one source database, which I want to copy (table structures) to new database.</p> <p>I need to execute this package at least 50 times.</p> <p>Each time my source database is same, but destination database varies.</p> <p>So I decided to create a DTS package that will receive a destination database name as a parameter.</p> <p><strong>Que:</strong> Is is possible to pass a parameter in DTS Package? If so then how?</p> <p>If it is possible that My package will create a database with the name passed in database.</p> <p>Please provide me a guide to achieve my task.</p> <p>Thanks.</p> http://stackoverflow.com/questions/833163/integer-validation-in-asp-net-mvc 1 Integer validation in asp.net mvc Vikas 2009-05-07T06:30:13Z 2009-07-28T15:58:29Z <p>I am using server side validation like</p> <pre><code> public IEnumerable&lt;RuleViolation&gt; GetRuleViolations() { if (String.IsNullOrEmpty(Name)) yield return new RuleViolation("Name is Required", "Name"); if (Price == 0) yield return new RuleViolation("Price is Required", "Price"); yield break; } </code></pre> <p>When I left Price as blank, Then It takes 0 as a value.</p> <p>So I check it with 0.</p> <p>In my Database Price cannot be null; and I am using LINQ-to-SQL class.</p> <p>Now my problem is when I left Price blank it gives me two messages.e.g.</p> <ul> <li>A value is required.</li> <li>Price is Required.</li> </ul> <p>So How do I put custom validation without showing first error message?</p> <p><strong>Relpy to comment</strong> I am reffering book code of Professional Asp.net MVC 1.0 <a href="http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx" rel="nofollow">here</a>.</p> <p>HTML pages of Book are <a href="http://weblogs.asp.net/scottgu/archive/2009/04/28/free-asp-net-mvc-nerddinner-tutorial-now-in-html.aspx" rel="nofollow">Here</a>.</p> <p>usefull <a href="http://nerddinnerbook.s3.amazonaws.com/Part3.htm" rel="nofollow">page</a>.</p> <pre><code>public class RuleViolation { public string ErrorMessage { get; private set; } public string PropertyName { get; private set; } public RuleViolation(string errorMessage) { ErrorMessage = errorMessage; } public RuleViolation(string errorMessage, string propertyName) { ErrorMessage= errorMessage; PropertyName = propertyName; } } </code></pre> http://stackoverflow.com/questions/852613/create-service-layer-in-asp-net-mvc 0 Create service layer in asp.net mvc Vikas 2009-05-12T12:51:30Z 2009-07-14T12:00:01Z <p>To update an Entity of database (table) we directly inherit Model Entity to view page like</p> <pre><code>&lt;%@ Page Title="Edit" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage&lt;MVCProject.Models.Preson&gt;" %&gt; </code></pre> <p>And Then Post method of Edit is called from controller, and at last, Entity updates By savechanges method of LINQ class or EF.</p> <p>But user should allowed to update "Preson" Entity only for selected fields, rest of the fields should set automatically.</p> <p>User should have only selected values, to be editable in his view. And the Entity should be inherited from our <strong>service layer</strong> e.g. <code>&lt;MVCProject.ServiceLayer.Preson&gt;</code>. </p> <p>This would be the best way to split application into tires.</p> <p>Now, Anybody knows, How to create classes in service layer, and map them to databasecontext (in case of LINQ class)?</p> http://stackoverflow.com/questions/801662/make-linq-subquery 0 Make linq subquery Vikas 2009-04-29T09:52:43Z 2009-07-12T19:00:02Z <p>Registered table has stucture</p> <pre><code>regid userid var Registered = form r in dc.registered where ... // list contains userid as f.k. </code></pre> <p>I want user list who has registered.</p> <p>so query like</p> <pre><code>var user = from u in dc.users where u.userid in // should contains in Register.userid </code></pre> <p>I want to learn more about linq where I can find best stuffs?</p> http://stackoverflow.com/questions/1081589/change-response-type-in-asp 1 Change Response type in asp Vikas 2009-07-04T05:38:26Z 2009-07-08T06:32:31Z <p>Hello,</p> <p>I've used xml type by writing (asp coding)</p> <pre><code>Response.ContentType = "text/xml" </code></pre> <p>Now xml contents are over and I'd like to add html content so I wrote </p> <pre><code>Response.ContentType = "text/html" </code></pre> <p>But it still writing in xml what would be the problem here?</p> http://stackoverflow.com/questions/751218/how-to-use-getjson-sending-data-with-post-method 2 How to use getJSON, sending data with post method? Vikas 2009-04-15T11:15:57Z 2009-07-01T14:51:19Z <p>I am using above method &amp; it works well with one parameter in url </p> <p>e.g. Students/getstud/1 where controller/action/parameter format is applied.</p> <p>now I have an action in Students controller that accepts two patameters and return json object.</p> <p>so how do i post data with $.getJSON() using post method.</p> <p>Similar methods are also acceptable.</p> <p>point is to call action of controller with ajax. </p> http://stackoverflow.com/questions/781862/thickbox-modal-form-related 0 Thickbox modal form related Vikas 2009-04-23T14:01:57Z 2009-06-16T08:00:01Z <p>I am using asp.net MVC.</p> <p>I am opening my login page as Modal page Like this -> <a href="http://jquery.com/demo/thickbox-3/" rel="nofollow">Login demo</a> </p> <p>The problem is when user gives incorrect information then I lost parent page.</p> <p>And this happens because the errors comes with another page and it removes parent page.</p> <p>So how to update the modal page?</p> <p>I know ajax update is possible so don't give me that solution.</p> <p>My strict requirement is show another page In modal window.</p> http://stackoverflow.com/questions/974778/crystal-report-dynamic-parameter-problem 0 Crystal report Dynamic parameter problem. Vikas 2009-06-10T10:30:19Z 2009-06-12T17:57:43Z <p>I set parameter using SetParameterValue() method in code behind page.</p> <p>But the problem is when I click on any of the option e.g. export button,</p> <p>It prompt me Parameter values. It does not reuse parameter values, yet I am not refreshing report.</p> <p>so is there any thing that I'm missing?</p> http://stackoverflow.com/questions/969824/what-is-the-scope-and-visibility-of-tempdata-in-asp-net-mvc 1 what is the scope and visibility of TempData in ASP.NET MVC? Vikas 2009-06-09T12:35:29Z 2009-06-09T13:04:56Z <p>I'd like to know what the scope and visibility of TempData is in ASP.NET MVC.</p> http://stackoverflow.com/questions/963683/asp-net-mvc-checkbox-headache/968155#968155 0 Answer by Vikas for asp.net MVC checkbox headache! Vikas 2009-06-09T04:36:50Z 2009-06-09T04:36:50Z <p>Well there are couple of ways you can do based on your requirement.</p> <p>I use this method.</p> <pre><code>&lt;input type="checkbox" value="&lt;%= item.ID %&gt;" name="check" checked="checked")" /&gt; </code></pre> <p>This is may checkboxes.</p> <p>On server side I will also have array of ID's of item in the model. So I check it whether it is in array</p> <pre><code>var strArray = form["checkbox"]; //Request.form["checkbox"] or "FormCollection form" in action parameter; array of ID's in comma separated string. </code></pre> <p>Different people have different tests.</p> http://stackoverflow.com/questions/925311/jasperreport-issue-using-with-struts2-getting-null-in-final-pdf-file/959503#959503 1 Answer by Vikas for JasperReport Issue using with struts2 - getting null in final PDF file Vikas 2009-06-06T11:30:19Z 2009-06-06T11:30:19Z <p>Just Remove Query string portion from your .jrxml file and change your field name with account class's variable Name.</p> http://stackoverflow.com/questions/955547/asp-net-mvc-add-items-to-bound-dropdownlist/955579#955579 0 Answer by Vikas for ASP.Net MVC Add Items To Bound Dropdownlist Vikas 2009-06-05T12:18:29Z 2009-06-05T12:18:29Z <p>Simple</p> <p>you can make it as you wish in controller.</p> <p>and pass it in viewdata.</p> <p>other option is directly in view page.</p> <pre><code>&lt;%= Html.DropDownList("DropDown","all" )%&gt; </code></pre> <p>But you can add only one option..</p> <p>Make sure you are not storing added options in ur db, right? so before you save it, check option value in action and apply your logic.</p> http://stackoverflow.com/questions/920930/how-to-create-json-by-javascript-for-loop 0 How to create json by javascript for loop ? Vikas 2009-05-28T13:48:34Z 2009-05-30T10:06:51Z <p>I have <strong>array</strong> of select tag.</p> <pre><code>&lt;select id='uniqueID' name="status"&gt; &lt;option value="1"&gt;Present&lt;/option&gt; &lt;option value="2"&gt;Absent&lt;/option&gt; &lt;/select&gt; </code></pre> <p>and I want to create a json object having two fields 'uniqueIDofSelect and optionValue' in javascript.</p> <p>I use getElementsByName("status") and I iterate on it.</p> <p><strong>EDIT</strong></p> <p>I need out put like</p> <pre><code>[{"selectID":2,"OptionValue":"2"}, {"selectID":4,"optionvalue":"1"}] </code></pre> <p>and so on... </p> http://stackoverflow.com/questions/780534/how-to-send-email-from-windows-application-in-c 1 How to send Email from windows application in c#? Vikas 2009-04-23T06:45:41Z 2009-05-29T03:24:43Z <p>I am working MS C# 2008. I created Windows form application. And I need to send email from my application. so how do I configure smtp settings?</p> <p><strong>EDIT</strong></p> <p>I got The following Exception</p> <p>The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required. Learn more at</p> <p>on smtp.send(message);</p> <p>I have not installed IIS so is it required for desktop app?</p> http://stackoverflow.com/questions/919483/timespan-to-string-problem-in-linq-query 1 Timespan to string problem in LINQ query Vikas 2009-05-28T06:38:11Z 2009-05-28T07:45:56Z <p>Hi I have noted that if I use TimespanObj.ToString() the it gives me perfect output like 12:33:00.</p> <p>But I use following linq query.</p> <pre><code>var time = SomeSimpleQuery.Select(t =&gt; new { time = t.FromTime.ToString() }); </code></pre> <p>where FromTime is time(7) in SQL Database and Timespan in LINQ-TO-SQL Class (by Default).</p> <p>Then I get the output having format like "jan 1 1900 12:00PM". Why?</p> http://stackoverflow.com/questions/910202/int-list-returned-by-linq-query -2 Int list returned by LINQ query Vikas 2009-05-26T11:28:12Z 2009-05-26T11:32:19Z <p>I have one table having ID and other attributes.</p> <p>How can I get <strong>list of int</strong> of IDs by LINQ query on that table?</p> http://stackoverflow.com/questions/1617402/the-request-failed-or-the-service-did-not-respond-in-a-timely-fashion Comment by Vikas on The request failed or the service did not respond in a timely fashion? Vikas 2009-10-24T13:25:33Z 2009-10-24T13:25:33Z I installed new instance of sql &amp; temp works for me. But I'll comment the error in near future as soon as I access that pc. http://stackoverflow.com/questions/1525378/how-can-i-make-my-product-as-a-trial-version-for-30-days/1525633#1525633 Comment by Vikas on how can i make my product as a trial version for 30 days ? Vikas 2009-10-07T12:35:08Z 2009-10-07T12:35:08Z OK, I made a small change with the logic. http://stackoverflow.com/questions/253843/simple-datagridview-refresh-question/253863#253863 Comment by Vikas on simple DataGridView refresh question Vikas 2009-09-09T14:18:10Z 2009-09-09T14:18:10Z No such event with dataGridView, dataGridView1.DataBind(); http://stackoverflow.com/questions/1389799/how-to-create-target-directory-structure-for-copy-files-in-classic-asp/1389828#1389828 Comment by Vikas on How to create target directory structure for copy files in classic ASP? Vikas 2009-09-08T11:44:04Z 2009-09-08T11:44:04Z Well, It works for only if there is exactly one folder to create. I need this for working for multiple create folder. e.g. /export/new/new1/new2 etc. and consider that only export folder is present. http://stackoverflow.com/questions/833163/integer-validation-in-asp-net-mvc/1195082#1195082 Comment by Vikas on Integer validation in asp.net mvc Vikas 2009-08-01T07:12:21Z 2009-08-01T07:12:21Z Well, Right now I don't have that code, But your answer seems perfect. http://stackoverflow.com/questions/1081589/change-response-type-in-asp/1081593#1081593 Comment by Vikas on Change Response type in asp Vikas 2009-07-04T05:43:27Z 2009-07-04T05:43:27Z so should I make another ajax call? http://stackoverflow.com/questions/974778/crystal-report-dynamic-parameter-problem/988109#988109 Comment by Vikas on Crystal report Dynamic parameter problem. Vikas 2009-06-13T06:31:58Z 2009-06-13T06:31:58Z I load reort on Page_init() event but the same problem I have. http://stackoverflow.com/questions/974778/crystal-report-dynamic-parameter-problem Comment by Vikas on Crystal report Dynamic parameter problem. Vikas 2009-06-13T05:43:53Z 2009-06-13T05:43:53Z I don't now exactly which version is this but it comes with VS 2008. And I use button click event to set parameter because the same page is also used for asking parameters. if still you want to see code then let me know I'll put it. http://stackoverflow.com/questions/985297/cascading-delete-update-in-linq-to-sql-class/985327#985327 Comment by Vikas on Cascading Delete / Update in LINQ-to-SQL class Vikas 2009-06-12T07:23:04Z 2009-06-12T07:23:04Z According to your first option I should trigger a stored procedure using CTE but I have number of tables having F.K. (Foreign Key) of one table. So how do I come to know that these many number of tables having F.K. from Master Table. In future If I add new table with F.k. or Drop one table with F.K. then I have to check out all the S.P. (Stored Procedure), &amp; then I rewrite all logic. It is a big task. And let me know if I am thinking in wrong way. http://stackoverflow.com/questions/974778/crystal-report-dynamic-parameter-problem Comment by Vikas on Crystal report Dynamic parameter problem. Vikas 2009-06-11T04:52:12Z 2009-06-11T04:52:12Z No subreports. No such case. http://stackoverflow.com/questions/969824/what-is-the-scope-and-visibility-of-tempdata-in-asp-net-mvc/969872#969872 Comment by Vikas on what is the scope and visibility of TempData in ASP.NET MVC? Vikas 2009-06-09T13:00:03Z 2009-06-09T13:00:03Z Well sorry for this kind of comment but I can't open any of the microsoft's websites! And I don't now why? anyway I got the answer! Thanks. http://stackoverflow.com/questions/955547/asp-net-mvc-add-items-to-bound-dropdownlist Comment by Vikas on ASP.Net MVC Add Items To Bound Dropdownlist Vikas 2009-06-05T13:19:40Z 2009-06-05T13:19:40Z Why not to use &lt;%= Html.DropDownList(&quot;DropDown&quot;,&quot;all&quot; )%&gt; ? because at server side value will be null or empty string i guess.. and you get the condition. http://stackoverflow.com/questions/955547/asp-net-mvc-add-items-to-bound-dropdownlist/955583#955583 Comment by Vikas on ASP.Net MVC Add Items To Bound Dropdownlist Vikas 2009-06-05T13:17:15Z 2009-06-05T13:17:15Z Because list is of type Interface ( IQueryable) and there is no way to add new item in it, unless you merge two Interface. http://stackoverflow.com/questions/955547/asp-net-mvc-add-items-to-bound-dropdownlist/955583#955583 Comment by Vikas on ASP.Net MVC Add Items To Bound Dropdownlist Vikas 2009-06-05T12:25:05Z 2009-06-05T12:25:05Z Ultimately he has to check it at server side because GavD Don't want &quot;all&quot; to be in DB http://stackoverflow.com/questions/955547/asp-net-mvc-add-items-to-bound-dropdownlist/955583#955583 Comment by Vikas on ASP.Net MVC Add Items To Bound Dropdownlist Vikas 2009-06-05T12:23:07Z 2009-06-05T12:23:07Z We can also use &lt;%= Html.DropDownList(&quot;TableSelect&quot; )%&gt; directly if the same name contains in viewdata.