User roman m - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:50:44Z http://stackoverflow.com/feeds/user/3661 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1685634/implementing-numeric-pagination-with-asp-net/1685679#1685679 0 Answer by roman m for Implementing numeric pagination with asp.net roman m 2009-11-06T05:54:00Z 2009-11-06T05:54:00Z <p>Not sure about a "class", but here are a couple of links:</p> <p><a href="http://www.c-sharpcorner.com/UploadFile/nipuntomar/DataPagerGridView08012008123240PM/DataPagerGridView.aspx" rel="nofollow">.NET 3.5</a></p> <p><a href="http://aspnet.4guysfromrolla.com/articles/031506-1.aspx" rel="nofollow">.NET 2.0</a></p> <p>p.s. If you use DataSet as your DataSource, paging and sorting is supported out of the box.</p> http://stackoverflow.com/questions/1685189/what-are-good-priciples-for-creating-a-scalable-website/1685321#1685321 1 Answer by roman m for What are good priciples for creating a scalable website? roman m 2009-11-06T03:59:04Z 2009-11-06T03:59:04Z <p>Here's a <a href="http://stackoverflow.com/questions/1436927/where-to-look-for-information-on-architecture-of-high-scalable-website-like-orbit">very similar question on SO</a></p> http://stackoverflow.com/questions/1685242/really-simple-gridview-asp-net-question/1685290#1685290 2 Answer by roman m for Really simple GridView ASP.NET question roman m 2009-11-06T03:46:13Z 2009-11-06T03:57:01Z <p>Here's how you do it (borrowed the code from <a href="http://blog.developers.ie/cgreen/archive/2006/05/22/2036.aspx" rel="nofollow">here</a> to save some typing)</p> <pre><code>&lt;asp:TemplateField HeaderText="Statement" SortExpression="Statement"&gt; &lt;ItemTemplate&gt; &lt;asp:HyperLink ID="Link1" runat="server" NavigateUrl='&lt;%# Bind("ID", "~/TemplateEdit.aspx?ID={0}") %&gt;' Text="The Best Link"&gt;&lt;/asp:HyperLink &gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;asp:TemplateField&gt; &lt;ItemTemplate&gt; &lt;asp:ImageButton ID="DeleteButton" Runat="server" ImageUrl="~/images/delete.gif" OnClientClick="return confirm('Are you sure you want to delete this?');" ToolTip="Delete" CommandName="Delete" /&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; </code></pre> <p>didn't actually test it, but looks like it should work.</p> http://stackoverflow.com/questions/1685246/how-to-do-a-data-lookup-field-in-a-detailsvvew/1685264#1685264 0 Answer by roman m for How to do a data lookup field in a DetailsVvew? roman m 2009-11-06T03:36:38Z 2009-11-06T03:36:38Z <ol> <li><p>For display purposes - return the NAME of the Sales Rep. rather than ID </p></li> <li><p>DropDownList (ddl) handles both Values and Keys just fine, the naming is a bit off though. ddl.DataTextField property will hold the Name, ddl.DataValueField property will hold the ID. (see <a href="http://stackoverflow.com/questions/1627073/how-do-i-bind-a-list-to-a-ddl/1627094#1627094">this answer</a> for more details on this) </p></li> <li><p>In the EditTemplate you'd need to fill the DropDown as described above, and then set its SelectedValue to the ID of Sales Rep. in quesion.</p></li> </ol> <p>Hope this helps.</p> http://stackoverflow.com/questions/1684782/how-do-i-configure-net-framework-3-5-in-windows-7/1684794#1684794 1 Answer by roman m for How do I configure .net framework 3.5 in windows 7 roman m 2009-11-06T01:14:12Z 2009-11-06T01:26:36Z <p>The tool comes with <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4377f86d-c913-4b5c-b87e-ef72e5b4e065&amp;displaylang=en" rel="nofollow">Microsoft® Windows® Software Development Kit</a></p> <p>This <a href="http://www.google.com/search?hl=en&amp;rlz=1C1GGLS%5FenUS337US337&amp;q=mscorcfg.msc+.net+3.5&amp;aq=0p&amp;oq=ms&amp;aqi=g-p3g7" rel="nofollow">Google Search</a> might helpful too</p> http://stackoverflow.com/questions/1684756/what-are-the-ways-on-how-i-can-get-my-domain-name-indexed-by-google-it-will-be-c/1684770#1684770 2 Answer by roman m for What are the ways on how I can get my domain name indexed by Google? It will be cool if the search results will show mine on the first page. Thanks in advance roman m 2009-11-06T01:08:05Z 2009-11-06T01:08:05Z <p>This has nothing to do with programming, it's pure <a href="http://en.wikipedia.org/wiki/Search%5Fengine%5Foptimization" rel="nofollow">SEO</a></p> <p>The best way to get up in Google rankings is to post LOTS of relevant content on your site. Then people will see that you have something to look at, they will come to you, they will link back to your site, and you will move up.</p> <p>If you just want to put a bunch of links on the site - chances are Google won't appreciate it too much, and you can forget about being anywhere near the first page.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/1683812/auto-submit-updatepanel-and-show-updateprogress-area/1683855#1683855 1 Answer by roman m for Auto Submit UpdatePanel and show UpdateProgress area. roman m 2009-11-05T21:43:10Z 2009-11-05T22:57:08Z <p>Based on your further comments:</p> <p>you have an <code>UpdatePanel</code> and <code>SomeUploadControl</code> outside of that panel. You want to show <code>UpdateProgress</code> when you cause a FULL POSTBACK from <code>SomeUploadControl</code>.</p> <p>If the above assumptions are correct - I'm afraid you can't do what you want. The whole idea behind the <code>UpdateProgress</code> is to work on PARTIAL POSTBACKS.</p> <p>I'm pretty sure the above is correct, but I might be mistaken.</p> <p><hr></p> <p>Edited in light of your comment :)</p> <p>try:</p> <pre><code>window.onload=function(){ __doPostBack('buttonID',''); } </code></pre> <p>if this doesn't work - give more details on the problem you're trying to solve (why are you trying to cause the postback via javascript), and there might be a better way altogether.</p> http://stackoverflow.com/questions/1511039/how-to-force-vs2008-to-generate-create-script-to-project-to-multiple-files-when 0 How to force VS2008 to "Generate Create Script to Project" to multiple files when multiple stored procedures are selected? roman m 2009-10-02T18:10:22Z 2009-11-05T20:54:11Z <p>I'm using Visual Studio 2008 Developer Edition and I've created a Database Project and want to generate CREATE scripts from my database and save them in my database project.</p> <p>It works just fine when I select a single stored procedure in the Database and click "Generate Create Script to Project". The problem is that when I select MULTIPLE PROCS - it outputs the script into the single file.</p> <p>Is there a way to force the output into the multiple files (one file per stored procedure)?</p> http://stackoverflow.com/questions/1678311/how-to-use-ternary-operator-for-this-statement-in-c/1678320#1678320 5 Answer by roman m for How to use ternary operator for this statement in c# roman m 2009-11-05T04:18:10Z 2009-11-05T04:18:10Z <pre><code>int five = 5; string answer = five == 5 ? "true" : "false"; </code></pre> <p>I see that you want to use this to write the values out in ASP.NET, the <code>answer</code> string will hold your desired value, use that as you please.</p> http://stackoverflow.com/questions/1675783/asp-net-repeater-and-databinder-eval/1675806#1675806 0 Answer by roman m for ASP.NET Repeater and DataBinder.Eval roman m 2009-11-04T18:42:06Z 2009-11-04T18:42:06Z <p>I don't know if this will make any difference, but try for following (note spacing too)</p> <pre><code>&lt;asp:LinkButton ID="indexLetter" Text='&lt;%# Eval("letter")%&gt;' runat="server" CssClass='&lt;%# Eval("cssclass")%&gt;' Enabled='&lt;%# Eval("enabled")%&gt;'&gt;&lt;/asp:LinkButton&gt; </code></pre> http://stackoverflow.com/questions/1671804/when-do-i-have-to-specify-type-t-for-ienumerable-extension-methods 0 When do I have to specify type <T> for IEnumerable extension methods? roman m 2009-11-04T05:21:50Z 2009-11-04T06:32:33Z <p>I'm a bit confused about the use of all the <code>IEnumerable&lt;T&gt;</code> extension methods, intellisense is always asking for <code>&lt;T&gt;</code>, but I don't think it's necessary to specify <code>&lt;T&gt;</code> at all times.</p> <p>Let's say I have the following:</p> <pre><code>List&lt;Person&gt; people = GetSomePeople(); </code></pre> <p>How is this:</p> <pre><code>List&lt;string&gt; names = people.ConvertAll&lt;string&gt;(p=&gt;p.Name).Distinct&lt;string&gt;().ToList&lt;string&gt;(); </code></pre> <p>different from this:</p> <pre><code>List&lt;string&gt; names = people.ConvertAll&lt;string&gt;(p=&gt;p.Name).Distinct().ToList(); </code></pre> <p>I think the two lines of code above are sxactly the same, now the question: </p> <p><strong>How do I know when to specify <code>&lt;T&gt;</code> and when to skip it?</strong></p> http://stackoverflow.com/questions/1671803/which-side-has-more-characters/1671835#1671835 3 Answer by roman m for which side has more characters roman m 2009-11-04T05:29:41Z 2009-11-04T05:29:41Z <p>quick and dirty:</p> <pre><code>private int YourMethod(string a, string separator) { if (a.IndexOf(seperator) &gt; 0) { if ((a.Length - seperator.Length) / 2 &gt; a.IndexOf(seperator)) return 1; else return 0; } return 0; } </code></pre> http://stackoverflow.com/questions/1628265/how-to-get-positionfixed-css-to-work-in-ie-7-with-transitional-doctype 0 How to get "position:fixed" css to work in IE 7+ with TRANSITIONAL doctype? roman m 2009-10-27T01:18:19Z 2009-10-27T02:32:31Z <p>I know that <code>position:fixed;</code> was not supported by IE until IE 7, and it only works in IE 7 if you have a <code>STRICT DOCTYPE</code>. </p> <p>My question is: "How do I get it work with IE 7 with <code>TRANSITIONAL DOCTYPE</code>?"</p> <p>Please don't suggest changing a <code>DOCTYPE</code>, as this does not answer my question, thank you.</p> http://stackoverflow.com/questions/1627360/how-do-i-get-values-from-selecteditem-in-combobox-with-linq-and-c-3-5/1627400#1627400 2 Answer by roman m for How do I get values from SelectedItem in ComboBox with Linq and C# 3.5 roman m 2009-10-26T21:19:30Z 2009-10-26T21:25:01Z <p>Found the following approach on <a href="http://kirillosenkov.blogspot.com/2008/01/how-to-create-generic-list-of-anonymous.html" rel="nofollow">this blog</a> a while ago, try the following:</p> <pre><code>private List&lt;T&gt; MakeList&lt;T&gt;(T itemOftype) { List&lt;T&gt; newList = new List&lt;T&gt;(); return newList; } //create a fake type for anonymous type var stockType = new {StockID = 0, StockUserId =0, Ticker = string.Empty}; var listOfStocks = MakeList(stockType); var listOfStocksAnonymous = from st in brdc.tb_dStocks join su in brdc.tb_rStockUsers on st.StockID equals su.StockID where su.UserID == userRec.UserID select new { st.StockID, su.StockUserID, st.Ticker }; listOfStocks = listOfStocksAnonymous.ToList&lt;stockType&gt;(); //now you have a direct access to all anonymous properties </code></pre> http://stackoverflow.com/questions/1627287/does-the-updateitem-function-work-on-a-detailsview-bound-to-a-list/1627342#1627342 2 Answer by roman m for Does the UpdateItem function work on a DetailsView bound to a List? roman m 2009-10-26T21:06:28Z 2009-10-26T21:06:28Z <ol> <li><p>Do you get your list from the database? </p></li> <li><p>On your UpdateItem command, do you explicitly update the item and save it in the database (or wherever you store it)?</p></li> <li><p>Do you re-fill the list after the update and rebind the DetailsView?</p></li> </ol> <p>if you do all of the above (or at least 2 and 3) updating should work just fine</p> http://stackoverflow.com/questions/1627073/how-do-i-bind-a-list-to-a-ddl/1627094#1627094 5 Answer by roman m for How do I bind a list to a ddl? roman m 2009-10-26T20:16:42Z 2009-10-26T20:43:41Z <p>All you're missing is to tell the dropdown what property of getBranch to show as text and what to use as value:</p> <pre><code>ddlOption.DataTextField = "propertyOfgetBranchToShowAsText"; ddlOption.DataValueField = "propertyOfgetBranchToUseAsValue"; </code></pre> <p>ok, here's how the code should look like (i think):</p> <p>your Branch class properties:</p> <pre><code>public int BranchValue {get;set;} public string BranchText {get;set;} </code></pre> <p>...</p> <pre><code>public List&lt;Branch&gt; branchesToShow { get; private set; } ... branchesToShow = getBranch(user.code); //get the list of branches ddlOption.DataTextField = "BranchText" ddlOption.DataValueField = "BranchValue"; ddlOption.DataSource = branchesToShow; ddlOption.DataBind(); </code></pre> http://stackoverflow.com/questions/1592123/datagrid-showing-in-the-design-window-but-not-in-the-webpage/1592132#1592132 1 Answer by roman m for DataGrid showing in the design window, but not in the webpage roman m 2009-10-20T02:16:14Z 2009-10-20T02:16:14Z <p>I don't see your datasouce, if you assigning it in the code-behind - you need to <a href="http://msdn.microsoft.com/en-us/library/fkx0cy6d.aspx" rel="nofollow">DataBind()</a> the grid to see it on the page.</p> <p>You can also create a datasource in the design view, and assign it to the grid - no explicit databinding needed</p> http://stackoverflow.com/questions/1586818/cancel-control-postback/1586871#1586871 1 Answer by roman m for Cancel control postback.... roman m 2009-10-19T03:51:26Z 2009-10-19T03:51:26Z <p>you just contradicted yourself:</p> <blockquote> <p>cancel OnTextChanged postback</p> </blockquote> <p>and </p> <blockquote> <p>when it meets certain condition at code behind</p> </blockquote> <p>you can't get to code behind unless you PostBack</p> <p>p.s. what's the problem with using javascript? give more details on your scenario, and you might get some help here.</p> http://stackoverflow.com/questions/1582961/need-some-t-sql-clarification 0 Need some t-sql clarification roman m 2009-10-17T19:04:57Z 2009-10-18T00:08:05Z <p>This is a follow up to <a href="http://stackoverflow.com/questions/1512661/why-am-i-getting-invalidcastexception-when-casting-object-to-integer">my previous question</a>, in t-sql </p> <pre><code>SELECT SCOPE_IDENTITY() </code></pre> <p>returns a BIGINT, I did the following to get it to return an INT:</p> <pre><code>DECLARE @X INT INSERT ... SELECT @X = SCOPE_IDENTITY() -- if i don't include the line below, it will return a BIGINT SELECT @X </code></pre> <p>Why does it return a BIGINT unless I do SELECT @X at the end?</p> <p>p.s. turns out </p> <pre><code>SELECT @X = SCOPE_IDENTITY() </code></pre> <p>doesn't return anything, it just sets @x</p> http://stackoverflow.com/questions/1564310/select-1-row-per-order-but-include-orderline-table/1564327#1564327 1 Answer by roman m for Select 1 row per order, but include order_line table? roman m 2009-10-14T05:07:46Z 2009-10-14T05:07:46Z <p>this is based on the answer to <a href="http://stackoverflow.com/questions/122942/how-to-return-multiple-values-in-one-column-t-sql">my own question</a></p> <pre><code>CREATE FUNCTION [dbo].[GetCateogriesForOrder] ( @orderID int ) RETURNS varchar(max) AS BEGIN declare @output varchar(max) select @output = COALESCE(@output + ', ', '') + cat_id from order_line where order_id = @orderID return @output END GO SELECT order_ID, dbo. GetCateogriesForOrder(order_ID) FROM order GO </code></pre> http://stackoverflow.com/questions/644748/dnn-5-cant-get-current-moduleid-from-nested-user-control-in-cutom-module 1 DNN 5 - Can't get current ModuleId from nested user control in cutom module roman m 2009-03-13T21:50:11Z 2009-10-13T11:24:10Z <p>I'm writing a custom module for DNN 5, and I need a "Manage" link to be on every control in the module. I created a new UserControl ("ManagerLink") that inherits from PortalModuleBase, put my link into that control, and dropped that control on ALL OF MY MAIN CONTROLS.</p> <p>The problem is that ModuleId and TabId are always -1 in "ManagerLink" nested control. PortalId works just fine, and I can get a TabId by doing PortalSettings.ActiveTab.TabID.</p> <ol> <li><p>Why can't I get ModuleId and TabId in from "ManagerLink" control, even though it inherits from PortalModuleBase?</p></li> <li><p>Is there an alternative method to get ModuleId (equivalent of PortalSettings.ActiveTab.TabID)</p></li> </ol> http://stackoverflow.com/questions/1547308/asp-net-web-application-with-c-vb-net-both-in-codebehind/1547339#1547339 0 Answer by roman m for asp.net web application with c# & vb.net both in codebehind roman m 2009-10-10T07:58:03Z 2009-10-10T07:58:03Z <p>Put all the App_Code folder names what contain C# code into <a href="http://msdn.microsoft.com/en-us/library/54dwfbb7.aspx" rel="nofollow">CodeSubDirectories</a> section in your web.config</p> <p>p.s. this is how it's done in <a href="http://www.dotnetnuke.com" rel="nofollow">DotNetNuke</a></p> http://stackoverflow.com/questions/1527870/return-one-row-for-each-id-based-on-date-column-sql/1527896#1527896 0 Answer by roman m for Return one row for each ID based on date column (SQL) roman m 2009-10-06T20:21:53Z 2009-10-06T20:32:46Z <p>I'm sure there's a better way, but this will do it:</p> <pre><code>CREATE TABLE #Table1( [Table1ID] [int] NULL, [Name] [varchar](50) NULL ) CREATE TABLE #Table2( [Table2ID] [int] NULL, [InsertedDate] [datetime] NULL, [Rating] [varchar](50) NULL ) INSERT INTO #Table1([Table1ID], [Name]) SELECT 1, N'John' UNION ALL SELECT 2, N'Debbie' INSERT INTO #Table2([Table2ID], [InsertedDate], [Rating]) SELECT 1, '20090101 00:00:00.000', N'6' UNION ALL SELECT 1, '20090401 00:00:00.000', N'5' UNION ALL SELECT 2, '20090202 00:00:00.000', N'3' UNION ALL SELECT 2, '20090303 00:00:00.000', N'5' select x.name, t2.rating from ( select t1.table1id, t1.name, max(t2.inserteddate) as inserteddate from #table1 t1 join #table2 t2 on t1.table1id = t2.table2id group by t1.table1id, t1.name ) x join #table2 t2 on x.table1id = t2.table2id and x.inserteddate = t2.inserteddate </code></pre> http://stackoverflow.com/questions/1527826/is-it-possible-to-compile-net-1-1-in-visual-studio-2008/1527851#1527851 2 Answer by roman m for Is it possible to compile .NET 1.1 in Visual Studio 2008? roman m 2009-10-06T20:12:50Z 2009-10-06T20:14:21Z <p>you can't <a href="http://weblogs.asp.net/scottgu/archive/2007/06/20/vs-2008-multi-targeting-support.aspx" rel="nofollow">as pet Scott Gu</a></p> <p>but <a href="http://devlicio.us/blogs/ziemowit%5Fskowronski/archive/2008/08/22/working-with-net-1-1-in-visual-studio-2008-and-team-server.aspx" rel="nofollow">this atricle</a> gives you a work-around</p> http://stackoverflow.com/questions/1527613/serving-visualsvn/1527654#1527654 1 Answer by roman m for Serving VisualSVN roman m 2009-10-06T19:38:33Z 2009-10-06T19:51:54Z <p>do you use <a href="http://www.visualsvn.com/server/" rel="nofollow">VisualSVN server</a>? If not - DO, it will make your life a lot easier</p> <p>some other things:</p> <ol> <li>use the IP address (don't use 192.x.x.x either, use the EXTERNAL IP, so you can get to it from outside), and NOT YOUR COMPUTER NAME for repo location</li> <li>make sure the port is open on your router and firewall</li> <li>make sure you specify the port number when you connect to your repo</li> </ol> <p>To respond to your comment: </p> <p>Right-click on your server (in the VisualSVN manager), go to Properties and then click on Network tab - you'll see the port there. When you connect to your repo do this: </p> <p><code>https://111.111.111.111:8443/svn/PeojectTrunk</code></p> <p>(8443 is the port number, 111.111.111.111 is your IP)</p> http://stackoverflow.com/questions/1524033/how-to-make-a-sql-looping-for-date/1524053#1524053 0 Answer by roman m for How to make a SQL looping for date? roman m 2009-10-06T07:18:24Z 2009-10-06T07:24:13Z <p>it all depends on your logic, here are some options:</p> <ol> <li>take @startDate and @endDate as parameters for the sproc </li> <li>if you can logically tie those dates to current date, you can <a href="http://stackoverflow.com/questions/1397291/how-to-get-start-and-end-dates-of-current-month/1397401#1397401">calculate them</a> in the sproc (or function) based on getdate() (will give you current date)</li> </ol> http://stackoverflow.com/questions/1523815/getting-cell-value-after-selecting-a-row/1523899#1523899 0 Answer by roman m for Getting cell value after selecting a row roman m 2009-10-06T06:25:27Z 2009-10-06T06:40:49Z <p>GridView has a <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.selecteddatakey.aspx" rel="nofollow">SelectedDataKey</a> property that will give you what you want (make sure that <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.datakeynames.aspx" rel="nofollow">DataKeyNames</a> property of the GridView is set to MachineGroupID)</p> http://stackoverflow.com/questions/1523842/how-to-make-items-load-on-drop-down-based-on-the-radio-button/1523863#1523863 1 Answer by roman m for how to make items load on drop down based on the radio button roman m 2009-10-06T06:14:48Z 2009-10-06T06:36:59Z <p>I don't follow all the logic here, but to answer your question do the following:</p> <ol> <li>Make sure that AutoPostback property is set to TRUE on your radiobuttons</li> <li>Handle <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.radiobutton.checkedchanged.aspx" rel="nofollow">CheckedChanged</a> event of the radiobutton, and fill the dropdown there</li> </ol> http://stackoverflow.com/questions/1523895/ho-to-get-backspace-with-only-numbers-limit-in-textbox/1523908#1523908 3 Answer by roman m for Ho to get BackSpace - with only numbers limit in textbox ? roman m 2009-10-06T06:28:48Z 2009-10-06T06:28:48Z <p>here's how to check if backspace was pressed:</p> <pre><code>if(e.KeyChar == '\b'){//backspace was pressed} </code></pre> http://stackoverflow.com/questions/392211/dnn-4-9-intermittent-error-while-uploading-pdf-files 0 DNN 4.9 ... Intermittent error while uploading PDF files roman m 2008-12-24T21:01:11Z 2009-10-05T07:00:03Z <p>I get intermittent "Object reference is not set to an instance of an object" errors when uploading PDF files in FCKEditor in DNN 4.9.</p> <p>Here's the error:</p> <p>AssemblyVersion: 04.09.00<br /> AbsoluteURL: /.../Providers/HtmlEditorProviders/Fck/fcklinkgallery.aspx<br /> UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; IEMB3; IEMB3)<br /> InnerException: Object reference not set to an instance of an object.<br /> FileName:<br /> FileLineNumber: 0<br /> FileColumnNumber: 0<br /> Method: DotNetNuke.UI.UserControls.UrlControl.cmdSave_Click<br /> StackTrace: Message: DotNetNuke.Services.Exceptions.PageLoadException: Object reference not set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object. at DotNetNuke.UI.UserControls.UrlControl.cmdSave_Click(Object sender, EventArgs e) at System.Web.UI.WebControls.LinkButton.OnClick(EventArgs e) at System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument) at System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) --- End of inner exception stack trace --- </p> <p>The error comes and goes, file size doesn't seem to matter, last time i got it after uploading a couple of 1MB files, the third file (600kB) gave me an error.</p> <p>Please help!</p> http://stackoverflow.com/questions/401756/parsing-json-using-json-net/402694#402694 Comment by roman m on parsing JSon using JSon.net roman m 2009-11-27T00:26:05Z 2009-11-27T00:26:05Z +1 for JavaScriptSerializer http://stackoverflow.com/questions/1690097/why-does-a-call-to-httpcontext-current-session-clears-my-session/1690389#1690389 Comment by roman m on Why does a call to HttpContext.Current.Session clears my Session? roman m 2009-11-06T21:02:19Z 2009-11-06T21:02:19Z all my calls were made form Page_Load http://stackoverflow.com/questions/1690097/why-does-a-call-to-httpcontext-current-session-clears-my-session Comment by roman m on Why does a call to HttpContext.Current.Session clears my Session? roman m 2009-11-06T20:43:55Z 2009-11-06T20:43:55Z NO, do you think this would change anything? http://stackoverflow.com/questions/1684782/how-do-i-configure-net-framework-3-5-in-windows-7/1684794#1684794 Comment by roman m on How do I configure .net framework 3.5 in windows 7 roman m 2009-11-06T01:30:08Z 2009-11-06T01:30:08Z no kidding ... typing as i'm googling :) http://stackoverflow.com/questions/1683812/auto-submit-updatepanel-and-show-updateprogress-area Comment by roman m on Auto Submit UpdatePanel and show UpdateProgress area. roman m 2009-11-05T22:57:24Z 2009-11-05T22:57:24Z see edited answer http://stackoverflow.com/questions/1683812/auto-submit-updatepanel-and-show-updateprogress-area Comment by roman m on Auto Submit UpdatePanel and show UpdateProgress area. roman m 2009-11-05T22:13:51Z 2009-11-05T22:13:51Z wouldn't the upload control cause full page postback? from what i understand UpdateProgress won't show up on FULL POSTBACK. http://stackoverflow.com/questions/1683812/auto-submit-updatepanel-and-show-updateprogress-area/1683855#1683855 Comment by roman m on Auto Submit UpdatePanel and show UpdateProgress area. roman m 2009-11-05T22:13:12Z 2009-11-05T22:13:12Z wouldn't the upload control cause full page postback? from what i understand UpdateProgress won't show up on FULL POSTBACK. http://stackoverflow.com/questions/1678311/how-to-use-ternary-operator-for-this-statement-in-c/1678343#1678343 Comment by roman m on How to use ternary operator for this statement in c# roman m 2009-11-05T04:28:18Z 2009-11-05T04:28:18Z just a note: Console.WriteLine() has nothing to do with ASP.NET http://stackoverflow.com/questions/1156692/visual-studio-auto-format-broken Comment by roman m on Visual Studio Auto-Format Broken roman m 2009-11-04T19:44:38Z 2009-11-04T19:44:38Z +1 my coworker has the similar problem, Ctrl+K+D doesn't work for him either http://stackoverflow.com/questions/1671803/which-side-has-more-characters/1672105#1672105 Comment by roman m on which side has more characters roman m 2009-11-04T07:20:21Z 2009-11-04T07:20:21Z +1 for ///summary :D http://stackoverflow.com/questions/1627073/how-do-i-bind-a-list-to-a-ddl/1627094#1627094 Comment by roman m on How do I bind a list to a ddl? roman m 2009-10-26T20:53:56Z 2009-10-26T20:53:56Z is getBranch the name of class? see my code as i think i put the Branch where it belongs http://stackoverflow.com/questions/1627073/how-do-i-bind-a-list-to-a-ddl Comment by roman m on How do I bind a list to a ddl? roman m 2009-10-26T20:23:20Z 2009-10-26T20:23:20Z i think you have a mixup between your Branch type and getBranch list name ... i might be wrong though http://stackoverflow.com/questions/1592123/datagrid-showing-in-the-design-window-but-not-in-the-webpage Comment by roman m on DataGrid showing in the design window, but not in the webpage roman m 2009-10-20T02:19:29Z 2009-10-20T02:19:29Z where's your datasource? http://stackoverflow.com/questions/1582961/need-some-t-sql-clarification/1583570#1583570 Comment by roman m on Need some t-sql clarification roman m 2009-10-18T01:45:47Z 2009-10-18T01:45:47Z +1 for detailed explanation http://stackoverflow.com/questions/870697/unable-to-cast-object-of-type-system-dbnull-to-type-system-string/870771#870771 Comment by roman m on Unable to cast object of type 'System.DBNull' to type 'System.String` roman m 2009-10-17T20:32:02Z 2009-10-17T20:32:02Z this will not work if you try converting 1 to bool (Convert.ToBoolean(1) works fine tho)