User Scott and the Dev Team - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T02:34:50Z http://stackoverflow.com/feeds/user/5633 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1848686/now-that-i-have-the-report-viewer-working-in-local-mode-how-do-i-set-the-default 0 Now that I have the report viewer working in Local mode, how do I set the default render method? Scott and the Dev Team 2009-12-04T18:10:09Z 2009-12-04T18:31:45Z <p>I have finally gotten the ReportViewer to work in Local mode. Now I would like a report to render as a PDF or Excel spreadsheet automatically.</p> http://stackoverflow.com/questions/1846493/i-need-an-alternative-to-server-based-reporting-services 0 I need an alternative to server based Reporting Services Scott and the Dev Team 2009-12-04T11:51:47Z 2009-12-04T12:03:26Z <p>The company that I work for will soon (2Q) no longer be supporting SRS. They want everyone to use Business Objects. I have over 100 SRS reports that I currently use. I need to find out if there is a way to run them locally on our webserver. Some of these reports need parameters to be selected and others get them passed in.</p> <p>I would prefer not to have to rewrite all of those reports, however, if that is the only option so be it.</p> http://stackoverflow.com/questions/1603197/is-it-possible-to-make-a-tooltip-appear-on-a-dotnetnuke-menu 0 Is it possible to make a tooltip appear on a DotNetNuke menu? Scott and the Dev Team 2009-10-21T19:54:25Z 2009-11-12T06:29:54Z <p>I am running DNN 5.x and the XDMediaBlue skin in horizontal menu full mode. Is there any way to have a tooltip appear for menu items?</p> http://stackoverflow.com/questions/512105/passing-multiple-values-for-a-single-parmeter-in-reporting-services 1 Passing multiple values for a single parmeter in Reporting Services Scott and the Dev Team 2009-02-04T16:24:50Z 2009-11-02T22:21:35Z <p>I have several Multi-Select parameters in my report. I am trying to find a way to pass in multiple values for a single parameter in the web query string? If I pass in a single value, it works fine.</p> <p>The report runs fine selecting multiple choices for a single param. My trouble lies in the web query string.</p> http://stackoverflow.com/questions/104177/how-do-i-embed-an-image-in-a-net-html-mail-message/104222#104222 3 Answer by Scott and the Dev Team for How do I embed an image in a .NET HTML Mail Message? Scott and the Dev Team 2008-09-19T18:17:01Z 2009-10-29T10:08:07Z <p>Try this:</p> <pre><code>LinkedResource objLinkedRes = new LinkedResource( Server.MapPath(".") + "\\fuzzydev-logo.jpg", "image/jpeg"); objLinkedRes.ContentId = "fuzzydev-logo"; AlternateView objHTLMAltView = AlternateView.CreateAlternateViewFromString( "&lt;img src='cid:fuzzydev-logo' /&gt;", new System.Net.Mime.ContentType("text/html")); objHTLMAltView.LinkedResources.Add(objLinkedRes); objMailMessage.AlternateViews.Add(objHTLMAltView); </code></pre> <p>Complete article can be found <a href="http://www.fuzzydev.com/blogs/dotnet/archive/2006/07/23/System%5FNet%5FMail%5FAlternateView%5FLinkedResource.aspx" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1614857/how-do-i-retrieve-a-file-from-a-sql-server-database 0 How do I retrieve a file from a SQL Server database? Scott and the Dev Team 2009-10-23T17:24:39Z 2009-10-23T21:33:10Z <p>I have successfully uploaded files into my SQL Server database. I can bring back the information into a GridView. I am unable to figure out how to create a hyperlink to actually open the file.</p> http://stackoverflow.com/questions/650449/upload-file-to-sql-database-using-classic-asp/1614183#1614183 0 Answer by Scott and the Dev Team for Upload file to SQL database using classic ASP Scott and the Dev Team 2009-10-23T15:22:46Z 2009-10-23T15:22:46Z <p>Here is a link that shows you how to upload files to a database. I have it working, now I just need to figure out how to retrieve it.</p> <p><a href="http://www.aspne" rel="nofollow">link text</a></p> http://stackoverflow.com/questions/1393436/how-do-i-make-it-possible-for-ssrs-2008-reports-to-be-viewed-by-everyone-on-the-w 0 How do I make it possible for SSRS 2008 reports to be viewed by everyone on the web without logging in? Scott and the Dev Team 2009-09-08T11:18:14Z 2009-10-03T19:43:14Z <p>I have SSRS setup and working fine. I can even access them from a web browser. The only problem is that it requires me to log in every time I want to review a report. I need anonymous users to be able to view these reports. Is this possible?</p> http://stackoverflow.com/questions/745113/can-i-render-html-from-sql-database-in-ssrs-2005 3 Can I render HTML from SQL Database in SSRS 2005? Scott and the Dev Team 2009-04-13T19:42:29Z 2009-10-01T15:26:10Z <p>I have html in an MS SQL DB. I would like to render the html on a SSRS page, is this possible?</p> http://stackoverflow.com/questions/212027/where-are-the-business-rules-in-mvc 5 Where are the Business Rules in MVC Scott and the Dev Team 2008-10-17T13:06:51Z 2009-10-01T09:03:58Z <p>Now that everyone is talking about MVC, I notice that the business rules are not being addressed. In the old days of the 3-tier architecture, The business rules were in the middle layer. Where do they fall in the new MVC?</p> http://stackoverflow.com/questions/495551/cloud-computing-and-my-companys-data 7 Cloud Computing and my company's data Scott and the Dev Team 2009-01-30T13:54:45Z 2009-08-21T23:55:38Z <p>I am looking into Cloud Computing for my company. The one question that I can't seem to get out of my head is; What happens to my data and the ability to use it if the Cloud computing company goes out of business?</p> http://stackoverflow.com/questions/222276/how-do-i-compile-an-asp-net-website-into-a-single-dll 7 How do I compile an ASP.NET website into a single .DLL? Scott and the Dev Team 2008-10-21T15:22:07Z 2009-07-24T16:53:57Z <p>I have finally finished my web site. I published it and I was surprised at the results. Although the App_Code compiled into a single .dll, every pages code behind compiled into it's own .dll. How do i make it so that it is one .dll?</p> <p>Also, is it possible to compile everything (SubSonic,AJAX,etc) into that same single .dll?</p> http://stackoverflow.com/questions/309674/need-a-good-asp-net-menu 2 Need a good ASP.NET menu Scott and the Dev Team 2008-11-21T18:17:24Z 2009-06-18T01:31:09Z <p>I am looking for a good menu to use in an ASP.NET. I am currently using the asp menu. I need it to work in IE 6,7,8, Firefox and Safari. I also need it to not add a lot of overhead to the page client-side. I need to be able to load it from the database.</p> http://stackoverflow.com/questions/998152/ssrs-2005-multiple-formats-in-a-single-textbox 2 SSRS 2005 Multiple formats in a single textbox Scott and the Dev Team 2009-06-15T20:16:20Z 2009-06-15T21:19:36Z <p>Is it possible to have multiple formatting of a text string within a single textbox in SSRS 2005? </p> <p>example:</p> <p>The <strong>quick</strong> <em>brown</em> <strong>fox jumped</strong> over the lazy <em>brown</em> dog.</p> <p>possible setting font colors as well</p> http://stackoverflow.com/questions/556861/ssrs-2005-how-do-i-find-the-value-of-a-cell-1-column-over-and-2-rows-up 0 SSRS 2005 - How do I find the value of a cell 1 column over and 2 rows up? Scott and the Dev Team 2009-02-17T13:49:18Z 2009-06-05T17:16:52Z <p>I am trying to find the value of a cell 1 column over and 2 rows up using something like excels offset</p> http://stackoverflow.com/questions/930236/net-best-method-to-send-email-system-net-mail-has-issues/936151#936151 0 Answer by Scott and the Dev Team for .NET Best Method to Send Email (System.Net.Mail has issues) Scott and the Dev Team 2009-06-01T18:41:52Z 2009-06-01T18:41:52Z <p>I send most of my mail using a Sproc. I can even attach a file.</p> <pre> CREATE PROCEDURE [dbo].[sendMail_With_CDOMessage] @to VARCHAR(64), @CC VARCHAR(1024)='', @BCC VARCHAR(1024)='', @subject VARCHAR(500)='', @body VARCHAR(8000)='' , @from VARCHAR(64), @filename VARCHAR(255)='', @priority INT = 0 AS BEGIN SET NOCOUNT ON DECLARE @handle INT, @return INT, @s VARCHAR(64), @sc VARCHAR(1024), @up CHAR(27), @server VARCHAR(255) SET @s = '"http://schemas.microsoft.com/cdo/configuration/' SELECT @s = 'Configuration.Fields(' + @s, @up = 'Configuration.Fields.Update', @server = 'smtp.yourdomain.com' EXEC @return = sp_OACreate 'CDO.Message', @handle OUT SET @sc = @s + 'sendusing").Value' EXEC @return = sp_OASetProperty @handle, @sc, '2' SET @sc = @s + 'smtpserver").Value' EXEC @return = sp_OASetProperty @handle, @sc, @server EXEC @return = sp_OAMethod @handle, @up, NULL EXEC @return = sp_OASetProperty @handle, 'To', @to EXEC @return = sp_OASetProperty @handle, 'CC', @CC EXEC @return = sp_OASetProperty @handle, 'BCC', @BCC EXEC @return = sp_OASetProperty @handle, 'From', @from EXEC @return = sp_OASetProperty @handle, 'Subject', @subject EXEC @return = sp_OASetProperty @handle, 'HTMLBody', @body EXEC @return = sp_OASetProperty @handle, 'Priority', 'cdoHigh' IF @filename IS NOT NULL EXEC @return = sp_OAMethod @handle, 'AddAttachment', NULL, @filename EXEC @return = sp_OAMethod @handle, 'Send', NULL IF @return 0 BEGIN PRINT 'Mail failed.' IF @from IS NULL PRINT 'From address undefined.' ELSE PRINT 'Check that server is valid.' END ELSE PRINT 'Mail sent.' EXEC @return = sp_OADestroy @handle END </pre> http://stackoverflow.com/questions/734258/is-there-a-wysiwyg-text-editor-that-will-allow-cut-n-paste-of-images-from-a-web-p 0 Is there a WYSIWYG Text editor that will allow cut-n-paste of images from a web page Scott and the Dev Team 2009-04-09T13:36:06Z 2009-04-09T13:59:57Z <p>I need a web based editor that will allow the user to drop an image on the screen and it will upload the image and then reference it. Are there any editors out there that will fill the bill. I mainly need it to work in IE6 as that is what IT here has deemed as the standard browser.</p> http://stackoverflow.com/questions/726471/how-big-can-a-memory-mapped-file-be/726539#726539 0 Answer by Scott and the Dev Team for How big can a memory-mapped file be? Scott and the Dev Team 2009-04-07T16:21:59Z 2009-04-07T16:21:59Z <p>Wikipedia entry on the subject: <a href="http://en.wikipedia.org/wiki/Memory-mapped_file" rel="nofollow">http://en.wikipedia.org/wiki/Memory-mapped_file</a></p> http://stackoverflow.com/questions/726100/how-do-i-programatically-download-a-file-from-a-sharepoint-site 1 How do I programatically download a file from a sharepoint site? Scott and the Dev Team 2009-04-07T14:44:09Z 2009-04-07T15:17:47Z <p>I have a sharepoint site that has an excel spreadsheet that I need to download on a schedulad basis</p> <p>Is this possible?</p> http://stackoverflow.com/questions/478283/how-do-i-stop-windows-server-2008-from-going-to-sleep 0 How do I stop Windows server 2008 from going to sleep? Scott and the Dev Team 2009-01-25T21:04:15Z 2009-03-22T22:16:12Z <p>I have just upgraded my server 2003 to serrver 2008. As I write this, my site is available externally. If I were to try again in the morning,the site won't come up. However, if I log back onto the server or access the website from another computer on the network, it works just fine...again!</p> http://stackoverflow.com/questions/333825/what-is-the-best-tablet-pc-for-development-for-the-money 1 What is the best Tablet PC for development for the money? Scott and the Dev Team 2008-12-02T12:37:46Z 2009-03-16T12:07:01Z <p>I am buying a Tablet PC before the end of the year. I want to be able to use it for development work. Which one will give me the most Bang-for-the-Buck?</p> <p>I realize this is not truly a programming question, but, as I am going to use it for programming and I have been unable to find an answer elsewhere I thought I would post it here.</p> http://stackoverflow.com/questions/314348/dotnetnuke-upgrade 2 DotNetNuke upgrade Scott and the Dev Team 2008-11-24T14:49:34Z 2009-02-18T16:01:35Z <p>I need to upgrade my current version of DNN this week. I am currently using 2.1.1. I don't want to do everything twice, so, I have several questions.</p> <ol> <li>Is there an upgrade tool or some scripts somewhere that will help me to do an upgrade.</li> <li>Am I better off installing 4.9 or 5.0. It is production.</li> <li>If I go with 4.9, will I be able to upgrade to 5.0 when it releases?</li> </ol> http://stackoverflow.com/questions/532141/in-ssrs-2005-must-declare-the-scalar-variable 0 In SSRS 2005,must declare the scalar variable Scott and the Dev Team 2009-02-10T12:43:13Z 2009-02-10T13:50:53Z <p>I have a report that runs a stored proc:</p> <pre><code>EXEC ra_spProjectCalendar @Month, @Year, @ProjectID </code></pre> <p>ProjectID is A multi-select dropdown. When a single project is selected, it works fine. If I select multiple projects, I get the error:</p> <pre><code>"Must declare scalar variable "@ProjectID" </code></pre> <p>It works fine when I run it from the Data tab, however, when I put it into Preview mode I have problems.</p> http://stackoverflow.com/questions/529208/how-do-i-do-a-running-year-for-a-calendar-report 0 How do I do a running year for a calendar report? Scott and the Dev Team 2009-02-09T18:10:07Z 2009-02-09T19:29:16Z <p>Here is the Query I am using:</p> <pre><code>SELECT * FROM ra_ProjectCalendar WHERE MonthNumber between @Month and @Month + 12 and FullYear = @Year </code></pre> <p>It works great for this year, but, stops at December of this year. How do I get it to show a running year?</p> http://stackoverflow.com/questions/495634/jquery-forms-authentication-with-asp-net-mvc/495664#495664 1 Answer by Scott and the Dev Team for jQuery Forms Authentication with ASP.NET MVC Scott and the Dev Team 2009-01-30T14:28:34Z 2009-01-30T14:28:34Z <p>Steve Reynolds has a good article on how to do some of this.</p> <p><a href="http://www.reynoldsftw.com/2009/01/top-10-jquery-plugins-for-form-usability/" rel="nofollow">Link to article</a></p> http://stackoverflow.com/questions/374767/how-do-i-make-profile-type-information-available-in-a-web-app 0 How do I make Profile type information available in a web app? Scott and the Dev Team 2008-12-17T14:50:57Z 2008-12-17T14:50:57Z <p>I am moving my ASP.NET website to a WepApp. I am of course having trouble with the Profile Provider. I have seen many workarounds. I just need a simple way to have user information available server-side without having to go to the DB every time. Profile was a good option until I tried to make it a WebApp. Is there a better way?</p> http://stackoverflow.com/questions/349974/how-do-i-stop-links-from-wrapping-in-dnn-4-9-x 0 How do I stop links from wrapping in DNN 4.9.x Scott and the Dev Team 2008-12-08T16:03:57Z 2008-12-08T20:20:57Z <p>I am having a problem with links wrapping. How do I prevent this?</p> <p>![Wordwrap][1]</p> <p>[1]: </p> http://stackoverflow.com/questions/305713/excel-web-query-times-out 0 Excel web query times out Scott and the Dev Team 2008-11-20T15:42:55Z 2008-11-20T15:42:55Z <p>I have an excel page that runs a series of web queries that call reporting services reports and thencut-n-paste that into powerpoint. from time to time, the query hangs and brings the app to a screeching halt. is there a way to maybe put that into a loop and keep looping until the web query actually brings back some data?</p> http://stackoverflow.com/questions/285423/is-there-a-page-event-that-runs-after-a-webcontrol-render-event 0 Is there a page event that runs after a webcontrol render event? Scott and the Dev Team 2008-11-12T21:20:42Z 2008-11-12T22:04:34Z <p>I have already tried PreRenderComplete and unload is too late</p> http://stackoverflow.com/questions/285423/is-there-a-page-event-that-runs-after-a-webcontrol-render-event/285540#285540 0 Answer by Scott and the Dev Team for Is there a page event that runs after a webcontrol render event? Scott and the Dev Team 2008-11-12T22:04:34Z 2008-11-12T22:04:34Z <p>protected override void Render(HtmlTextWriter writer) { base.Render(writer);</p> <p>.... place code here</p> http://stackoverflow.com/questions/726100/how-do-i-programatically-download-a-file-from-a-sharepoint-site/726130#726130 Comment by Scott and the Dev Team on How do I programatically download a file from a sharepoint site? Scott and the Dev Team 2009-04-07T14:54:32Z 2009-04-07T14:54:32Z Is there software out ther that will do this? http://stackoverflow.com/questions/349974/how-do-i-stop-links-from-wrapping-in-dnn-4-9-x/350012#350012 Comment by Scott and the Dev Team on How do I stop links from wrapping in DNN 4.9.x Scott and the Dev Team 2008-12-08T16:15:00Z 2008-12-08T16:15:00Z My question is where do I apply the &lt;nobr&gt;? http://stackoverflow.com/questions/225370/on-xp-best-way-to-synchronize-files-and-folders/225381#225381 Comment by Scott and the Dev Team on On XP, best way to synchronize files and folders. Scott and the Dev Team 2008-10-31T11:28:31Z 2008-10-31T11:28:31Z I use this in a production environment to keep files and folders sync'd up from all of our production servers including all of the DB backups. I back them up to a centralized computer. The different syncs are run at different times. It also gives you the ability to rev your syncs. and it is FREE. http://stackoverflow.com/questions/248311/where-can-i-find-a-step-by-step-guide-tutorial-on-how-to-migrate-a-web-site-to/248321#248321 Comment by Scott and the Dev Team on Where can I find a step-by-step guide (tutorial) on how to migrate a web site to a wep app? Scott and the Dev Team 2008-10-30T11:06:00Z 2008-10-30T11:06:00Z gotta lurv the Gu http://stackoverflow.com/questions/115283/which-reporting-technology/115363#115363 Comment by Scott and the Dev Team on Which Reporting technology? Scott and the Dev Team 2008-09-22T15:10:54Z 2008-09-22T15:10:54Z We use MS Reporting services for all of our reports (over 100). It allows for great security as well as the ability to express which format we want the report viewed in. http://stackoverflow.com/questions/59080/sqlserver-express-slow-performance/59109#59109 Comment by Scott and the Dev Team on SqlServer Express slow performance Scott and the Dev Team 2008-09-12T16:52:40Z 2008-09-12T16:52:40Z It was at +- 860 MB http://stackoverflow.com/questions/59080/sqlserver-express-slow-performance/59092#59092 Comment by Scott and the Dev Team on SqlServer Express slow performance Scott and the Dev Team 2008-09-12T14:19:02Z 2008-09-12T14:19:02Z We are very meticilous with NOLOCK and we use views to read the data with aliases and SPROCS to handle the CRUD as well as SubSonic. http://stackoverflow.com/questions/59080/sqlserver-express-slow-performance/59097#59097 Comment by Scott and the Dev Team on SqlServer Express slow performance Scott and the Dev Team 2008-09-12T14:17:50Z 2008-09-12T14:17:50Z Yes, we are using SQL Server Express for a web app. We have the same application in classic asp using the same SQLExpress DB with no problems. This application is an upgrade of the classic version to a .NET version