Dave's Technophorical Times

A blog about Microsoft's Technologies!
SharePoint :: MVC :: ASP.NET :: IIS :: SQL Server :: Visual Studio :: MS Access

On the report form, add a script manager from the toolbox before the report control: open the toolbox and select Ajax Extensions - Script Manager, then drag it onto the form. Using Visual Studio 2012, what I ended up with was the following new control on the form:

<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>

Full details for Visual Studio 2012 at http://msdn.microsoft.com/en-us/library/ms252104.aspx



This issue is because you have more than one 'Microsoft.Reporting.WebForms' referenced in your Web.Config file.



From here: https://social.msdn.microsoft.com/Forums/ie/en-US/2530fbe4-b594-4aca-a086-23fb74c2b1cc/response-contenttype-applicationpdf-not-working-in-ie-11?forum=iewebdevelopment&prof=required

Tools>Internet Options>Advanced tab, uncheck "Do not save encrypted files to disk"

PDF is not natively supported in MSIE browsers... You need an installed and enabled PDF file reader ActiveX control to render the PDF file stream.



From here: http://devonenote.com/2013/09/how-to-find-startup-folder-in-windows-server-2012/

In Windows Server 2008 R2, to define an application to be startup automatically for current user, one common way is to create an application shortcut and add it to startup folder. In Windows Server 2012, you might find you can’t find this startup folder any more. 

Here is the steps to find startup folder in Windows Server 2012.

  1. WinKey + C to open the charms bar
  2. Click “Search”
  3. Enter shell:startup and click on the first result returned.

 



From here: http://www.isolutionspartners.com/sql-reporting-services-error-maximum-request-length-exceeded/

You could, quite honestly, run into this error in a lot of situations involving a web app, but we’re talking specifically about SSRS in this post. The basic problem here, is that your posting an amount of data to a web app larger than it is configured to accept.  Hence, it is throwing an error.

It’s an easy fix though.  You’ve got to adjust the web.config for the web app, which in the case of reporting server, is usually somewhere like this:

For SQL Server 2012: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER2012\Reporting Services\ReportServer

Find the web.config file for your reporting services instance, open it up, and track down the line that looks something like this

executionTimeout = "9000" />

Now just add a max request length attribute in there to fix the problem, adjust your size as needed.  This is 5meg.

executionTimeout = "9000" maxRequestLength="500000" />

And now you’ll need to restart IIS.  start->run->”iisreset”



From here: https://blogs.technet.microsoft.com/enterprisemobility/2009/07/01/using-multiple-monitors-in-remote-desktop-session/   

If your RDP's "Use all my monitors for the remote session" is disabled you can get around it as follows.

1. Create an RDP file with your specific connection.
2. Right click on the .rdp file and select Open with Notepad.
3. Add the following 2 lines to the bottom.

span monitors:i:1
use multimon:i:1

4. Save and then use!

Have a great day!



From here: http://superuser.com/questions/803943/how-to-disable-javascript-debugging-in-ie11

The options in VS for exceptions to determine if the debugger should break on an exception. Though VS will always break on an unhandled exception and a language break (debugger). The options do not stop the script debugger from being attached when you launch IE from VS.

The options in VS to enable or disable JIT debugging change just the just-in-time debug feature. Enabling JIT debug simply means that if a running application not launched by VS hits a break condition the user should be prompted if they want to attach VS to debug the application. This also don't change if script debugging is enabled when you launch IE from VS.

The options in Internet Explorer to disable script debugging only changes if IE should run with debugging enabled always. In IE11 with VS2013 this feature is never needed but is there to support older versions of VS.

The easiest way to get the behavior you want is to do:
1. Right click on a aspx/html file there is a ‘Browse with…’ item. This will bring up a dialog to configure your browser.

2. Click the Add button. Add something like:
    Path: c:\Program Files (x86)\Internet Explorer\iexplore.exe
    Friendly name: Internet Explorer (no debug)

3. Set that as your default

This basically launches IE outsie Visual Studio so that those annoying Javascript errors stop happening. You will still be able to debug your code though.



Jan
04

ASCII Codes for SSRS

