User Biri - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:30:15Z http://stackoverflow.com/feeds/user/968 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net 2 Problem with Login control of ASP.NET Biri 2008-09-15T09:19:11Z 2009-11-17T09:24:37Z <p>I set up a website to use SqlMembershipProvider as written on <a href="http://msdn.microsoft.com/en-us/library/ms998347.aspx" rel="nofollow">this page</a>.</p> <p>I followed every step. I have the database, I modified the Web.config to use this provider, with the correct connection string, and the authentication mode is set to Forms. Created some users to test with.</p> <p>I created a Login.aspx and put the Login control on it. Everything works fine until the point that a user can log in. </p> <p>I call Default.aspx, it gets redirected to Login.aspx, I enter the user and the correct password. No error message, nothing seems to be wrong, but I see again the Login form, to enter the user's login information. However if I check the cookies in the browser, I can see that the cookie with the specified name exists.</p> <p>I already tried to handle the events by myself and check, what is happening in them, but no success.</p> <p>I'm using VS2008, Website in filesystem, SQL Express 2005 to store aspnetdb, no role management, tested with K-Meleon, IE7.0 and Chrome.</p> <p>Any ideas?</p> <p><strong>Resolution:</strong> After some mailing with Rob we have the ideal solution, which is now the accepted answer.</p> http://stackoverflow.com/questions/12142/update-database-schema-in-entity-framework 2 Update database schema in Entity Framework Biri 2008-08-15T11:15:05Z 2009-10-09T21:00:40Z <p>I installed VS SP1 and played around with Entity Framework.</p> <p>I created a schema from an existing database and tried some basic operations.</p> <p>Most of it went well, except the database schema update.</p> <p>I changed the database in every basic way:</p> <ul> <li>added a new table</li> <li>deleted a table</li> <li>added a new column to an existing table</li> <li>deleted a column from an existing table</li> <li>changed the type of an existing column</li> </ul> <p>The first three went well, but the type change and the column deletion did not followed the database changes.</p> <p>Is there any way to make is work from the designer? Or is it not supported at the moment? I didn't find any related material yet, but still searching.</p> http://stackoverflow.com/questions/295710/logging-every-data-change-with-entity-framework 5 Logging every data change with Entity Framework Biri 2008-11-17T14:41:24Z 2009-10-08T20:01:40Z <p>There is a need from a customer to log every data change to a logging table with the actual user who made the modification. The application is using one SQL user to access the database, but we need to log the "real" user id.</p> <p>We can do this in t-sql by writing triggers for every table insert and update, and using context_info to store the user id. We passed the user id to a stored procedure, stored the user id in the contextinfo, and the trigger could use this info to write log rows to the log table.</p> <p>I can not find the place or way where or how can I do something similar using EF. So the main goal is: if I make a change in the data via EF, I would like to log the exact data change to a table in a semi-automatic way (so I don't want to check for every field for change before saving the object). We are using EntitySQL.</p> <p>Unfortunately we have to stick on SQL 2000 so the data change capture introduced in SQL2008 is not an option (but maybe that's also not the right way for us).</p> <p>Any ideas, links or starting points?</p> <p><strong>[Edit]</strong> Some notes: by using ObjectContext.SavingChanges eventhandler, I can get the point where I can inject the SQL statement to initialize the contextinfo. However I cannot mix the EF and the standard SQL. So I can get the EntityConnection but I cannot execute a T-SQL statement using it. Or I can get the connection string of the EntityConnection and create an SqlConnection based on it, but it will be a different connection, so the contextinfo will not affect the save made by the EF.</p> <p>I tried the following in the SavingChanges handler:</p> <pre><code>testEntities te = (testEntities)sender; DbConnection dc = te.Connection; DbCommand dcc = dc.CreateCommand(); dcc.CommandType = CommandType.StoredProcedure; DbParameter dp = new EntityParameter(); dp.ParameterName = "userid"; dp.Value = textBox1.Text; dcc.CommandText = "userinit"; dcc.Parameters.Add(dp); dcc.ExecuteNonQuery(); </code></pre> <p>Error: The value of EntityCommand.CommandText is not valid for a StoredProcedure command. The same with SqlParameter instead of EntityParameter: SqlParameter cannot be used.</p> <pre><code>StringBuilder cStr = new StringBuilder("declare @tx char(50); set @tx='"); cStr.Append(textBox1.Text); cStr.Append("'; declare @m binary(128); set @m = cast(@tx as binary(128)); set context_info @m;"); testEntities te = (testEntities)sender; DbConnection dc = te.Connection; DbCommand dcc = dc.CreateCommand(); dcc.CommandType = CommandType.Text; dcc.CommandText = cStr.ToString(); dcc.ExecuteNonQuery(); </code></pre> <p>Error: The query syntax is not valid.</p> <p>So here I am, stuck to create a bridge between Entity Framework and ADO.NET. If I can get it working, I will post a proof of concept.</p> http://stackoverflow.com/questions/397744/net-windows-service-with-timer-stops-responding 2 .NET Windows Service with timer stops responding Biri 2008-12-29T13:55:16Z 2009-06-25T23:12:53Z <p>I have a windows service written in c#. It has a timer inside, which fires some functions on a regular basis. So the skeleton of my service:</p> <pre><code>public partial class ArchiveService : ServiceBase { Timer tickTack; int interval = 10; ... protected override void OnStart(string[] args) { tickTack = new Timer(1000 * interval); tickTack.Elapsed += new ElapsedEventHandler(tickTack_Elapsed); tickTack.Start(); } protected override void OnStop() { tickTack.Stop(); } private void tickTack_Elapsed(object sender, ElapsedEventArgs e) { ... } } </code></pre> <p>It works for some time (like 10-15 days) then it stops. I mean the service shows as running, but it does not do anything. I make some logging and the problem can be the timer, because after the interval it does not call the tickTack_Elapsed function.</p> <p>I was thinking about rewrite it without a timer, using an endless loop, which stops the processing for the amount of time I set up. This is also not an elegant solution and I think it can have some side effects regarding memory.</p> <p>The Timer is used from the System.Timers namespace, the environment is Windows 2003. I used this approach in two different services on different servers, but both is producing this behavior (this is why I thought that it is somehow connected to my code or the framework itself).</p> <p>Does somebody experienced this behavior? What can be wrong?</p> <p><hr /></p> <h3>Edit:</h3> <p>I edited both services. One got a nice try-catch everywhere and more logging. The second got a timer-recreation on a regular basis. None of them stopped since them, so if this situation remains for another week, I will close this question. Thank you for everyone so far.</p> <p><hr /></p> <h3>Edit:</h3> <p>I close this question because nothing happened. I mean I made some changes, but those changes are not really relevant in this matter and both services are running without any problem since then. Please mark it as "Closed for not relevant anymore".</p> http://stackoverflow.com/questions/755161/cannot-display-page-error-in-several-browser-with-a-live-iis6 0 Cannot Display Page error in several browser with a live IIS6 Biri 2009-04-16T08:03:59Z 2009-05-01T07:47:42Z <p>I developed an ASP.NET page (.NET 2.0) and it works as a charm in the development environment. It is using AJAX.ASP.NET and only the shipped controls (no third-party controls).</p> <p>I published it to a live IIS6 web server, created the website, set up the .NET version, the application pool and the site can run scripts. I also unchecked anonymous access and checked windows authentication.</p> <p>Something is either missing or wrongly set up, because my users get "Cannot Display Page" error in different browsers on different places. By different places I mean that when they try to turn the page on a grid they got this error; when they click on a button to submit a search; when they submit something else...</p> <p>But cannot see a pattern, sometimes it happens, sometimes not. Sometimes with one function sometimes with another. Sometimes with one user sometimes with another.</p> <p>The users are using IE6, IE7, Firefox, Mozilla and Chrome, so I don't think it is client-related. I tried to create another website and put it there, but I got the same symptoms.</p> <p>I don't have a possibility to try it on another IIS, so basically I'm stuck.</p> <p><strong>Some more details:</strong> I'm sure it is somehow connected to IIS, because the network has no problem and it is happening on more than one website now.</p> <p>There is something wrong with the windows authentication, because the IIS log shows lines like these:</p> <pre><code>2009-04-29 12:33:17 GET /fakk/OsszLapok.aspx id=1 - 192.168.120.3 401 2 2148074254 2009-04-29 12:33:19 GET /fakk/OsszLapok.aspx id=1 mydomain\username 192.168.120.3 200 0 0 </code></pre> <p>So the first call is coming without the windows user and shows 401, while the second (only after 2 seconds) is coming with user information and it works.</p> <p>I have plenty of these in the log, even in the same second:</p> <pre><code>2009-04-29 12:29:21 GET /fakk/Images/rovat_title_eft.png - 192.168.120.3 401 2 2148074254 2009-04-29 12:29:21 GET /fakk/Images/footer_up.png - 192.168.120.3 401 2 2148074254 2009-04-29 12:29:21 GET /fakk/Images/rovat_title_eft.png - mydomain\username 192.168.120.3 200 0 0 2009-04-29 12:29:21 GET /fakk/Images/footer_up.png - mydomain\username 192.168.120.3 200 0 0 </code></pre> <p>The webpage is set up to use windows authentication, anonymous access is denied.</p> http://stackoverflow.com/questions/805493/syntax-highlighting-in-a-listbox/805514#805514 0 Answer by Biri for Syntax Highlighting in a ListBox Biri 2009-04-30T05:59:33Z 2009-04-30T05:59:33Z <p>I suggest to try <a href="http://scintillanet.codeplex.com/" rel="nofollow">ScintillaNet</a>. It has syntax highlight and line numbers (and so much more). However you cannot select more lines only one selection at the time.</p> http://stackoverflow.com/questions/755166/exclude-certain-file-extensions-when-get-files-from-a-directory/755175#755175 0 Answer by Biri for Exclude certain file extensions when get files from a directory Biri 2009-04-16T08:09:26Z 2009-04-16T08:09:26Z <p>Afaik there is no way to specify the exclude patterns. You have to do it manually, like:</p> <pre><code>string[] files = Directory.GetFiles(myDir); foreach(string fileName in files) { DoSomething(fileName); } </code></pre> http://stackoverflow.com/questions/751182/redmon-redirect-to-a-net-windows-forms-application 1 Redmon redirect to a .NET Windows.Forms application Biri 2009-04-15T11:05:44Z 2009-04-15T11:24:52Z <p>I have an interesting task: to write a program which captures input from the program called <a href="http://pages.cs.wisc.edu/~ghost/redmon/" rel="nofollow">Redmon</a>. It is basically a virtual printer which redirects the output to a program.</p> <p>I installed Redmon and created a winforms application to catch the output. But I'm stuck here. I checked what does my program receives and it is nothing on the parameter level (the string[] on main args are empty).</p> <p>Redmon starts my program, but then it is stopping. I guess I should read somehow the content it is sending to the program, but how?</p> http://stackoverflow.com/questions/258893/wysiwyg-control-for-winform/258902#258902 1 Answer by Biri for WYSIWYG Control for Winform Biri 2008-11-03T15:01:00Z 2009-02-26T09:44:18Z <p>Actually it's very easy to write your own based on the RichTextBox control.</p> <p>I would go that way for sure. Your biggest problem will be the icons for the edit bar.</p> <p>Check <a href="http://www.workaholic.hu/temp/RTFEditor.zip" rel="nofollow">this one</a> for starter. UPDATE: Link is 404.</p> http://stackoverflow.com/questions/249573/parallel-processing-of-database-queue 1 Parallel processing of database queue Biri 2008-10-30T08:28:14Z 2009-02-25T04:15:57Z <p>There is small system, where a database table as queue on MSSQL 2005. Several applications are writing to this table, and one application is reading and processing in a FIFO manner.</p> <p>I have to make it a little bit more advanced to be able to create a distributed system, where several processing application can run. The result should be that 2-10 processing application should be able to run and they should not interfere each other during work.</p> <p>My idea is to extend the queue table with a row showing that a process is already working on it. The processing application will first update the table with it's idetifyer, and then asks for the updated records.</p> <p>So something like this:</p> <pre><code>start transaction update top(10) queue set processing = 'myid' where processing is null select * from processing where processing = 'myid' end transaction </code></pre> <p>After processing, it sets the processing column of the table to something else, like 'done', or whatever.</p> <p>I have three questions about this approach.</p> <p>First: can this work in this form?</p> <p>Second: if it is working, is it effective? Do you have any other ideas to create such a distribution?</p> <p>Third: In MSSQL the locking is row based, but after an amount of rows are locked, the lock is extended to the whole table. So the second application cannot access it, until the first application does not release the transaction. How big can be the selection (top x) in order to not lock the whole table, only create row locks?</p> http://stackoverflow.com/questions/399826/how-to-submit-a-form-using-the-enter-key-in-asp-net/399839#399839 4 Answer by Biri for How to submit a form using the Enter key in asp.net Biri 2008-12-30T09:13:33Z 2008-12-30T09:13:33Z <p>There is a property for the form: defaultbutton.</p> <pre><code>&lt;form runat="server" defaultbutton="myButton"&gt; ... &lt;/form&gt; </code></pre> <p>It is first time implemented in ASP.NET 2.0.</p> http://stackoverflow.com/questions/289440/cannot-get-regular-expression-work-correctly-with-multiline 2 Cannot get regular expression work correctly with multiline Biri 2008-11-14T07:39:49Z 2008-12-02T19:18:34Z <p>I have a quite big XML output from an application. I need to process it with my program and then feed it back to the original program. There are pieces in this XML which needs to be filled out our replaced. The interesting part looks like this:</p> <pre><code>&lt;sys:customtag sys:sid="1" sys:type="Processtart" /&gt; &lt;sys:tag&gt;value&lt;/sys:tag&gt; here are some other tags &lt;sys:tag&gt;value&lt;/sys.tag&gt; &lt;sys:customtag sys:sid="1" sys:type="Procesend" /&gt; </code></pre> <p>and the document contains several pieces like this.</p> <p>I need to get all XML pieces inside these tags to be able to make modifications on it. I wrote a regular expression to get those pieces but it does not work:</p> <pre><code>XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(@"output.xml"); Regex regExp = new Regex(@"&lt;sys:customtag(.*?)Processtart(.*?)/&gt;(.*?)&lt;sys:customtag (.*?)Procesend(.*?)/&gt;", RegexOptions.Multiline &amp; RegexOptions.IgnorePatternWhitespace &amp; RegexOptions.CultureInvariant); MatchCollection matches = regExp.Matches(xmlDoc.InnerXml); </code></pre> <p>If I leave the whole stuff in one line and call this regexp without the multiline option, it does find every occurences. By leaving the file as it is and set the multiline option, it does not work. What is the problem, what should I change? Or is there any easier way to get the XML parts between these tags without regexp?</p> http://stackoverflow.com/questions/295710/logging-every-data-change-with-entity-framework/304709#304709 2 Answer by Biri for Logging every data change with Entity Framework Biri 2008-11-20T09:03:22Z 2008-11-20T09:03:22Z <p>Finally with Craig's help, here is a proof of concept. It needs more testing, but for first look it is working.</p> <p>First: I created two tables, one for data one for logging.</p> <pre><code>-- This is for the data create table datastuff ( id int not null identity(1, 1), userid nvarchar(64) not null default(''), primary key(id) ) go -- This is for the log create table naplo ( id int not null identity(1, 1), userid nvarchar(64) not null default(''), datum datetime not null default('2099-12-31'), primary key(id) ) go </code></pre> <p>Second: create a trigger for insert.</p> <pre><code>create trigger myTrigger on datastuff for insert as declare @User_id int, @User_context varbinary(128), @User_id_temp varchar(64) select @User_context = context_info from master.dbo.sysprocesses where spid=@@spid set @User_id_temp = cast(@User_context as varchar(64)) declare @insuserid nvarchar(64) select @insuserid=userid from inserted insert into naplo(userid, datum) values(@User_id_temp, getdate()) go </code></pre> <p>You should also create a trigger for update, which will be a little bit more sophisticated, because it needs to check every field for changed content.</p> <p>The log table and the trigger should be extended to store the table and field which is created/changed, but I hope you got the idea.</p> <p>Third: create a stored procedure which fills in the user id to the SQL context info.</p> <pre><code>create procedure userinit(@userid varchar(64)) as begin declare @m binary(128) set @m = cast(@userid as binary(128)) set context_info @m end go </code></pre> <p>We are ready with the SQL side. Here comes the C# part.</p> <p>Create a project and add an EDM to the project. The EDM should contain the datastuff table (or the tables you need to watch for changes) and the SP.</p> <p>Now do something with the entity object (for example add a new datastuff object) and hook to the SavingChanges event.</p> <pre><code>using (testEntities te = new testEntities()) { // Hook to the event te.SavingChanges += new EventHandler(te_SavingChanges); // This is important, because the context info is set inside a connection te.Connection.Open(); // Add a new datastuff datastuff ds = new datastuff(); // This is coming from a text box of my test form ds.userid = textBox1.Text; te.AddTodatastuff(ds); // Save the changes te.SaveChanges(true); // This is not needed, only to make sure te.Connection.Close(); } </code></pre> <p>Inside the SavingChanges we inject our code to set the context info of the connection.</p> <pre><code>// Take my entity testEntities te = (testEntities)sender; // Get it's connection EntityConnection dc = (EntityConnection )te.Connection; // This is important! DbConnection storeConnection = dc.StoreConnection; // Create our command, which will call the userinit SP DbCommand command = storeConnection.CreateCommand(); command.CommandText = "userinit"; command.CommandType = CommandType.StoredProcedure; // Put the user id as the parameter command.Parameters.Add(new SqlParameter("userid", textBox1.Text)); // Execute the command command.ExecuteNonQuery(); </code></pre> <p>So before saving the changes, we open the object's connection, inject our code (don't close the connection in this part!) and save our changes.</p> <p>And don't forget! This needs to be extended for your logging needs, and needs to be well tested, because this show only the possibility!</p> http://stackoverflow.com/questions/301510/form-to-exe/301574#301574 0 Answer by Biri for Form to Exe Biri 2008-11-19T11:04:09Z 2008-11-19T13:06:37Z <p>True, you get an exe during compile of a Windows.Forms application, only check the bin folder of the project.</p> <p>You can check the output in Project/Properties/Application/Output type in Visual Studio.</p> <p>This is a little bit offtopic: you cound create to a native image, with <a href="http://msdn.microsoft.com/en-us/library/6t9t5wcf(VS.80).aspx" rel="nofollow">NGen</a> (a Microsoft Utility), with some limitations. This means that the code will be compiled to a native image, placed to the cache directly and run from there, without using the JIT every time. This can improve performance, but it is not a real native exe, as Jon pointed out.</p> http://stackoverflow.com/questions/268048/can-i-find-out-the-return-value-before-returning-while-debugging-in-visual-studio/268095#268095 -1 Answer by Biri for Can I find out the return value before returning while debugging in Visual Studio Biri 2008-11-06T09:42:39Z 2008-11-06T09:42:39Z <p>You can also ask to evaluate the value in the intermediate window as well, if it does not set flags or other variables, but only returns something.</p> http://stackoverflow.com/questions/263574/good-date-picker-for-asp-net/263592#263592 1 Answer by Biri for Good date-picker for ASP.NET Biri 2008-11-04T21:51:09Z 2008-11-04T21:51:09Z <p>I'm using <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Calendar/Calendar.aspx" rel="nofollow">Calendar from AJAX.NET</a> with some custom tweaks (for example to correctly handle time) and <a href="http://demos.telerik.com/aspnet/prometheus/Calendar/Examples/Overview/DefaultCS.aspx" rel="nofollow">Telerik's RadCalendar</a> control, which is really nice (but not free).</p> http://stackoverflow.com/questions/263478/php-mysql-how-do-you-determin-the-field-names-from-a-given-query-result/263490#263490 0 Answer by Biri for PHP/MySQL - How do you determin the field names from a given query result? Biri 2008-11-04T21:25:20Z 2008-11-04T21:25:44Z <p>I'm not 100% sure about this, but I would say: there is no way.</p> <p>The MySQL gives you back the result set, nothing more. It does not return the select statement nor any details about it.</p> <p>So you cannot get the original field names because the server will provide you the information you asked: alias names.</p> http://stackoverflow.com/questions/262043/sql-how-to-loop-through-a-table-and-merge-result/262057#262057 1 Answer by Biri for SQL How to loop through a table and merge result? Biri 2008-11-04T14:30:09Z 2008-11-04T14:38:13Z <p>Create a temp table before the loop and don't select data, but insert data to this temp table:</p> <pre><code>create table #tmp ( Name type, authorityLevel type ) while @nrOfAuthlevels &gt;= @myAuthLevel begin set @myAuthLevel = @myAuthLevel + 1 insert into #tmp values( SELECT Role.name, Role.authorityLevel FROM [dbo].[Role] where ... ) end </code></pre> http://stackoverflow.com/questions/261825/asp-net-ajax-framework/261875#261875 1 Answer by Biri for ASP.NET Ajax Framework Biri 2008-11-04T13:22:56Z 2008-11-04T13:22:56Z <p><a href="http://ajaxpatterns.org/DotNet_Ajax_Frameworks" rel="nofollow">Here</a> is a list of different AJAX frameworks to use with ASP.NET.</p> <p>We also used <a href="http://www.prototypejs.org/" rel="nofollow">prototype</a> for smaller tasks.</p> http://stackoverflow.com/questions/261423/event-handling-in-asp-net/261460#261460 1 Answer by Biri for Event handling in ASP.net Biri 2008-11-04T10:31:24Z 2008-11-04T10:31:24Z <p>You can handle it on client side with javascript:</p> <pre><code>myTextBox.Attributes["OnKeyPress"] = "javascript function call;"; </code></pre> <p>You can use OnKeyUp for a better browser compatibility and handling.</p> <p>You can also handle something similair on server side:</p> <pre><code>&lt;asp:TextBox runat="server" ID="ole" ontextchanged="ole_TextChanged" AutoPostBack="true"&gt;&lt;/asp:TextBox&gt; protected void ole_TextChanged(object sender, EventArgs e) { // Do stuff } </code></pre> <p>However this fires only when you leave the field, and anyway I wouldn't recommend it as it is using a postback every time.</p> <p>The solution is anyway to go with javascript. It can be simple javascript, or AJAX.</p> http://stackoverflow.com/questions/261405/accessing-another-database-with-dynamic-name-in-sql-server/261433#261433 0 Answer by Biri for Accessing another database with dynamic name in SQL Server Biri 2008-11-04T10:23:03Z 2008-11-04T10:23:03Z <p>I don't think that it is possible.</p> <p>The name is a variable and you cannot use variables as database names.</p> <p>So the only way is to put the whole command to a string and exec it, which you would like to avoid.</p> <p>What is the purpose of the whole thing? What happens if you name your databases on your logic, but somewhere store the link between your logic and the name entered by the user?</p> http://stackoverflow.com/questions/261164/how-to-make-a-numericupdown-control-for-asp-net/261184#261184 2 Answer by Biri for How to make a numericupdown control for asp.net? Biri 2008-11-04T07:42:41Z 2008-11-04T07:42:41Z <p>You can use AJAX.NET, there is a <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/NumericUpDown/NumericUpDown.aspx" rel="nofollow">numericupdown control</a>.</p> <p>Check <a href="http://ajax.asp.net/" rel="nofollow">http://ajax.asp.net/</a></p> http://stackoverflow.com/questions/258807/sql-server-query-against-two-linked-databases-using-different-collations/258855#258855 5 Answer by Biri for SQL Server query against two linked databases using different collations Biri 2008-11-03T14:47:31Z 2008-11-03T15:00:57Z <p>Just add the collation to your select, like:</p> <pre><code>select p.ID, p.ProjectCode_VC, p.Name_VC, v.* FROM [serverB].Projects.dbo.Projects_T p LEFT JOIN [serverA].SOCON.dbo.vw_PROJECT v on p.ProjectCode_VC collate Latin1_General_Bin = v.PROJ_CODE </code></pre> <p>or the other way around. So "convert" one of the collations to the other.</p> http://stackoverflow.com/questions/258077/why-do-i-lose-my-session-variable-in-5-minutes/258105#258105 1 Answer by Biri for Why do I lose my Session Variable in 5 minutes? Biri 2008-11-03T08:08:58Z 2008-11-03T08:08:58Z <p>If this happens always at 5 minutes then check web.config for session settings, and check IIS: website/Properties/ASP.NET, click on Edit Configuration, select State Management tab, and check session settings.</p> http://stackoverflow.com/questions/257997/subdomain-on-different-host/258061#258061 1 Answer by Biri for Subdomain on different host Biri 2008-11-03T07:26:08Z 2008-11-03T07:26:08Z <p>You need two things in order to make it work, but I guess you completed only one.</p> <p>First you have to set up the DNS of domain1.com to point to sub.domain2.com. I guess this you already made.</p> <p>Second is that the webserver should know that the domain1.com is showing somewhere on the server. So try to write to GoDaddy, they should set up this, it's not in your hands.</p> http://stackoverflow.com/questions/242875/how-to-make-app-fully-sql-server-2005-compatible/242945#242945 1 Answer by Biri for How to make app fully SQL Server 2005 compatible? Biri 2008-10-28T11:20:10Z 2008-10-28T11:20:10Z <p>Actually you are talking about two different things.</p> <p>One is to update the database to SQL 2005 level, to be able to use the functions only available there. It can be done easily by setting the compatibility level. However in this case SQL 2000 clients can have problems with it.</p> <p>Second is to upgrade your application to use only SQL 2005 related libraries. This is also easy, basically the steps what you have written. In this case your application can also work with SQL 2000 databases (except if you use some SQL 2005 specific feature) because the libraries are backward compatible.</p> <p>End words: you are either way <em>compatible</em> with SQL 2005, the only difference is that you can use SQL 2005 <em>specific features</em> or not.</p> <p>Why not change to SQL 2008 already? <a href="http://stackoverflow.com/questions/189831/should-we-upgrade-to-sql-server-2005-or-2008">Here is a thread</a> about this topic.</p> http://stackoverflow.com/questions/242913/windows-dir-command-order-by-name-and-something/242925#242925 0 Answer by Biri for Windows 'dir' command, Order By Name AND <something> Biri 2008-10-28T11:12:29Z 2008-10-28T11:12:29Z <p>No, there's no way to do this. Windows Explorer uses a different approach to handle this.</p> http://stackoverflow.com/questions/208018/export-multiple-sheets-to-excel-through-browser/208021#208021 1 Answer by Biri for Export Multiple Sheets to Excel Through Browser Biri 2008-10-16T10:12:09Z 2008-10-16T10:12:09Z <p>You can use for example <a href="http://www.carlosag.net/Tools/ExcelXmlWriter/" rel="nofollow">this library</a>, if you don't want to create your own Excel XML writer library.</p> http://stackoverflow.com/questions/207836/reportviewer-control-wont-allow-exporting/207972#207972 1 Answer by Biri for ReportViewer control won't allow Exporting Biri 2008-10-16T09:51:42Z 2008-10-16T09:51:42Z <p>The first part I don't know, but the second can be the ActiveX used to print. When you press that print button, it is calling an ActiveX control on the client's machine to be able to print. </p> <p>If this control is not yet installed on the client machine, it is downloaded and installed if you have enought rights. So it is the rights management. </p> <p>Try to login as an admin user and try to print. If it goes well, you can logout and login as a standard user and print again. It worked for us on XP+IE6 and XP+IE7. Finally we used SCCM to install the control to all machines.</p> http://stackoverflow.com/questions/204506/how-to-manage-non-english-speaking-customer/204554#204554 4 Answer by Biri for How to manage non English speaking customer Biri 2008-10-15T12:40:15Z 2008-10-15T12:40:15Z <p>My native language is not English, so I'm on the other side. There were times when we had to write project documents in 4-6 languages.</p> <p>Try to find somebody who understand English (like a key person). I try to avoid the communication in different languages on a project. Of course you can talk and write on different languages with project members, but if you talk or write to all members of the project at once, it should be one language.</p> <p>Documentation should be maintained in as many languages as many involved. All documents should be updated on a regular basis and try to avoid the situation when you have to tell them that "the English is the current one". Find someone who is native in the target language and translate from English for you. It will be far more better, understandable, and more native than if you try the other way around.</p> http://stackoverflow.com/questions/1298736/asp-net-toolkit-calendar/1298790#1298790 Comment by Biri on asp.net toolkit calendar Biri 2009-08-19T09:43:15Z 2009-08-19T09:43:15Z I've just tried like &lt;asp:TextBox Style=&quot;display:none;&quot; and it works. http://stackoverflow.com/questions/755161/cannot-display-page-error-in-several-browser-with-a-live-iis6/805631#805631 Comment by Biri on Cannot Display Page error in several browser with a live IIS6 Biri 2009-04-30T07:05:40Z 2009-04-30T07:05:40Z Looks like the proxy was the problem. I changed the client connection, so if it works for the rest of the week, you are the man! http://stackoverflow.com/questions/755161/cannot-display-page-error-in-several-browser-with-a-live-iis6/805489#805489 Comment by Biri on Cannot Display Page error in several browser with a live IIS6 Biri 2009-04-30T06:25:08Z 2009-04-30T06:25:08Z I was just checking while you wrote this answer. There is nothing in the event logs, but the IIS log shows something interesting: the windows authentication is working in a strange way. The log is too long, so I post it to the original question. http://stackoverflow.com/questions/755161/cannot-display-page-error-in-several-browser-with-a-live-iis6/755174#755174 Comment by Biri on Cannot Display Page error in several browser with a live IIS6 Biri 2009-04-17T07:29:49Z 2009-04-17T07:29:49Z No, I haven't. It's happening quite random in terms of http calls and users, but I give it a try. http://stackoverflow.com/questions/755166/exclude-certain-file-extensions-when-get-files-from-a-directory/755175#755175 Comment by Biri on Exclude certain file extensions when get files from a directory Biri 2009-04-16T08:16:09Z 2009-04-16T08:16:09Z Maybe you can derive your own directory class from the base System.IO.Directory if it is possible (I haven't tried). http://stackoverflow.com/questions/755161/cannot-display-page-error-in-several-browser-with-a-live-iis6/755174#755174 Comment by Biri on Cannot Display Page error in several browser with a live IIS6 Biri 2009-04-16T08:12:20Z 2009-04-16T08:12:20Z Unfortunately it's not so easy. The user has access, the web page shows up, so in common it is working, but <i>sometimes</i> it is not. So I can see a list of whatever, I can turn the page 3 times, but the forth time it fails. Short: yes, everything is set up as you asked. http://stackoverflow.com/questions/751182/redmon-redirect-to-a-net-windows-forms-application/751232#751232 Comment by Biri on Redmon redirect to a .NET Windows.Forms application Biri 2009-04-15T11:40:53Z 2009-04-15T11:40:53Z Thanks. I was looking for reading from stdin in winforms but haven't found anything. This is the reason. :-) http://stackoverflow.com/questions/751182/redmon-redirect-to-a-net-windows-forms-application Comment by Biri on Redmon redirect to a .NET Windows.Forms application Biri 2009-04-15T11:40:04Z 2009-04-15T11:40:04Z In configuration everything is standard: redirect port to program: mytest.exe, and runasuser checked. But Marc solved it, thanks. http://stackoverflow.com/questions/751182/redmon-redirect-to-a-net-windows-forms-application/751232#751232 Comment by Biri on Redmon redirect to a .NET Windows.Forms application Biri 2009-04-15T11:23:18Z 2009-04-15T11:23:18Z Can I use Console.In also from a Windows.Forms application? I try that. http://stackoverflow.com/questions/397744/net-windows-service-with-timer-stops-responding/397757#397757 Comment by Biri on .NET Windows Service with timer stops responding Biri 2008-12-30T09:22:59Z 2008-12-30T09:22:59Z Also a good idea, thanks. http://stackoverflow.com/questions/397744/net-windows-service-with-timer-stops-responding/397829#397829 Comment by Biri on .NET Windows Service with timer stops responding Biri 2008-12-30T09:14:02Z 2008-12-30T09:14:02Z I will try this one also. http://stackoverflow.com/questions/397744/net-windows-service-with-timer-stops-responding/398273#398273 Comment by Biri on .NET Windows Service with timer stops responding Biri 2008-12-30T09:09:53Z 2008-12-30T09:09:53Z Sorry, I forgot to mention that this is a .NET 2.0 application. But I also don't stop and restart the timer, however there are some points to consider (like using System.Threading instead of System.Timers). I add to my list to try, thanks. http://stackoverflow.com/questions/397744/net-windows-service-with-timer-stops-responding/397770#397770 Comment by Biri on .NET Windows Service with timer stops responding Biri 2008-12-29T14:16:20Z 2008-12-29T14:16:20Z Interesting idea, I will give it a try this week for sure. http://stackoverflow.com/questions/397744/net-windows-service-with-timer-stops-responding/397757#397757 Comment by Biri on .NET Windows Service with timer stops responding Biri 2008-12-29T14:12:39Z 2008-12-29T14:12:39Z My last idea was that I will connect to the service with VS to debug it. Hopefully I could get the exception whereever it happens. I will also rewrite one of them to a loop. It worth a try. http://stackoverflow.com/questions/397744/net-windows-service-with-timer-stops-responding/397763#397763 Comment by Biri on .NET Windows Service with timer stops responding Biri 2008-12-29T14:10:21Z 2008-12-29T14:10:21Z Unfortunately no. The tickTack_Elapsed is working right, I log when it starts and ends. Every time I see a start-stop event pair before it stops responding. Furhermore I also check the running state in there, so it cannot run over to a previously started instance.