User Vikas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T01:37:58Zhttp://stackoverflow.com/feeds/user/74988http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1825213/how-to-create-thumbnail-images-in-classic-asp1How to create thumbnail images in classic asp?Vikas2009-12-01T10:05:51Z2009-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-mvc2Reportviewer datasource in asp.net-mvcVikas2009-05-19T12:20:31Z2009-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-mvc0Data entry screen in asp.net MVCVikas2009-04-29T05:43:04Z2009-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-mvc0How do I use Server.Transfer method in asp.net MVC?Vikas2009-05-11T08:45:39Z2009-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-fashion0The request failed or the service did not respond in a timely fashion?Vikas2009-10-24T08:49:31Z2009-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-app0How to enable row value editable in datagridview of win app?Vikas2009-10-15T11:59:27Z2009-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 & 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-headache3asp.net MVC checkbox headache!Vikas2009-06-08T06:44:58Z2009-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><%= Html.CheckBox("Status", true) %>
</code></pre>
<p>Then why It renders like</p>
<pre><code><input checked="checked" id="Status" name="Status" type="checkbox" value="true" /><input name="Status" type="hidden" value="false" />
</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><input type="checkbox" value="true" name="Status" checked="checked" />
</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#15256332Answer by Vikas for how can i make my product as a trial version for 30 days ?Vikas2009-10-06T13:34:51Z2009-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 & 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 & 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-procedure0How to copy & insert records in table by strored procedure?Vikas2009-09-22T16:10:05Z2009-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-layer0How to maintain separate layers in MVC? like Business layer and Security layerVikas2009-03-25T12:26:24Z2009-09-20T08:58:29Z
<p>I am familiar with three layers viz. view model & controller.</p>
<p>Now i want to separate another two layers viz. Security layer & 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 & 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-class1Cascading Delete / Update in LINQ-to-SQL classVikas2009-06-12T06:43:04Z2009-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-mvc1How do I create 3D pie chart? -Asp.net MVC.Vikas2009-05-30T09:05:12Z2009-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><asp:CHRT runat"server"></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-asp1How to create target directory structure for copy files in classic ASP?Vikas2009-09-07T15:03:25Z2009-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-application0c# 2008 sample windows applicationVikas2009-09-02T11:25:46Z2009-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-package0Pass parameter to SQL DTS packageVikas2009-08-26T06:41:12Z2009-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-mvc1Integer validation in asp.net mvc Vikas2009-05-07T06:30:13Z2009-07-28T15:58:29Z
<p>I am using server side validation like</p>
<pre><code> public IEnumerable<RuleViolation> 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-mvc0Create service layer in asp.net mvcVikas2009-05-12T12:51:30Z2009-07-14T12:00:01Z
<p>To update an Entity of database (table) we directly inherit Model Entity to view page like</p>
<pre><code><%@ Page Title="Edit" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<MVCProject.Models.Preson>" %>
</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><MVCProject.ServiceLayer.Preson></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-subquery0Make linq subqueryVikas2009-04-29T09:52:43Z2009-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-asp1Change Response type in aspVikas2009-07-04T05:38:26Z2009-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-method2How to use getJSON, sending data with post method?Vikas2009-04-15T11:15:57Z2009-07-01T14:51:19Z
<p>I am using above method & 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-related0Thickbox modal form relatedVikas2009-04-23T14:01:57Z2009-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-problem0Crystal report Dynamic parameter problem.Vikas2009-06-10T10:30:19Z2009-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-mvc1what is the scope and visibility of TempData in ASP.NET MVC?Vikas2009-06-09T12:35:29Z2009-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#9681550Answer by Vikas for asp.net MVC checkbox headache!Vikas2009-06-09T04:36:50Z2009-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><input type="checkbox" value="<%= item.ID %>" name="check" checked="checked")" />
</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#9595031Answer by Vikas for JasperReport Issue using with struts2 - getting null in final PDF fileVikas2009-06-06T11:30:19Z2009-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#9555790Answer by Vikas for ASP.Net MVC Add Items To Bound DropdownlistVikas2009-06-05T12:18:29Z2009-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><%= Html.DropDownList("DropDown","all" )%>
</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-loop0How to create json by javascript for loop ?Vikas2009-05-28T13:48:34Z2009-05-30T10:06:51Z
<p>I have <strong>array</strong> of select tag.</p>
<pre><code><select id='uniqueID' name="status">
<option value="1">Present</option>
<option value="2">Absent</option>
</select>
</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-c1How to send Email from windows application in c#?Vikas2009-04-23T06:45:41Z2009-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-query1Timespan to string problem in LINQ queryVikas2009-05-28T06:38:11Z2009-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 => 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-2Int list returned by LINQ queryVikas2009-05-26T11:28:12Z2009-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-fashionComment by Vikas on The request failed or the service did not respond in a timely fashion?Vikas2009-10-24T13:25:33Z2009-10-24T13:25:33ZI installed new instance of sql & 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#1525633Comment by Vikas on how can i make my product as a trial version for 30 days ?Vikas2009-10-07T12:35:08Z2009-10-07T12:35:08ZOK, I made a small change with the logic.http://stackoverflow.com/questions/253843/simple-datagridview-refresh-question/253863#253863Comment by Vikas on simple DataGridView refresh questionVikas2009-09-09T14:18:10Z2009-09-09T14:18:10ZNo such event with dataGridView, dataGridView1.DataBind();
http://stackoverflow.com/questions/1389799/how-to-create-target-directory-structure-for-copy-files-in-classic-asp/1389828#1389828Comment by Vikas on How to create target directory structure for copy files in classic ASP?Vikas2009-09-08T11:44:04Z2009-09-08T11:44:04ZWell, 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#1195082Comment by Vikas on Integer validation in asp.net mvc Vikas2009-08-01T07:12:21Z2009-08-01T07:12:21ZWell, Right now I don't have that code, But your answer seems perfect.http://stackoverflow.com/questions/1081589/change-response-type-in-asp/1081593#1081593Comment by Vikas on Change Response type in aspVikas2009-07-04T05:43:27Z2009-07-04T05:43:27Zso should I make another ajax call?http://stackoverflow.com/questions/974778/crystal-report-dynamic-parameter-problem/988109#988109Comment by Vikas on Crystal report Dynamic parameter problem.Vikas2009-06-13T06:31:58Z2009-06-13T06:31:58ZI load reort on Page_init() event but the same problem I have.http://stackoverflow.com/questions/974778/crystal-report-dynamic-parameter-problemComment by Vikas on Crystal report Dynamic parameter problem.Vikas2009-06-13T05:43:53Z2009-06-13T05:43:53ZI 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#985327Comment by Vikas on Cascading Delete / Update in LINQ-to-SQL classVikas2009-06-12T07:23:04Z2009-06-12T07:23:04ZAccording 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), & 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-problemComment by Vikas on Crystal report Dynamic parameter problem.Vikas2009-06-11T04:52:12Z2009-06-11T04:52:12ZNo subreports. No such case.http://stackoverflow.com/questions/969824/what-is-the-scope-and-visibility-of-tempdata-in-asp-net-mvc/969872#969872Comment by Vikas on what is the scope and visibility of TempData in ASP.NET MVC?Vikas2009-06-09T13:00:03Z2009-06-09T13:00:03ZWell 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-dropdownlistComment by Vikas on ASP.Net MVC Add Items To Bound DropdownlistVikas2009-06-05T13:19:40Z2009-06-05T13:19:40ZWhy not to use <%= Html.DropDownList("DropDown","all" )%> ? 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#955583Comment by Vikas on ASP.Net MVC Add Items To Bound DropdownlistVikas2009-06-05T13:17:15Z2009-06-05T13:17:15ZBecause 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#955583Comment by Vikas on ASP.Net MVC Add Items To Bound DropdownlistVikas2009-06-05T12:25:05Z2009-06-05T12:25:05ZUltimately he has to check it at server side because GavD Don't want "all" to be in DBhttp://stackoverflow.com/questions/955547/asp-net-mvc-add-items-to-bound-dropdownlist/955583#955583Comment by Vikas on ASP.Net MVC Add Items To Bound DropdownlistVikas2009-06-05T12:23:07Z2009-06-05T12:23:07ZWe can also use <%= Html.DropDownList("TableSelect" )%> directly if the same name contains in viewdata.