User roman m - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T23:50:44Zhttp://stackoverflow.com/feeds/user/3661http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1685634/implementing-numeric-pagination-with-asp-net/1685679#16856790Answer by roman m for Implementing numeric pagination with asp.netroman m2009-11-06T05:54:00Z2009-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#16853211Answer by roman m for What are good priciples for creating a scalable website?roman m2009-11-06T03:59:04Z2009-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#16852902Answer by roman m for Really simple GridView ASP.NET questionroman m2009-11-06T03:46:13Z2009-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><asp:TemplateField HeaderText="Statement" SortExpression="Statement">
<ItemTemplate>
<asp:HyperLink ID="Link1" runat="server" NavigateUrl='<%# Bind("ID", "~/TemplateEdit.aspx?ID={0}") %>' Text="The Best Link"></asp:HyperLink >
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<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" />
</ItemTemplate>
</asp:TemplateField>
</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#16852640Answer by roman m for How to do a data lookup field in a DetailsVvew?roman m2009-11-06T03:36:38Z2009-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#16847941Answer by roman m for How do I configure .net framework 3.5 in windows 7roman m2009-11-06T01:14:12Z2009-11-06T01:26:36Z<p>The tool comes with <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4377f86d-c913-4b5c-b87e-ef72e5b4e065&displaylang=en" rel="nofollow">Microsoft® Windows® Software Development Kit</a></p>
<p>This <a href="http://www.google.com/search?hl=en&rlz=1C1GGLS%5FenUS337US337&q=mscorcfg.msc+.net+3.5&aq=0p&oq=ms&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#16847702Answer 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 advanceroman m2009-11-06T01:08:05Z2009-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#16838551Answer by roman m for Auto Submit UpdatePanel and show UpdateProgress area.roman m2009-11-05T21:43:10Z2009-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-when0How to force VS2008 to "Generate Create Script to Project" to multiple files when multiple stored procedures are selected?roman m2009-10-02T18:10:22Z2009-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#16783205Answer by roman m for How to use ternary operator for this statement in c#roman m2009-11-05T04:18:10Z2009-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#16758060Answer by roman m for ASP.NET Repeater and DataBinder.Evalroman m2009-11-04T18:42:06Z2009-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><asp:LinkButton ID="indexLetter" Text='<%# Eval("letter")%>'
runat="server" CssClass='<%# Eval("cssclass")%>'
Enabled='<%# Eval("enabled")%>'></asp:LinkButton>
</code></pre>
http://stackoverflow.com/questions/1671804/when-do-i-have-to-specify-type-t-for-ienumerable-extension-methods0When do I have to specify type <T> for IEnumerable extension methods?roman m2009-11-04T05:21:50Z2009-11-04T06:32:33Z
<p>I'm a bit confused about the use of all the <code>IEnumerable<T></code> extension methods, intellisense is always asking for <code><T></code>, but I don't think it's necessary to specify <code><T></code> at all times.</p>
<p>Let's say I have the following:</p>
<pre><code>List<Person> people = GetSomePeople();
</code></pre>
<p>How is this:</p>
<pre><code>List<string> names = people.ConvertAll<string>(p=>p.Name).Distinct<string>().ToList<string>();
</code></pre>
<p>different from this:</p>
<pre><code>List<string> names = people.ConvertAll<string>(p=>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><T></code> and when to skip it?</strong></p>
http://stackoverflow.com/questions/1671803/which-side-has-more-characters/1671835#16718353Answer by roman m for which side has more charactersroman m2009-11-04T05:29:41Z2009-11-04T05:29:41Z<p>quick and dirty:</p>
<pre><code>private int YourMethod(string a, string separator)
{
if (a.IndexOf(seperator) > 0)
{
if ((a.Length - seperator.Length) / 2 > 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-doctype0How to get "position:fixed" css to work in IE 7+ with TRANSITIONAL doctype?roman m2009-10-27T01:18:19Z2009-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#16274002Answer by roman m for How do I get values from SelectedItem in ComboBox with Linq and C# 3.5roman m2009-10-26T21:19:30Z2009-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<T> MakeList<T>(T itemOftype)
{
List<T> newList = new List<T>();
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<stockType>();
//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#16273422Answer by roman m for Does the UpdateItem function work on a DetailsView bound to a List?roman m2009-10-26T21:06:28Z2009-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#16270945Answer by roman m for How do I bind a list to a ddl?roman m2009-10-26T20:16:42Z2009-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<Branch> 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#15921321Answer by roman m for DataGrid showing in the design window, but not in the webpageroman m2009-10-20T02:16:14Z2009-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#15868711Answer by roman m for Cancel control postback....roman m2009-10-19T03:51:26Z2009-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-clarification0Need some t-sql clarificationroman m2009-10-17T19:04:57Z2009-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#15643271Answer by roman m for Select 1 row per order, but include order_line table?roman m2009-10-14T05:07:46Z2009-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-module1DNN 5 - Can't get current ModuleId from nested user control in cutom moduleroman m2009-03-13T21:50:11Z2009-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#15473390Answer by roman m for asp.net web application with c# & vb.net both in codebehindroman m2009-10-10T07:58:03Z2009-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#15278960Answer by roman m for Return one row for each ID based on date column (SQL)roman m2009-10-06T20:21:53Z2009-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#15278512Answer by roman m for Is it possible to compile .NET 1.1 in Visual Studio 2008?roman m2009-10-06T20:12:50Z2009-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#15276541Answer by roman m for Serving VisualSVNroman m2009-10-06T19:38:33Z2009-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#15240530Answer by roman m for How to make a SQL looping for date?roman m2009-10-06T07:18:24Z2009-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#15238990Answer by roman m for Getting cell value after selecting a rowroman m2009-10-06T06:25:27Z2009-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#15238631Answer by roman m for how to make items load on drop down based on the radio buttonroman m2009-10-06T06:14:48Z2009-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#15239083Answer by roman m for Ho to get BackSpace - with only numbers limit in textbox ?roman m2009-10-06T06:28:48Z2009-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-files0DNN 4.9 ... Intermittent error while uploading PDF filesroman m2008-12-24T21:01:11Z2009-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#402694Comment by roman m on parsing JSon using JSon.netroman m2009-11-27T00:26:05Z2009-11-27T00:26:05Z+1 for JavaScriptSerializerhttp://stackoverflow.com/questions/1690097/why-does-a-call-to-httpcontext-current-session-clears-my-session/1690389#1690389Comment by roman m on Why does a call to HttpContext.Current.Session clears my Session?roman m2009-11-06T21:02:19Z2009-11-06T21:02:19Zall my calls were made form Page_Load
http://stackoverflow.com/questions/1690097/why-does-a-call-to-httpcontext-current-session-clears-my-sessionComment by roman m on Why does a call to HttpContext.Current.Session clears my Session?roman m2009-11-06T20:43:55Z2009-11-06T20:43:55ZNO, do you think this would change anything?http://stackoverflow.com/questions/1684782/how-do-i-configure-net-framework-3-5-in-windows-7/1684794#1684794Comment by roman m on How do I configure .net framework 3.5 in windows 7roman m2009-11-06T01:30:08Z2009-11-06T01:30:08Zno kidding ... typing as i'm googling :)http://stackoverflow.com/questions/1683812/auto-submit-updatepanel-and-show-updateprogress-areaComment by roman m on Auto Submit UpdatePanel and show UpdateProgress area.roman m2009-11-05T22:57:24Z2009-11-05T22:57:24Zsee edited answerhttp://stackoverflow.com/questions/1683812/auto-submit-updatepanel-and-show-updateprogress-areaComment by roman m on Auto Submit UpdatePanel and show UpdateProgress area.roman m2009-11-05T22:13:51Z2009-11-05T22:13:51Zwouldn'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#1683855Comment by roman m on Auto Submit UpdatePanel and show UpdateProgress area.roman m2009-11-05T22:13:12Z2009-11-05T22:13:12Zwouldn'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#1678343Comment by roman m on How to use ternary operator for this statement in c#roman m2009-11-05T04:28:18Z2009-11-05T04:28:18Zjust a note: Console.WriteLine() has nothing to do with ASP.NEThttp://stackoverflow.com/questions/1156692/visual-studio-auto-format-brokenComment by roman m on Visual Studio Auto-Format Brokenroman m2009-11-04T19:44:38Z2009-11-04T19:44:38Z+1 my coworker has the similar problem, Ctrl+K+D doesn't work for him eitherhttp://stackoverflow.com/questions/1671803/which-side-has-more-characters/1672105#1672105Comment by roman m on which side has more charactersroman m2009-11-04T07:20:21Z2009-11-04T07:20:21Z+1 for ///summary :Dhttp://stackoverflow.com/questions/1627073/how-do-i-bind-a-list-to-a-ddl/1627094#1627094Comment by roman m on How do I bind a list to a ddl?roman m2009-10-26T20:53:56Z2009-10-26T20:53:56Zis getBranch the name of class? see my code as i think i put the Branch where it belongshttp://stackoverflow.com/questions/1627073/how-do-i-bind-a-list-to-a-ddlComment by roman m on How do I bind a list to a ddl?roman m2009-10-26T20:23:20Z2009-10-26T20:23:20Zi think you have a mixup between your Branch type and getBranch list name ... i might be wrong thoughhttp://stackoverflow.com/questions/1592123/datagrid-showing-in-the-design-window-but-not-in-the-webpageComment by roman m on DataGrid showing in the design window, but not in the webpageroman m2009-10-20T02:19:29Z2009-10-20T02:19:29Zwhere's your datasource?http://stackoverflow.com/questions/1582961/need-some-t-sql-clarification/1583570#1583570Comment by roman m on Need some t-sql clarificationroman m2009-10-18T01:45:47Z2009-10-18T01:45:47Z+1 for detailed explanationhttp://stackoverflow.com/questions/870697/unable-to-cast-object-of-type-system-dbnull-to-type-system-string/870771#870771Comment by roman m on Unable to cast object of type 'System.DBNull' to type 'System.String`roman m2009-10-17T20:32:02Z2009-10-17T20:32:02Zthis will not work if you try converting 1 to bool (Convert.ToBoolean(1) works fine tho)