User schmoopy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:00:11Zhttp://stackoverflow.com/feeds/user/26685http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/854590/registerclientscriptresource-ajax-update-panel0RegisterClientScriptResource + AJAX update panelschmoopy2009-05-12T20:01:12Z2009-11-27T03:00:03Z
<p>Hello,</p>
<p>I have a problem that is really making me feel dumb. I have a custom control that inherits textbox. This textbox (at least for this example) simply has a .js file that is embedded in the .dll.</p>
<p>Long story short, works great when not in an AJAX update panel. So i did some research and found that instead of using: Page.ClientScript.RegisterClientScriptResource, i should use ScriptManger.RegisterClientScriptResource - i have done this in the overrdive render method, but the javascript still does not fire.</p>
<p>Anyone know what im doing wrong?</p>
<p>example:
i have a folder in my project called Scripts - it contains myscript.js
My Assembly is called Jim.Bob.Controls</p>
<p>I add attributes to my controls ie: Attributes.Add("onclick", "Test2();");</p>
<p>In the Override Render:</p>
<pre><code>ScriptManager.RegisterClientScriptResource(this.Page, typeof(CustomTextBox), "Jim.Bob.Controls.Scripts.myscript.js");
</code></pre>
<p>Yet i still get 'object expected' error.</p>
<p>I need my textbox to work with and w/o AJAX. I imported System.Web.Extensions into my project to access ScriptManger</p>
<p>Can someone please tell me what im doing wrong? Again, this whole thing worked fine w/o AJAX, i have put the necessary stuff into the AssemblyInfo.cs (WebResource:,,,,etc)</p>
<p>Thanks in advance :-)</p>
<p>--- UPDATE ---
I reverted the control, trying it in a non AJAX web and i am having the same problem. Not sure why i have a problem, i have another custom control in the same assembly that is working just fine - have them setup the exact same way, only difference is the one that is working inherits WebControl, the one that is not inherits TextBox
...
in the one that is working i emmit html like Go and do it
Where the one that is NOT working i have
Attributes.Add("onclick", "CustomFunction();");</p>
<p>Also, if i do Attributes.Add("onclick", "alert('hello');");
it works fine.</p>
<p>Sorry for such a long post.</p>
http://stackoverflow.com/questions/1766052/linqtosql-calling-count-fails-in-production-only0LinqToSql + calling .Count fails in production onlyschmoopy2009-11-19T19:49:39Z2009-11-19T20:00:08Z
<p>Hello,</p>
<p>This should be very simple, but its very frustrating.</p>
<p>I have a LinqToSql as below, it works fine in development but when i move the code to production it blows up on .Count</p>
<p><hr></p>
<p>update, resolved the issue, but dont understand why i had to...
Please explain if you can, im confused. The code below works fine in development, in order to get it to work in production i had to NOT use deferred typing, so...
instead of:</p>
<pre><code>Dim val = From a In _configuration Where a.ItemKey = "Val5" Select
</code></pre>
<p>I had to use:</p>
<pre><code>Dim val As IEnumerable(Of MyAssembly.Configuration) _
= From a In _configuration Where a.ItemKey = "Val5" Select a
</code></pre>
<p>Why in the world would the first way work on my development server but not the production server? They both have 3.5 SP1, etc...</p>
<p><hr></p>
<pre><code> Dim val = From a In _configuration Where a.ItemKey = "Val5" Select a
Dim valExists As Boolean = False
If val.Count > 0 Then
valExists = True
End If
</code></pre>
<p>The error i get is:
System.MissingMemberException: Public member 'Count' on type 'WhereSelectListIterator(Of Configuration,Configuration)' not found.</p>
<p>This makes absolutely no sense to me. The type of val is IEnumerable so why would i not be able to call .Count on this?</p>
<p>Thanks :-)</p>
http://stackoverflow.com/questions/199219/ping-always-succeeds-cant-easily-check-uptime-using-ping-on-a-url0Ping always succeeds, cant easily check uptime using ping on a urlschmoopy2008-10-13T22:18:48Z2009-10-28T19:39:51Z
<p>Im getting frustrated because of OpenDNS and other services (ie: roadrunner) that now always returns a ping even if you type any invalid url ie: lkjsdaflkjdsjf.com --- I had created software for my own use that would ping a url to verify if the site was up or not. This no longer works. Does anyone have any ideas about this?</p>
<p>Requirements:
1.) It should work with any valid web site, even ones i dont control
2.) It should be able to run from any network that has internet access</p>
<p>I would greatly appreciate to hear how others now handle this.</p>
<p>Thank you greatly :-)</p>
<p>I would like to add, im attempting to do this using System.Net in c#</p>
<p>new addition: Looking for a solution that i can either buy and run on my windows machine, or program in c#. :-)</p>
<p>update: update: update: update:
Thank you all very much for your answers. Ultimately i ended up creating a solution by doing this:
1.) Creating a simple webclient that downloaed the specified page from the url (may change to just headers or use this to notify of page changes)
2.) Read in xml file that simply lists the full url to the site/pages to check
3.) Created a windows service to host the solution so it would recover server restarts.
4.) On error an email and text message is sent to defined list of recipients
5.) Most values (interval, smtp, to, from, etc) are defined in the .config for easy change</p>
<p>I will be taking some of your advice to add 'features' to this later, which includes:
- AJAX page for real-time monitoring. I will use WCF to connect to the existing windows service from the asp.net page
- Download Headers only (with option for page change comparison)
- make more configurable (ie: retries on failure before notification)</p>
http://stackoverflow.com/questions/1630834/how-can-you-create-a-cross-browser-css-menu-that-doesnt-require-you-to-provide-a1How can you create a cross browser css menu that doesnt require you to provide a style for EVERY LEVEL of the menuschmoopy2009-10-27T13:34:55Z2009-10-27T15:14:39Z
<p>I have a menu that will be automatically created in an asp.net page. I'm trying to use a pure CSS cross browser menu but how can i set it so that each subsequent child is autohiden/shown w/o having to define the style for each level of the menu.</p>
<p>Is this the only way to accomplish this with css?</p>
<p>Essentially im looking for a way to use css to show/hide the child menu items w/o having to define the style for every level - especially since i dont know how many levels there will be.</p>
http://stackoverflow.com/questions/1477935/best-tell-tale-sign-on-their-first-day-that-a-programmer-might-not-work-out/1478646#14786462Answer by schmoopy for Best tell-tale sign on their first day that a programmer might not work out?schmoopy2009-09-25T17:37:17Z2009-09-25T17:37:17Z<p>They seem shocked that they are the only naked person in the building :-)</p>
http://stackoverflow.com/questions/1478464/how-do-you-create-edit-mxp0How do you create/edit .mxpschmoopy2009-09-25T17:01:26Z2009-09-25T17:01:26Z
<p>How does one go about creating/editing .mxp extensions? I am not familiar with them and scouring the web just gives me 'here download mine'.</p>
<p>I would like to know what tool/language to use to create them. Specifically i want to create extensions for DreamWeaver. I am familiar with many programming languages (.NET, Script, ActionScript, PHP, etc) but i am best with .NET</p>
<p>Any help or ideas on how i should get started is appreciated.</p>
http://stackoverflow.com/questions/1470058/run-javascript-in-dreamweaver-cs30Run JavaScript in DreamWeaver CS3schmoopy2009-09-24T06:29:25Z2009-09-25T16:49:07Z
<p>Is it possible to have javascript execute in the design view of DreamWeaver CS3? Specifically i would like to be able to have custom tags like:</p>
<pre><code><myTag:Custom type="flappers" />
</code></pre>
<p>render in the DW CS3 IDE as:</p>
<pre><code><div class="flappers">User would see this text in designer but not the div tag</div>
</code></pre>
<p>Im assuming security restrictions would prevent it, but can the user opt to have scripts run or anything?</p>
http://stackoverflow.com/questions/1434008/have-js-in-iframe-get-value-from-element-in-main-page1Have JS in iFrame get value from element in main pageschmoopy2009-09-16T16:17:21Z2009-09-16T17:47:29Z
<p>This should be an easy one, but im having troubles. I have an iframe that loads an .aspx page. This .aspx page (one in the iframe) has javascript that im using to try and access an element on the main page, but it can never seem to find it.</p>
<p>ie:</p>
<p>Here is the .aspx page that loads the iFrame.</p>
<pre><code><body>
<form id="form1" runat="server">
<div>
<iframe src="myframe.aspx" onload="DoIt();" width="100px" height="100%"></iframe>
<div id='dvT'>hello</div>
</div>
</form>
</body>
</code></pre>
<p>Here is the JS on the iFrame:</p>
<pre><code><script language="javascript" type="text/javascript">
function DoIt() {
alert(parent.document.getElementById('dvT').innerHTML);
}
</script>
</code></pre>
<p>I have tried parent.document, this.document, this.contentWindow.document, etc.</p>
<p>The JS must remain on the page loaded in the iFrame.
Any help is appreciated :-)</p>
<p><hr /></p>
<h2>Here is the solution</h2>
<p>1.) give the iFrame an ID
2.) reference the script in the onload for iFrame via iframeid.methodName
3.) on js in other page, ref via this.parent.document....</p>
<p>Here is the fixed code</p>
<pre><code><body>
<form id="form1" runat="server">
<div>
<iframe src="myframe.aspx" onload="myFrame1234.DoIt();" width="100px" height="100%" id="myFrame1234"></iframe>
<div id='dvT'>hello</div>
</div>
</form>
</body>
<!--- SCRIPT ON myframe.aspx page --->
<script language="javascript" type="text/javascript">
function DoIt() {
alert(this.parent.document.getElementById('dvT').innerHTML);
}
</script>
</code></pre>
http://stackoverflow.com/questions/1430642/determine-if-a-row-for-an-fk-exists-in-any-one-of-20-tables0Determine if a row for an fk exists in any one of 20 tablesschmoopy2009-09-16T02:31:28Z2009-09-16T03:08:19Z
<p>I was trying to determine a better way than so many IF/THEN statements to determine if ONE OR MORE tables contain a ref to a forign key. I simply need to know (true/false) if a row exists in any one of 20 tables. All tables have the same fk field.</p>
<p>I hope this makes sense, if not i'll try to explain further.</p>
http://stackoverflow.com/questions/415216/what-do-you-use-to-develop-applications-on-linux8What do you use to develop applications on linux?schmoopy2009-01-06T02:24:21Z2009-08-30T18:25:26Z
<p>Hello,</p>
<p>I'm an experienced .NET developer (c#/vb.net) (since beta) and I wanted to start checking out how to develop applications for Linux. I have done some Java programming as well. I have Ubuntu 8.10 Linux and was wondering what everyone was using as a tool for developing applications (for any Linux flavor) - is Java the best way to go?</p>
<p>I'm new to Ubuntu and haven't worked in Linux since the days of Redhat using terminal so I'm still pretty new.</p>
<p>Here are some feedback based on responses:</p>
<p>I would like to both become more efficient at using Linux (even if only for an O/S) and take advantage of my development skills by learning a different language such as Java (I have built very simple Java apps in the past... very simple) -- anyway I wanted to think about something that would just expand my skills.</p>
<p>I have built many windows and web applications with .NET (some very large) and I'm very knowledgeable in c# and vb.net languages and the .net framework. I have built many projects using:</p>
<p>.net remoting, web services, wcf (many recent wcf apps), windows applications, windows services, web applications - I use JavaScript when developing asp.net and I also know VBScript & vb6.</p>
<p>I know it would take many years to be able to efficiently create apps in another language(s) but i think it would make me more rounded developer -- and if Google buys Microsoft and makes it illegal to use windows, then i still have a backup plan :-)</p>
http://stackoverflow.com/questions/1046201/is-there-an-easy-way-to-convert-system-data-datatable-to-a-linq-entity1Is there an easy way to convert System.Data.DataTable to a linq entity?schmoopy2009-06-25T20:51:05Z2009-07-30T12:00:02Z
<p>Is there an easy way to take a DataTable and cast it to its entity type?</p>
<p>I have an Entity called Samples, however through layering this is at one point returned as a DataTable - i woud like to be able to cast this to its entity type if possible?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/216852/when-should-i-delete-or-not-delete-my-posts-on-here4When should I delete or not delete my posts on here? [closed]schmoopy2008-10-19T19:40:19Z2009-07-23T20:05:47Z
<p>I have posted a few times and answered my own questions, normally it was because I was overlooking or just plain doing something stupid - so I deleted the post thinking it would not benefit anybody else. What is the MO for keeping your posts up here - at the same point I am afraid if answer my own posts (because I truly found an answer) then people may vote my answer down, when in fact I was keeping it up in case it helped someone else.</p>
<p>Can an answer to your own post even be voted up by another person?</p>
<p>Just curious what you guys think.</p>
http://stackoverflow.com/questions/1173421/is-there-a-way-to-get-the-variables-that-were-used-in-a-regex-replace-to-use-in0Is there a way to get the variables that were used in a RegEx.Replace to use in .NET?schmoopy2009-07-23T17:54:48Z2009-07-23T17:59:15Z
<p>For example, i have a pattern that i am searching for using the \G option so it remembers its last search. I would like to be able to reuse these in .NET c# (ie: save the matches into a collection)</p>
<p>For Example:</p>
<pre><code>string pattern = @"\G<test:Some\s.*";
string id = RegEx.Match(orig, pattern).Value;
// The guy above has 3 matches and i want to save all three into a generic list
</code></pre>
<p>I hope this is clear, i can elaborate if not.</p>
<p>thanks :-)</p>
http://stackoverflow.com/questions/1173369/is-there-a-way-to-get-the-variables-that-were-used-in-a-regex-replace-to-use-in0Is there a way to get the variables that were used in a RegEx.Replace to use in .NET?schmoopy2009-07-23T17:44:48Z2009-07-23T17:56:05Z
<p>For example, I have a pattern that I am searching for using the <code>\G</code> option so it remembers its last search. I would like to be able to reuse these in .NET c# (ie: save the matches into a collection)</p>
<p>For Example:</p>
<pre><code>string pattern = @"\G<test:Some\s.*";
string id = RegEx.Match(orig, pattern).Value;
// The guy above has 3 matches and i want to save all three into a generic list
</code></pre>
<p>I hope this is clear, I can elaborate if not.</p>
<p>Thanks :-)</p>
http://stackoverflow.com/questions/1027628/linq-to-sql-stackoverflow-exception-when-querying-objects2linq to sql + stackoverflow exception when querying objectsschmoopy2009-06-22T14:47:34Z2009-07-21T01:37:30Z
<p>OK, i have confirmed i only this issue when i attempt to query on the primary key if that primary key in the entity is set to 'Auto Generated Value' -- but w/o this, how can i insert? Sorry if this is a noob linq2sql but i just started working with it.</p>
<p>How does one go about using Linq to Sql with this option turned off but also have the db handle the pk's? I would hate to have to qry everytime to get the pk i should assign...</p>
<p>I hope someone can help me out, im completely unable to use linq to sql in one of my projects, not really sure what to do... here is an example, this line throws a StackOverflow exception.</p>
<pre><code>MyDataContext dc = new MyDataContext(ConnStr);
var obj = dc.MyDataTable.AsQueryable().SingleOrDefault(a => a.pkID == 4);
</code></pre>
<p>-- That second line throws the StackOverflow exception.</p>
<p>Heres another example using the same datacontext</p>
<pre><code>var o = dc.MyDataTable.Take(1); <-- works fine
var abc = o.ToArray(); <-- unable to evaluate, debugger stops
</code></pre>
<p>Any ideas what i can try? I seem to be fine using linq to sql in another project in the same solution.</p>
<p>-- UPDATE--
I forgot to mention that this particular entity 'MyDataTable' has the pk set as 'Auto Generated Value' -- i have it set to this cause i have sql doing auto increment and this is the identity column.</p>
http://stackoverflow.com/questions/1069087/wcf-service-tier-use-delegation-to-pass-users-identity-across-physical-bounderi0WCF Service Tier - Use delegation to pass users identity across physical bounderies - how do you do this for Novell?schmoopy2009-07-01T13:17:54Z2009-07-01T13:17:54Z
<p>I have a WCF n-tier solution. When used in a Microsoft AD shop i can specify a domain account in AD that can use delegation so when i run the WCF servics under that account i can pass the users logged in identity across physical bounderies and to the ultimate destination - is this possible to do in a Novell shop? Does Novell offer a similiar way that will allow the users identity to be passed across the physical bounderies?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1027902/linq-to-sql-update-table2linq to sql + update tableschmoopy2009-06-22T15:40:29Z2009-06-22T15:51:24Z
<p>Heres a newb question for you.</p>
<p>I have a multi tier environment so i dont have the origional datacontext where the item was created, thus i am having an issue getting the table to update correctly - here is what im doing:</p>
<p>1.) Get the object from the DAL layer
2.) make changes
3.) call update on the DAL layer and pass the modified entity
4.) on the DAL layer where im trying to update:</p>
<pre><code>var a = (p => p.ID == 3);
a = myPassedInEntity
myContext.Update();
</code></pre>
<p>if i inspect 'a' prior to calling update it has the values of the myPassedInEntity but saving just saves the old data.</p>
<p>Why is there no UpdateOnSubmit() like there is InsertOnSubmit() ?</p>
http://stackoverflow.com/questions/1010355/linq-invalid-expression-term0Linq + Invalid expression term '>'schmoopy2009-06-18T01:27:44Z2009-06-18T01:56:42Z
<p>Can anyone help me here, the following works fine on my xp but not my vista machine. Im querying a Generic dictionary.</p>
<p>Both computers have .NET 3.5 + SP1, 3.0, 2.0, etc., and have the web project targeted to 3.5 Framework.</p>
<pre><code>using System.Linq;
string val = "Test";
var d = DictionaryOfStuff().Where(n => n.Key.ToLower().Contains(val.ToLower()));
</code></pre>
<p>Gives me the error:
CS1525: Invalid expression term '>'</p>
<p>I can run this in a differnet project on vista, I have IIS configured to use .NET 2.0 and the project in VS targeted at 3.5
I have even tried adding this to the web.config, it compiles fine w/o any lambda/linq
</p>
http://stackoverflow.com/questions/1010355/linq-invalid-expression-term/1010411#10104111Answer by schmoopy for Linq + Invalid expression term '>'schmoopy2009-06-18T01:56:42Z2009-06-18T01:56:42Z<p>Well, here was the answer..</p>
<p>I changed the project to target .NET 3.0, tried to compile got all kinds of errors, changed it back to 3.5 and it compiled fine.</p>
<p>I musta had an old reference in there from something.</p>
http://stackoverflow.com/questions/1003544/linq-to-sql-custom-data-types0Linq to Sql + custom data typesschmoopy2009-06-16T19:37:28Z2009-06-16T19:55:27Z
<p>Hello,</p>
<p>I have a custom asp.net control i created that allows you to bind an object to it, it functions kinda like a winform propertygrid.</p>
<p>Heres my issue: the control looks at the public properties and types of the class, if it detects a type of color it renders a color picker, etc.. Works great for classes that i create - however not so well when using an entity from link since its public properties are primitive types (int, string, bool).</p>
<p>I created a custom data type in sql2005 called color and i was hoping that it would carry over to the entity created by linq, but it sees it as its underlying type which is System.String</p>
<p>So, how do i create my entity types but have .NET see other types? Can i change the type before i return it to the caller?</p>
<p>ie: </p>
<pre><code>public IEnumerable<SomeObject> GetSomething()
{
MyEntity entity = new MyEntity("constr");
var a = blahblah...;
// Modify the types here?
return a;
}
</code></pre>
http://stackoverflow.com/questions/997695/can-a-aspx-page-be-loaded-into-a-silverlight-control1Can a aspx page be loaded into a Silverlight Control?schmoopy2009-06-15T18:49:42Z2009-06-15T19:06:04Z
<p>Forgeive me if this is a dumb question, im very new to SL, just ordered 3 books which i should have tomorrow - but i cant stop thinking of the 'is it possible' stuff.</p>
<p>Heres what i would LOVE to do, dont know if it possible:</p>
<p>Have a SL control on a page that loads a passed in url or aspx (like the browser control for winforms) - the reason i would like this is the ability to have a page visible and use zooming/panning to view various parts of the page - this may sound stupid, but it would allow users to view/modify elements w/o having to open a sep window, iframe, etc to view it (and the zoom/pan would be bad ass)</p>
<p>Thanks in advance, please dont hate - if this is that stupid of an idea i'll wait to post again until i read my books.</p>
<p>BTW, WPF, etc is not an option, this has to be web based :-)</p>
http://stackoverflow.com/questions/979471/is-silverlight-the-right-choice-for-what-i-need2Is silverlight the right choice for what i need?schmoopy2009-06-11T05:30:40Z2009-06-14T20:03:49Z
<p>I am looking at the best approach to add rich functionality to an existing ASP.NET 3.5 application. I have not developed anything in Silverlight but as i was thinking about what functionality i needed i started wondering if Silverlight might be the answer.</p>
<p>Here is what i need:
The ability to move/select objects, select each object and be able to apply properties such as color from a color picker. The objects should all implement a common Interface and/or base class.</p>
<p>I was thinking of how easy this would be to do with a Windows Forms app, but this MUST be a web app that can run on Windows and Mac.</p>
<p>I was wondering if Silverlight is more just for fancy graphics or has the ability for me to fullfill this business need and function more like an ASP.NET/AJAX app (but with better access to the objects).</p>
<p>Here are some considerations:</p>
<ul>
<li>I have done nothing with WPF</li>
<li>The user base for this is somewhat
small but i cannot dictate O/S </li>
<li>I need to be able to load/save the data back to the server (np im sure)</li>
<li>I have much experience with nTier,
.NET, etc... but the xaml/SL learning
curve..?</li>
</ul>
<p>Thank you very much for taking the time to look at this :-)</p>
<p><strong>Update</strong><br />
Thank you all for your comments, very helpful.</p>
<ul>
<li>Having the users install silverlight will not be an issue, it is a small subset of the overall application and will be a requirement if they want that functionality.</li>
</ul>
http://stackoverflow.com/questions/989912/is-there-an-existing-net-class-that-encapsulates-css-options1Is there an existing .net class that encapsulates CSS optionsschmoopy2009-06-13T03:51:08Z2009-06-14T06:45:10Z
<p>Is there an existing .net class (or available one) that already encapsulates all/most of the options available thru css?</p>
<p>ie:
MyStyleClass msc = new MyStyleClass();
msc.font-family = "arial";</p>
<p>Im looking for an existing class that exposes these properties w/o style("font-family") = "arial";</p>
<p>I didnt see anything while searching through existing .net framework, but i may not be looking for the right thing.</p>
<p>Why? I need this functionality and plan to create the actual .css from the properties set in the class and i dont want to re-invent the wheel.</p>
<p>:-)</p>
<p><hr /></p>
<h2>update</h2>
<p>Thank you for your answers so far, but my goal was not to have to create this class - i was hoping there was either a built-in one or 3rd party one (free) with properties, enums, etc. already exposed so i could just declare the object and start using it. I will create it if needed, just didnt want to re-invent the wheel :-)</p>
http://stackoverflow.com/questions/918551/sql2005-return-distinct-result-based-on-datetime-on-table-in-inner-join0SQL2005 + return distinct result based on datetime on table in inner joinschmoopy2009-05-27T23:49:13Z2009-05-28T00:23:24Z
<p>Im having a moment, what i want to do is really simple and i think im just looking at the wrong solution. I want to simply return a table that is sorted based on a datestamp of a related table.</p>
<p>ie:</p>
<pre><code>Table 1:
200 MyStuff OK
201 Other Why
202 Flat So
Table 2:
1 200 5/12/2009 MyValue1
2 200 5/11/2009 MyValue2
3 201 7/10/2009 MyValue3
4 201 7/08/2009 MyValue4
</code></pre>
<p>I want the to return the first table sorted based on the dates in the second table, so my result should be</p>
<pre><code>201 Other Why
200 MyStuff OK
202 Flat So
</code></pre>
<p>I have tried doing an inner join, but what i select distinct i have to include the date from the second table that im sorting on, thus i end up with duplicate pk's on the return table.</p>
<p>Please help me understand my rookie mistake here.</p>
http://stackoverflow.com/questions/211142/sql-server-2005-best-way-to-move-data-between-two-databases-when-primary-keys-h1SQL Server 2005 - best way to move data between two databases when primary keys have changedschmoopy2008-10-17T05:12:36Z2009-05-25T15:53:43Z
<p>Hi, i know this should be db 101, but its just not as clear as it can be for me. I am using SQL2005 express and i want to copy data from databaseA to databaseB. DatabaseB already contains existing data - it may even contain data with pk's that have changed or dont exist - for example:</p>
<p>DataBase A
pk1 = peaches
pk2 = apples</p>
<p>DataBase B
pk1 = peaches
pk2 = oranges
pk3 = apples</p>
<p>now both A & B have related tables that are tied to the pk.</p>
<p>Historically i would write an app that selects the data from A and copies it to B via its Insert/Update procs (using .NET), but obv this is very cumbersome, tho some advantages are i could have a dropdown that allows you to select A to copy - and B to copy to if it exists, or say add new - for instance:</p>
<p>(dropdown - select source)
Peaches
Apples</p>
<p>(dropdown - select target)
-new-
peaches
oranges
apples</p>
<p>I was going to use SSIS, but the target db has only SQL express so this is not available nor do i have time to learn it (ive used dts much in the past, but not this newer tool). In SQL2000 i would just use DTS, but with the more complicated schema now im not even sure i would trust that.</p>
<p>Any suggestions or should i just continue to write my custom apps to migrate data from A to B?</p>
<p>Im looking forward to everyones suggestions - i would love to continue down a path that i feel is the best way to do this :-)</p>
http://stackoverflow.com/questions/854629/how-to-design-an-app-that-requires-synchronized-notifications-on-all-client-compu/854826#8548260Answer by schmoopy for How to design an app that requires synchronized notifications on all client computersschmoopy2009-05-12T20:54:20Z2009-05-12T20:54:20Z<p>Have you considered Full Duplex WCF? It could do what you need.</p>
http://stackoverflow.com/questions/220470/what-is-the-proper-way-to-maintain-state-in-a-custom-server-control1What is the proper way to maintain state in a custom server control?schmoopy2008-10-21T01:09:39Z2009-03-05T19:26:00Z
<p>This works, but is it the proper way to do it???</p>
<p>I have a custom server control that has an [input] box on it. I want it to kinda mimic the ASP.NET TextBox, but not completely. When the textbox is rendered i have a javascript that allows users to select values that are then placed in that input box.</p>
<p>I have a public text property on the control. In the get/set i get/set the viewstate for the control - that part is easy, but when the control is populated via the javascript, the Text get is not actually called, what is the proper way to set this exposed property using JavaScript (or even if the user just types in the box) ?</p>
<p>Edit:
In the OnInit i ensure the state is maintained by reaching into the form values.</p>
<pre><code> protected override void OnInit(EventArgs e)
{
base.OnInit(e);
if (HttpContext.Current.Request.Form["MyInputBoxValue"] != "")
{
ViewState["MyInputBoxValue"]
= HttpContext.Current.Request.Form["MyInputBoxValue"];
}
}
</code></pre>
<p>Then to get the value actually back in place in the HtmlTextWrite, i do this:</p>
<pre><code>protected override void RenderContents(HtmlTextWriter output)
{
// There is an input control here and i set its value property
// like this using the Text internal defined.
output.Write("<input value=" + Text + ">.....
}
</code></pre>
<p>thanks</p>
http://stackoverflow.com/questions/578974/convert-existing-asp-net-application-large-to-web-standards0Convert existing asp.net application (large) to web standardsschmoopy2009-02-23T19:26:24Z2009-02-23T19:31:47Z
<p>Hello,</p>
<p>I have a very large ASP.NET project that i need to make good with web standards -- the application has two parts:
1.) An administrative piece that allows users to 'build' sites
2.) Front end that makes up the users sites (many web controls, master pages, usercontrols, etc... much of it is just code)</p>
<p>I was wondering what poeples recomendations are for making this project utilize web standards? Should i look more into MVC? I havent done anything with MVC but it seems to support friendly URL's by default.</p>
<p>Has anyone done this with an existing large ASP.NET application/site?</p>
<p>thanks in advance :-)</p>
http://stackoverflow.com/questions/424224/i-want-to-start-coding-where-do-i-start/424501#4245010Answer by schmoopy for I want to start coding, where do I start?schmoopy2009-01-08T14:51:48Z2009-01-08T14:51:48Z<p>Developing applications is more than just writing code - its finding out how to architect a solution, determining the best plan of attack and being able to easily roll with changes and/or unexpected events.</p>
<p>As a beginner you'll be challenged with not only learning a programming language, but possibly even a framework on top of that (so you know how to use your programming skills) in addition to just learning a UI(s) ie: visual studio, etc.</p>
<p>It really comes down to personal preference, but in my opinion especially if you have a windows background, then .NET would be the easiest to setup and begin using. You also have the choice of programming languages (VB.NET and c# for example), etc. </p>
http://stackoverflow.com/questions/416907/comments-in-c-code/416964#4169641Answer by schmoopy for Comments in C# codeschmoopy2009-01-06T15:28:37Z2009-01-06T15:28:37Z<p>I use // Comment to comment lines of code
- the 3 /// slashes are usually declared above methods/classes to specify what they do (description, return type, etc) and are a very good thing to do as you can create your documentation from them (for you or other developers)</p>
http://stackoverflow.com/questions/1630834/how-can-you-create-a-cross-browser-css-menu-that-doesnt-require-you-to-provide-a/1631505#1631505Comment by schmoopy on How can you create a cross browser css menu that doesnt require you to provide a style for EVERY LEVEL of the menuschmoopy2009-10-27T16:08:26Z2009-10-27T16:08:26ZAndy -- i tested in IE7 and it works for me?http://stackoverflow.com/questions/1630834/how-can-you-create-a-cross-browser-css-menu-that-doesnt-require-you-to-provide-a/1631505#1631505Comment by schmoopy on How can you create a cross browser css menu that doesnt require you to provide a style for EVERY LEVEL of the menuschmoopy2009-10-27T16:07:50Z2009-10-27T16:07:50Zexactly what i was looking for, thank you.http://stackoverflow.com/questions/1630834/how-can-you-create-a-cross-browser-css-menu-that-doesnt-require-you-to-provide-a/1631505#1631505Comment by schmoopy on How can you create a cross browser css menu that doesnt require you to provide a style for EVERY LEVEL of the menuschmoopy2009-10-27T15:29:24Z2009-10-27T15:29:24Zooohhh >, i will try that and update . sounds very promisinghttp://stackoverflow.com/questions/289/how-do-you-sort-a-c-dictionary-by-value/1332#1332Comment by schmoopy on How do you sort a C# dictionary by value?schmoopy2009-09-21T20:12:21Z2009-09-21T20:12:21ZGreat solution - best ive seen for this - and you dont have to create a list of keyvalue pairs before using it.. Very easy to understand :-)http://stackoverflow.com/questions/1434008/have-js-in-iframe-get-value-from-element-in-main-page/1434092#1434092Comment by schmoopy on Have JS in iFrame get value from element in main pageschmoopy2009-09-16T17:40:29Z2009-09-16T17:40:29ZHey thanks - it was actually a combination of things but i was assumming it wasnt just finding the object - it was not finding the object + not finding the script - solution above :-)http://stackoverflow.com/questions/1430642/determine-if-a-row-for-an-fk-exists-in-any-one-of-20-tables/1430691#1430691Comment by schmoopy on Determine if a row for an fk exists in any one of 20 tablesschmoopy2009-09-16T03:01:19Z2009-09-16T03:01:19Zyea thats a little more compact - thank you.http://stackoverflow.com/questions/1173901/problem-getting-regex-matches-to-workComment by schmoopy on Problem getting RegEx.Matches to workschmoopy2009-07-23T19:37:31Z2009-07-23T19:37:31Zok, i have updated it :-)http://stackoverflow.com/questions/1173421/is-there-a-way-to-get-the-variables-that-were-used-in-a-regex-replace-to-use-in/1173447#1173447Comment by schmoopy on Is there a way to get the variables that were used in a RegEx.Replace to use in .NET?schmoopy2009-07-23T18:58:53Z2009-07-23T18:58:53ZThank you very much, i am trying this but with no luck - when i use RegEx.Match(orig, pattern) it works, if i do:
MatchCollection co = RegEx.Matches(orig, pattern);
I get 0 results. Any idea what im doing wrong here?http://stackoverflow.com/questions/1027628/linq-to-sql-stackoverflow-exception-when-querying-objects/1027679#1027679Comment by schmoopy on linq to sql + stackoverflow exception when querying objectsschmoopy2009-06-22T15:33:17Z2009-06-22T15:33:17Zok, it was an oversight and a newbie to the technology. To resolve the problem:
When using 'Auto Generated Value' = True, then you must set 'Delay Loaded' to False - otherwise you get the recursion error.
http://stackoverflow.com/questions/1027628/linq-to-sql-stackoverflow-exception-when-querying-objects/1027678#1027678Comment by schmoopy on linq to sql + stackoverflow exception when querying objectsschmoopy2009-06-22T15:08:16Z2009-06-22T15:08:16Zgreat question and yes i did forget to mention: within the datacontext designer i set the pk on this table to 'Auto Generated Value' this is because i use it as a primary key with auto increment in sql -- cant evaluate call stack or anything after the stackoverflowhttp://stackoverflow.com/questions/1010355/linq-invalid-expression-term/1010365#1010365Comment by schmoopy on Linq + Invalid expression term '>'schmoopy2009-06-18T01:47:43Z2009-06-18T01:47:43ZI have configured all i can think to, what else might i have to do other than whats mentioned (modified) above?http://stackoverflow.com/questions/1010355/linq-invalid-expression-term/1010368#1010368Comment by schmoopy on Linq + Invalid expression term '>'schmoopy2009-06-18T01:33:16Z2009-06-18T01:33:16ZI edited the above, val is a string passed through a parm, but above should make more sense now :-)http://stackoverflow.com/questions/997695/can-a-aspx-page-be-loaded-into-a-silverlight-control/997806#997806Comment by schmoopy on Can a aspx page be loaded into a Silverlight Control?schmoopy2009-06-15T19:25:44Z2009-06-15T19:25:44ZI know it sounds dumb, but would useful in my case. I know i can use browser zoom controls, but cant guarantee what browser will be used, whereas if silverlight was used i'd be golden (if it was capable) ... you cant load a page in an iframe and zoom 25% so that you can view then entire page in a small area.http://stackoverflow.com/questions/997695/can-a-aspx-page-be-loaded-into-a-silverlight-control/997723#997723Comment by schmoopy on Can a aspx page be loaded into a Silverlight Control?schmoopy2009-06-15T19:02:09Z2009-06-15T19:02:09ZIm giving you an upvote simply cause of your screen name: SpliFF ... in the future dont reply to my posts high ;-)http://stackoverflow.com/questions/993972/add-usercontrol-between-td-tags/993990#993990Comment by schmoopy on Add UserControl between <td> tagsschmoopy2009-06-15T01:17:30Z2009-06-15T01:17:30ZProblem is, all the controls have to be added dynamically including the placeholder positioned in the <td><asp:placeholder></td> and thats the problem, i cant add any controls there since the table tags are being written out in code, im going to look into the HtmlTable control and see if that may get me somewhere :-)