User Adhip Gupta - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T19:03:48Zhttp://stackoverflow.com/feeds/user/384http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/153759/jquery-datepicker-with-text-input-that-doesnt-allow-user-input/1748170#17481700Answer by Adhip Gupta for JQuery Datepicker with text input that doesn't allow user input.Adhip Gupta2009-11-17T11:16:11Z2009-11-17T11:16:11Z<p>If you are reusing the date-picker at multiple places then it would be apt to modify the textbox also via JavaScript by using something like:</p>
<pre><code>$("#my_txtbox").attr( 'readOnly' , 'true' );
</code></pre>
<p>right after/before the place where you initialize your datepicker.</p>
http://stackoverflow.com/questions/2402/what-programs-do-you-use-to-create-graphic-images6What programs do you use to create graphic images?Adhip Gupta2008-08-05T14:43:41Z2009-10-23T00:31:21Z
<p>Background: I am working as a freelance web-developer. Now, lately this has meant that I have to design a lot of graphic images, logos etc for the the websites I create.</p>
<p>So, are there any good resources to learn these things? And, what softwares should I ideally be learning? I have always heard about Adobe Illustrator and Adobe Photoshop being the frontrunners. Is it worth my time to learn these two 'huge' softwares?</p>
http://stackoverflow.com/questions/1605495/set-the-color-of-a-blueprint-div/1605521#16055211Answer by Adhip Gupta for set the color of a blueprint divAdhip Gupta2009-10-22T07:15:19Z2009-10-22T07:15:19Z<p>Yes, you can easily over-ride the CSS by specifying a rule for <code>error</code> in your main CSS file.</p>
<p>That should ideally over-ride the default colors. Else, just ensure that you use a higher specificity in your rule, something like: <code>div.container div.error { color: red; }</code></p>
http://stackoverflow.com/questions/4629/c-eval-equivalent8C# eval equivalent?Adhip Gupta2008-08-07T12:26:46Z2009-10-14T08:06:54Z
<p>I can do an <code>eval("something()");</code> to execute the code dynamically in JavaScript. Is there a way for me to do the same thing in C#?</p>
<p>What I am exactly trying to do is that I have an integer variable (say i) and I have multiple properties by the names: "Property1","Property2","Property3" etc.
Now, I want to perform some operations on the " Property<em>i</em> " property depending on the value of i. </p>
<p>This is really simple with Javascript. Is there any way to do this with C#?</p>
<p>Edit: Oh, and I am using C# 2.0</p>
http://stackoverflow.com/questions/901189/how-is-wordpress-htaccess-and-seo-built/902671#9026710Answer by Adhip Gupta for How is WordPress' .htaccess and SEO built? Adhip Gupta2009-05-23T22:53:19Z2009-05-23T22:53:19Z<p>Correction... according to the .htaccess rules by default in WordPress and the ones listed below, it will first look if there is a file or a directory that exists in the path given in the URL. If there is no file/directory present at that location, index.php is called. </p>
<p>This ensures that the admin section works the way it does. This also ensures that you can dump any file in the WordPress directory and still be able to access them.</p>
<p>Once the redirection reaches index.php, the WordPress Redirection API is called as indicated by <a href="http://stackoverflow.com/questions/901189/how-is-wordpress-htaccess-and-seo-built/901217#901217">this post</a>.</p>
http://stackoverflow.com/questions/215387/access-asking-for-password-on-exit0Access asking for password on exit [closed]Adhip Gupta2008-10-18T18:30:46Z2009-03-09T23:35:12Z
<p>I have an MS Access 2002 database with password security. </p>
<p>When I exit the application, the password dialog box reappears. Now, after this I can only exit the application if I give in the password again or press Cancel.</p>
<p>I don't know why this dialog appears on exit.</p>
http://stackoverflow.com/questions/475636/ie7-minimizes-on-clicking-links1IE7 minimizes on clicking linksAdhip Gupta2009-01-24T06:37:44Z2009-01-24T16:23:49Z
<p>I am developing this website for a client. It was working fine till a couple of days ago on all major browsers. </p>
<p>Since yesterday I have been facing this unusual problem:</p>
<p>In IE7, whenever I click on any link on the page (navigation link or anything else), the IE7 window minimizes. When I restore the window, the proper link(the new page) is open and showing. Also, this occurs only if I have one IE7 tab open, i.e: if suppose I have two tabs on the window then it works perfectly. </p>
<p>Also, this works fine on IE6 and Firefox. Firebug shows no errors of any kind when I am loading the same page in Firefox. </p>
<p>Can anyone think of a reason that this could be happening?</p>
http://stackoverflow.com/questions/475779/how-to-get-sitelinks-to-appear-on-google-search/475784#4757840Answer by Adhip Gupta for How to get sitelinks to appear on Google Search?Adhip Gupta2009-01-24T09:25:43Z2009-01-24T09:25:43Z<p>To get that done, You need to create a file called sitemap.xml using Google Webmaster guidelines.</p>
<p>This is a comprehensive resource for getting your site up on Google. <a href="http://www.google.com/webmasters/" rel="nofollow">http://www.google.com/webmasters/</a></p>
<p>Though, it may take months for the results to appear on the Google webpages.</p>
http://stackoverflow.com/questions/475636/ie7-minimizes-on-clicking-links/475692#4756920Answer by Adhip Gupta for IE7 minimizes on clicking linksAdhip Gupta2009-01-24T07:29:22Z2009-01-24T07:29:22Z<p>Yes. Its happening on multiple machines.</p>
http://stackoverflow.com/questions/475637/do-i-need-to-have-a-view-page-for-every-action-in-asp-net-mvc/475658#4756580Answer by Adhip Gupta for Do I need to have a View Page for every Action in ASP.NET MVC?Adhip Gupta2009-01-24T06:52:15Z2009-01-24T06:52:15Z<p>In the URL that you suggest, you should have a Controller method called 'search' and using the 'index' view for that controller.</p>
<p>If thats the case, you can post it back to the same action and in the Controller have different sets of code for the 'GET' and 'POST' to give the functionality that you are looking for.</p>
http://stackoverflow.com/questions/220450/as-a-c-developer-who-wants-to-do-some-php-work-what-book-online-articles-shou/220475#2204754Answer by Adhip Gupta for As a C# developer who wants to do some PHP work, what [book/online articles] should I [buy/read] to introduce myself to PHP?Adhip Gupta2008-10-21T01:19:17Z2008-10-21T01:19:17Z<p>I would recomment the <a href="http://www.php.net/manual/en/" rel="nofollow">PHP manual</a> too!</p>
http://stackoverflow.com/questions/215612/examples-of-asp-net-mvc-and-authentication/215635#2156353Answer by Adhip Gupta for Examples of asp.net mvc and authenticationAdhip Gupta2008-10-18T22:06:41Z2008-10-18T22:06:41Z<p>Umm.. I havent gone into the details of it yet... but, could <a href="http://www.squaredroot.com/post/2008/04/MVC-Membership-Starter-Kit.aspx" rel="nofollow">this</a> help?</p>
http://stackoverflow.com/questions/214537/asp-net-mvc-and-jqueryui-dilemma/215395#2153950Answer by Adhip Gupta for ASP.net MVC and jQueryUI dilemmaAdhip Gupta2008-10-18T18:37:00Z2008-10-18T18:37:00Z<p>You need to change the links in jquery-ui-themeroller.css to point to the current location of the images. </p>
<p>As in, you need to update the path of the images that the css file is looking for. </p>
<pre><code>background: url(images/foo.gif)
</code></pre>
<p>Remove the 'images/' from your paths to make it look like:</p>
<pre><code>background: url(foo.gif)
</code></pre>
<p>as both your css and images are in the content folder.</p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/206206#20620618Answer by Adhip Gupta for What's your favorite "programmer" cartoon?Adhip Gupta2008-10-15T20:07:56Z2008-10-15T20:07:56Z<p>Not technically programming related (coz almost all of them are already covered)</p>
<p>A very recent Dilbert one:</p>
<p><img src="http://dilbert.com/dyn/tiny/File/Lehman%20Brothers%20.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/200476/html-actionlink-method/201206#2012060Answer by Adhip Gupta for HTML.ActionLink methodAdhip Gupta2008-10-14T13:47:11Z2008-10-14T13:47:11Z<pre><code>Html.ActionLink(article.Title, "Login/" + article.ArticleID, 'Item")
</code></pre>
http://stackoverflow.com/questions/201148/do-web-applications-need-html-header-tags/201157#2011570Answer by Adhip Gupta for Do web applications need HTML header tags?Adhip Gupta2008-10-14T13:31:42Z2008-10-14T13:31:42Z<p>Other than the browsers where settings are such that the browser style overrides your CSS (user styles), I don't think that there are any other problems if you use h2 before h1 or vice versa.</p>
<p>Also, as you said using headers formats your document to an extent without even having CSS.</p>
http://stackoverflow.com/questions/187855/what-does-the-dry-principle-actually-look-like-in-asp-net-mvc/197807#1978070Answer by Adhip Gupta for What Does the DRY Principle Actually Look Like in ASP.NET MVC?Adhip Gupta2008-10-13T14:39:20Z2008-10-13T14:39:20Z<p>Well, the most common example that I can give about DRY and UI is using things like MasterPages and UserControls.</p>
<p>MasterPages ensure that you have written all the static HTML only once.</p>
<p>UserControls ensure reusability of code. Example, you will have a lot of forms doing basic stuff like CRUD. Now, ideally we want all users to see different pages for Create and Update though the forms fields in both will almost be the same. What we can do is combine all the common controls and put them into a control that can be reused over both the pages. This ensures that we are never retyping (or copy-pasting) the same code.</p>
<p>DRY is especially important in MVC because of the increase in the sheer number of files to accomplish the same task. </p>
http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/192914#19291432Answer by Adhip Gupta for What is your favorite "programmer" t-shirt?Adhip Gupta2008-10-10T20:25:53Z2008-10-10T20:25:53Z<p>I like this one a lot:</p>
<p><img src="http://www.thinkgeek.com/images/products/front/read-hex.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190902#1909022Answer by Adhip Gupta for Order of tags in <head></head>Adhip Gupta2008-10-10T11:29:20Z2008-10-10T11:29:20Z<p>It is usually recommended to have the <code><script></code> tag as lower down the page as possible (not in the head but in the body). </p>
<p>Other than that, I don't think it makes much of a difference because the body cannot be parsed unless you have the <code><head></code> section completely loaded. And, you want your <code><link></code> tag to be in the head as you want your styling to occur as the browser renders your page and not after that!</p>
http://stackoverflow.com/questions/108211/sql-add-a-column-to-existing-table-and-uniquely-number-them4Sql: add a column to existing table and uniquely number themAdhip Gupta2008-09-20T13:57:14Z2008-10-08T16:33:01Z
<p>I want to add a column to an existing legacy database and write a procedure by which I can assign each record a different value. Something like add a column and autogenerate the data for it.</p>
<p>Like, if I add a new column called "ID" (number) I want to then initialize a unique value to each of the records. So, my ID column will have records from say 1 to 1000. How do I do that?</p>
http://stackoverflow.com/questions/132132/user-interface-dropdown/132165#1321650Answer by Adhip Gupta for User Interface - DropdownAdhip Gupta2008-09-25T08:42:14Z2008-09-25T08:42:14Z<p>Well, what I have done in such a case is:</p>
<ol>
<li>Using autocomplete (so that the user can start typing and get at the intended option faster).</li>
<li>Have the dropdown of a fixed length like 30 chars. Now, if the value of the drop down is longer I just truncate it to 25 with a '...' at the end. A hover on this value will make the full text appear as a 'title' or similar.</li>
</ol>
http://stackoverflow.com/questions/109618/how-would-you-achieve-this-table-based-layout-using-css-instead-of-html-tables/109653#109653-1Answer by Adhip Gupta for How would you achieve this table based layout using CSS instead of HTML tables?Adhip Gupta2008-09-20T22:42:56Z2008-09-20T22:42:56Z<p>Each row is to be taken as a 'div' that contains two 'spans' one for fieldname and one for the input. Set 'float:left' on both the spans. However, you need to set some width for the 'fieldname' span.</p>
<p>Also, style the div to include the attribute 'clear:both' for precaution.</p>
http://stackoverflow.com/questions/102894/is-anyone-targeting-google-chrome-yet-web-apps-plugins/109540#10954011Answer by Adhip Gupta for Is anyone targeting Google Chrome yet? (Web apps, plugins)Adhip Gupta2008-09-20T21:51:05Z2008-09-20T21:51:05Z<p>Yes, I have started to pay very good attention to Google Chrome for my applications. Recent analytics show that between 6%-15% of my users are accessing my applications (varies between 6 to 15 in different applications) on Chrome. And, this number looks on an upward trend.</p>
<p>Thus, I can't really ignore it for testing right now.</p>
<p>As far as taking it as a standard goes, thats a long way off. I still have to test for IE6! :( Though, we have been planning to start using features like Gears (inbuilt in Chrome - downloadable elsewhere) once Chrome crosses the 25% mark. Thats when I believe that we will be looking at Chrome to be our preferred browser. I hope that we have Chrome 1.0+ by then! ;) </p>
http://stackoverflow.com/questions/106509/disable-button-on-form-submission/108330#1083300Answer by Adhip Gupta for Disable button on form submissionAdhip Gupta2008-09-20T14:37:39Z2008-09-20T14:37:39Z<p>This is an easier but similar method than what <a href="http://stackoverflow.com/questions/106509/disable-button-on-form-submission#106958">rp</a> has suggested:</p>
<pre><code>function submit(button) {
Page_ClientValidate();
if(Page_IsValid)
{
button.disabled = true;
}
}
<asp:Button runat="server" ID="btnSubmit" OnClick="btnSubmit_OnClick" OnClientClick="submit(this)" Text="Submit Me" />
</code></pre>
http://stackoverflow.com/questions/95655/comparison-of-ways-to-maintain-state1comparison of ways to maintain stateAdhip Gupta2008-09-18T18:54:00Z2008-09-18T20:01:29Z
<p>There are various ways to maintain user state using in web development.</p>
<p>These are the ones that I can think of right now:</p>
<ol>
<li><p>Query String</p></li>
<li><p>Cookies</p></li>
<li><p>Form Methods (Get and Post)</p></li>
<li><p>Viewstate (ASP.NET only I guess)</p></li>
<li><p>Session (InProc Web server)</p></li>
<li><p>Session (Dedicated web server)</p></li>
<li><p>Session (Database)</p></li>
<li><p>Local Persistence (Google Gears) (thanks Steve Moyer)
etc.</p></li>
</ol>
<p>I know that each method has its own advantages and disadvantages like cookies not being secure and QueryString having a length limit and being plain ugly to look at! ;)</p>
<p>But, when designing a web application I am always confused as to what methods to use for what application or what methods to avoid.</p>
<p>What I would like to know is what method(s) do you generally use and would recommend or more interestingly which of these methods would you like to avoid in certain scenarios and why?</p>
http://stackoverflow.com/questions/91434/javascript-message-box/91519#915190Answer by Adhip Gupta for javascript message boxAdhip Gupta2008-09-18T10:39:10Z2008-09-18T10:39:10Z<p>Else, use something like a LightBox based solution like <a href="http://codylindley.com/Javascript/257/thickbox-one-box-to-rule-them-all" rel="nofollow">Thickbox</a>?</p>
http://stackoverflow.com/questions/70685/getting-generated-html-in-a-wcf-service/74308#743080Answer by Adhip Gupta for Getting Generated HTML in a WCF service.Adhip Gupta2008-09-16T16:36:31Z2008-09-16T16:36:31Z<p>@<a href="#73876" rel="nofollow">Petar</a>: Thanks for your input. Yes, I am after that data that will be stored in the page after the Ajax calls. And, somehow the third party vendor will not give me that data via some JSON calls which I could directly call from my own WCF service.</p>
http://stackoverflow.com/questions/70685/getting-generated-html-in-a-wcf-service0Getting Generated HTML in a WCF service.Adhip Gupta2008-09-16T09:23:54Z2008-09-16T16:36:31Z
<p>In the WCF application that I am working on, I need to access the generated source of a particular webpage (after all the AJAX calls on the page are made).</p>
<p>I have tried using <code>System.Net.WebRequest</code> but it just brings me back the original source of the page. Is there a way to execute a page and then get the source?</p>
<p>Else, is there a way to execute Javascript from within a WCF service? I could use the javascript and JSON response to create the HTML page from within my webservice then!</p>
http://stackoverflow.com/questions/33301/call-onresize-from-asp-net-content-page/33603#336030Answer by Adhip Gupta for Call onresize from ASP.NET content pageAdhip Gupta2008-08-28T23:06:55Z2008-08-28T23:06:55Z<p>How about use code like the following in your Content Page (C#)?</p>
<pre><code>Page.ClientScript.RegisterStartupScript(this.GetType(), "resizeMyPage", "window.onresize=function(){ resizeMyPage();}", true);
</code></pre>
<p>Thus, you could have a "resizeMyPage" function defined somewhere in the Javascript and it would be run whenever the browser is resized!</p>
http://stackoverflow.com/questions/29053/javascript-browser-quirks-array-length7Javascript Browser Quirks - array.LengthAdhip Gupta2008-08-26T22:00:38Z2008-08-27T20:51:38Z
<p>Code:</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Unusual Array Lengths!</title>
<script type="text/javascript">
var arrayList = new Array();
arrayList = [1, 2, 3, 4, 5, ];
alert(arrayList.length);
</script>
</head>
<body>
</body>
</html>
</code></pre>
<p>Notice the extra comma in the array declaration.
The code above gives different outputs for various browsers:</p>
<p>Safari: 5</p>
<p>Firefox: 5</p>
<p>IE: 6</p>
<p>The extra comma in the array is being ignored by Safari and FF while IE treats it as another object in the array.</p>
<p>On some search, I have found mixed opinions about which answer is correct. Most people say that IE is correct but then Safari is also doing the same thing as Firefox. I haven't tested this on other browsers like Opera but I assume that there are discrepancies.</p>
<p>My questions:</p>
<p>i. <strong>Which one of these is correct?</strong></p>
<p><em>Edit: By general consensus (and ECMAScript guidelines) we assume that IE is again at fault.</em> </p>
<p>ii. <strong>Are there any other such Javascript browser quirks that I should be wary of?</strong></p>
<p><em>Edit: Yes, there are loads of Javascript quirks. <a href="http://www.quirksmode.org" rel="nofollow">www.quirksmode.org</a> is a good resource for the same.</em></p>
<p>iii. <strong>How do I avoid errors such as these?</strong></p>
<p><em>Edit: Use <a href="http://www.jslint.com/" rel="nofollow">JSLint</a> to validate your javascript. Or, use some external <a href="http://openjsan.org/" rel="nofollow">libraries</a>. Or, <a href="http://beta.stackoverflow.com/questions/29053/javascript-browser-quirks-arraylength#29062" rel="nofollow">sanitize</a> your code.</em></p>
<p><em>Thanks to <a href="http://beta.stackoverflow.com/users/3069/damien-b" rel="nofollow">DamienB</a>, <a href="http://beta.stackoverflow.com/users/1790/jasonbunting" rel="nofollow">JasonBunting</a>, <a href="http://beta.stackoverflow.com/users/2168/john" rel="nofollow">John</a> and <a href="http://beta.stackoverflow.com/users/1968/konrad-rudolph" rel="nofollow">Konrad Rudolph</a> for their inputs.</em></p>
http://stackoverflow.com/questions/1186432/parsing-http-data-into-php-variablesComment by Adhip Gupta on Parsing HTTP data into PHP variablesAdhip Gupta2009-07-27T08:26:59Z2009-07-27T08:26:59ZCould something like extract($_REQUEST) be what you are looking for?http://stackoverflow.com/questions/221294/how-do-you-get-a-timestamp-in-javascript/1186484#1186484Comment by Adhip Gupta on How do you get a timestamp in JavaScript?Adhip Gupta2009-07-27T04:56:47Z2009-07-27T04:56:47ZCould you be a little more explicit in what exactly are you looking for?http://stackoverflow.com/questions/1138232/html-embedded-pdfs-onloadComment by Adhip Gupta on HTML Embedded PDF's & onloadAdhip Gupta2009-07-16T15:08:03Z2009-07-16T15:08:03Z'onload' is not an event for the 'object' tag. Thus, it never gets fired.
<a href="http://www.w3schools.com/TAGS/tag_object.asp" rel="nofollow">w3schools.com/TAGS/tag_object.asp</a>http://stackoverflow.com/questions/1042738/basic-crud-application-using-php-prototype-js-and-scriptaculous-jsComment by Adhip Gupta on Basic Crud Application Using Php , Prototype.js and Scriptaculous.jsAdhip Gupta2009-06-25T08:20:06Z2009-06-25T08:20:06ZWhat do you mean by virus issues with jQuery? If there is a chance of getting a virus via jQuery, then the chances of that happening with other JS frameworks is equally same.http://stackoverflow.com/questions/1042209/how-to-center-my-a-div-in-a-table-using-css/1042216#1042216Comment by Adhip Gupta on How to center my a div in a table using CSS?Adhip Gupta2009-06-25T06:26:10Z2009-06-25T06:26:10Z@bobbydylan: Do you have a DOCTYPE defined? margin: auto would not work as expected unless that is defined in IE.http://stackoverflow.com/questions/1012540/how-can-i-filter-the-list-of-questions/1012714#1012714Comment by Adhip Gupta on How can i filter the list of questions?Adhip Gupta2009-06-18T13:49:43Z2009-06-18T13:49:43ZIs the background Pink or Orange?http://stackoverflow.com/questions/893648/list-of-in-browser-ui-techniquesComment by Adhip Gupta on List of in-browser UI techniques?Adhip Gupta2009-05-23T22:46:55Z2009-05-23T22:46:55ZIts jquery.com and not jquery.orghttp://stackoverflow.com/questions/475636/ie7-minimizes-on-clicking-linksComment by Adhip Gupta on IE7 minimizes on clicking linksAdhip Gupta2009-01-24T09:20:57Z2009-01-24T09:20:57ZI removed all the Javascript on the page and it all works fine. So, its a JavaScript Issue.
I was using a couple of jQuery plugins. I will have to get into that source. Though, this sort of characteristic was unheard of for me.http://stackoverflow.com/questions/220020/how-to-handle-checkboxes-in-asp-net-mvc-forms/220073#220073Comment by Adhip Gupta on How to handle checkboxes in ASP.NET MVC forms?Adhip Gupta2008-10-21T00:14:44Z2008-10-21T00:14:44ZYup! This is what I have had to do for my applications too!http://stackoverflow.com/questions/215387/access-asking-for-password-on-exit/216551#216551Comment by Adhip Gupta on Access asking for password on exitAdhip Gupta2008-10-19T16:44:09Z2008-10-19T16:44:09ZI thought that could be the problem myself. But, it turns out that that was not the case.
Anyway, I created a new database and imported all my tables/data into it and it worked like a charm.
Thanks! :)http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84954#84954Comment by Adhip Gupta on What's your favorite "programmer" cartoon?Adhip Gupta2008-10-15T09:57:58Z2008-10-15T09:57:58ZDilbert is awesome!http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84629#84629Comment by Adhip Gupta on What's your favorite "programmer" cartoon?Adhip Gupta2008-10-15T08:03:50Z2008-10-15T08:03:50ZFunny! (I hate the 10 min characters limit for comments!)http://stackoverflow.com/questions/65116/whats-your-favorite-harmless-computer-practical-joke/65213#65213Comment by Adhip Gupta on What's Your Favorite Harmless Computer Practical Joke?Adhip Gupta2008-10-14T20:08:38Z2008-10-14T20:08:38Zwow!! Thats a nice one!
http://stackoverflow.com/questions/201148/do-web-applications-need-html-header-tags/201157#201157Comment by Adhip Gupta on Do web applications need HTML header tags?Adhip Gupta2008-10-14T15:07:23Z2008-10-14T15:07:23ZAh Thanks! That was an interesting read!http://stackoverflow.com/questions/200476/html-actionlink-method/201341#201341Comment by Adhip Gupta on HTML.ActionLink methodAdhip Gupta2008-10-14T14:28:44Z2008-10-14T14:28:44ZBut, doesn't this give out a URL like /Item/Login?id=5 ?