by Dave Stuart | Tags:
Special Chars Upper Case Lower Case Extended ASCII
9 \t (Tab) 65 A 97 a 128 &#128;
10 \n (NL) 66 B 98 b 129  &#129;
13 \r (CR) 67 C 99 c 130 &#130;
32 Space 68 D 100 d 131 ƒ &#131;
33 ! 69 E 101 e 132 &#132;
34 " 70 F 102 f 133 &#133;
35 # 71 G 103 g 134 &#134;
36 $ 72 H 104 h 135 &#135;
37 % 73 I 105 i 136 ˆ &#136;
38 & 74 J 106 j 137 &#137;
39 ' 75 K 107 k 138 Š &#138;
40 ( 76 L 108 l 139 &#139;
41 ) 77 M 109 m 140 Œ &#140;
42 * 78 N 110 n 141  &#141;
43 + 79 O 111 o 142 Ž &#142;
44 , 80 P 112 p 143  &#143;
45 - 81 Q 113 q 144  &#144;
46 . 82 R 114 r 145 &#145;
47 / 83 S 115 s 146 &#146;
48 0 84 T 116 t 147 &#147;
49 1 85 U 117 u 148 &#148;
50 2 86 V 118 v 149 &#149;
51 3 87 W 119 w 150 &#150;
52 4 88 X 120 x 151 &#151;
53 5 89 Y 121 y 152 ˜ &#152;
54 6 90 Z 122 z 153 &#153;
55 7 154 š &#154;
56 8 155 &#155;
57 9 156 œ &#156;
58 : 157  &#157;
59 ; 158 ž &#158;
60 < 159 Ÿ &#159;
61 = 160   &#160;
62 > 161 ¡ &#161;
63 ? 162 ¢ &#162;
64 @ 163 £ &#163;
91 [ 164 ¤ &#164;
92 \ 165 ¥ &#165;
93 ] 166 ¦ &#166;
94 ^ 167 § &#167;
95 _ 168 ¨ &#168;
96 ` 169 © &#169;
123 { 170 ª &#170;
124 | 171 « &#171;
125 } 172 ¬ &#172;
126 ~ 173 ­ &#173;
174 ® &#174;
175 ¯ &#175;
176 ° &#176;
177 ± &#177;
178 ² &#178;
179 ³ &#179;
180 ´ &#180;
181 µ &#181;
182 &#182;
183 · &#183;
184 ¸ &#184;
185 ¹ &#185;
186 º &#186;
187 » &#187;
188 ¼ &#188;
189 ½ &#189;
190 ¾ &#190;
191 ¿ &#191;
192 À &#192;
193 Á &#193;
194 Â &#194;
195 Ã &#195;
196 Ä &#196;
197 Å &#197;
198 Æ &#198;
199 Ç &#199;
200 È &#200;
201 É &#201;
202 Ê &#202;
203 Ë &#203;
204 Ì &#204;
205 Í &#205;
206 Î &#206;
207 Ï &#207;
208 Ð &#208;
209 Ñ &#209;
210 Ò &#210;
211 Ó &#211;
212 Ô &#212;
213 Õ &#213;
214 Ö &#214;
215 × &#215;
216 Ø &#216;
217 Ù &#217;
218 Ú &#218;
219 Û &#219;
220 Ü &#220;
221 Ý &#221;
222 Þ &#222;
223 ß &#223;
224 à &#224;
225 á &#225;
226 â &#226;
227 ã &#227;
228 ä &#228;
229 å &#229;
230 æ &#230;
231 ç &#231;
232 è &#232;
233 é &#233;
234 ê &#234;
235 ë &#235;
236 ì &#236;
237 í &#237;
238 î &#238;
239 ï &#239;
240 ð &#240;
241 ñ &#241;
242 ò &#242;
243 ó &#243;
244 ô &#244;
245 õ &#245;
246 ö &#246;
247 ÷ &#247;
248 ø &#248;
249 ù &#249;
250 ú &#250;
251 û &#251;
252 ü &#252;
253 ý &#253;


<style type="text/css">
    tr:nth-child(odd) { background-color: #ecf1f2;  padding: 4px;}
    tr:nth-child(even) { background-color: #fff;  padding: 4px;}
    table { border-collapse: collapse; border-spacing: 0; }
</style>



BEST HTML Colours Site! http://htmlcolorcodes.com/



The Blogger

Dave Stuart I'm a Developer with a passion for coding. I enjoy the challengers that come with the job! SharePoint is one of my expert areas along with .NET Web Development with MVC and good old MS Access VBA coding. I Blog so that I can remember how I did that way back when; PLUS all this stuff is searchable! I constantly study and run my own business, Dafran Inc. I have passed 22 Microsoft Exams since 1998 when I first jumped on the treadmill of knowledge. I hope that you enjoy this Blog as much as I enjoy updating it. All the very best from Calgary, Alberta, Canada. contact me at linkedin @ dafran.ca

Calendar

<<  March 2023  >>
MoTuWeThFrSaSu
272812345
6789101112
13141516171819
20212223242526
272829303112
3456789

View posts in large calendar

Sign in