<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Bogy Weblog</title>
	<atom:link href="http://bagalaty.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bagalaty.wordpress.com</link>
	<description>What i Learn is what You See</description>
	<lastBuildDate>Thu, 21 Apr 2011 08:34:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bagalaty.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Bogy Weblog</title>
		<link>http://bagalaty.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bagalaty.wordpress.com/osd.xml" title="Bogy Weblog" />
	<atom:link rel='hub' href='http://bagalaty.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Code Optimization in ASP.NET</title>
		<link>http://bagalaty.wordpress.com/2010/07/01/code-optimization-in-asp-net/</link>
		<comments>http://bagalaty.wordpress.com/2010/07/01/code-optimization-in-asp-net/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 07:43:31 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=329</guid>
		<description><![CDATA[Source : http://www.c-sharpcorner.com/UploadFile/vendettamit/733/Default.aspx By Amit Introduction This article gives a simple checklist that can simply be run against any ASP .NET Web Page to optimize it. This is in no way a complete list, however it should work for most of the web pages. For a performance critical application you will surely need to go [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=329&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Source :</p>
<p>http://www.c-sharpcorner.com/UploadFile/vendettamit/733/Default.aspx</p>
<p>By Amit</p>
<p><strong>Introduction</strong></p>
<p>This article gives a simple checklist that can simply be run against any ASP  .NET Web Page to optimize it. This is in no way a complete list, however it  should work for most of the web pages. For a performance critical application you  will surely need to go beyond this checklist and will require a more detailed  plan.</p>
<p><strong>Checklist for all pages</strong></p>
<p>Here is the list of checks that you need to run, not necessarily in order:</p>
<ul>
<li><strong>Disable      ViewState</strong> &#8211; Set &#8220;EnableViewState=false&#8221; for any control that does not need      the view state. As a general rule if your page does not use  postback, then      it is usually safe to disable viewstate for the complete page  itself.<span id="more-329"></span></li>
<li><strong>Use      Page.Ispostback is used in Page_Load</strong> &#8211; Make sure that all code      in page_load is within &#8220;if( Page.Ispostback)&#8221; unless it      specifically needs to be executed upon every Page Load.</li>
<li><strong>Asynchronous      calls for Web Services</strong> &#8211; If you  are using <a href="http://www.c-sharpcorner.com/UploadFile/vendettamit/733/Default.aspx#" target="_blank">Web Services</a> in you page      and they take long time to load, then preferably use Asynchronous  calls to      Web Services where ever applicable and make sure to wait for end of  the      calls before the page is fully loaded. But remember Asynchronous  calls      have their own overheads, so do not overdo it unless needed.</li>
<li><strong>Use String      Builder for large string operations</strong> &#8211; For any long string operations,      use String Builder instead.</li>
<li><strong>Specialized      Exception Handling</strong> &#8211; DO not  throw exceptions unless needed, since      throwing an exception will give you a performance hit. Instead try      managing them by using code like &#8220;if not system.dbnull ï¿½.&#8221;  Even you if you have      to handle an exception then de-allocate any memory extensive object  within      &#8220;finally&#8221; block. Do not depend on Garbage Collector to do the      job for you.</li>
</ul>
<p>Collapse</p>
<p>//</p>
<p>// Try</p>
<p>//        &#8216;Create Db Connection and  call a query</p>
<p>//        sqlConn = New SqlClient.SqlConnection(STR_CONN)</p>
<p>// Catch ex As Exception</p>
<p>//        &#8216;Throw any Error that  occurred</p>
<p>//        Throw ex</p>
<p>// Finally</p>
<p>//        &#8216;Free Database connection  objects</p>
<p>//        sqlConn = Nothing</p>
<p>//End Try</p>
<p>//</p>
<ul>
<li><strong>Leave Page      Buffering on</strong> &#8211; Leave Page buffering On, unless specifically required so. Places  where      you might require to turn it on in case of very large pages so that  user      can view something while the complete page is loading.</li>
<li><strong>Use Caching</strong> &#8211; Cache      <a href="http://www.c-sharpcorner.com/UploadFile/vendettamit/733/Default.aspx#" target="_blank">Data</a> whenever possible especially data which you are sure won&#8217;t change at      all or will be reused multiple times in the application. Make sure  to have      consistent cache keys to avoid any bugs. For simple pages which do  not      change regularly you can also go for page Caching</li>
</ul>
<p>Collapse</p>
<p>//</p>
<p>// &lt;% @OutputCache Duration=&#8221;60&#8243; VaryByParam=&#8221;none&#8221; %&gt;</p>
<p>//</p>
<p>Learn more about &#8220;VaryByParam&#8221; and &#8220;VaryByControl&#8221; for best results.</p>
<ul>
<li><strong>Use Script      files</strong> &#8211; As a rule unless required do not insert JavaScript directly into  any      page, instead save them as script file &#8220;.js&#8221; and embed them. The      benefit being that common code can be shared and also once a script  file      is loaded into browser cache, it is directly picked up from browser  cache      instead of downloading again.</li>
<li><strong>Remove      Unused Javascript</strong> &#8211; Run  through all Javascript and make sure      that all unused script is removed.</li>
<li><strong>Remove      Hidden HTML when using Tabstrip</strong> &#8211; In  you are using a Tabstrip      control and if the HTML size is too large and the page does  frequent      reloads, then turn Autopostback of Tabstrip on, put each Pageview  inside a      panel and turn visibility of all Panels except the current one to  False.      This will force the page to reload every time a tab is changed  however the      reload time will reduce heavily. Use your own jurisdiction to best  use.</li>
</ul>
<p><strong>Additional Checklist for performance critical pages</strong></p>
<ul>
<li><strong>Disable      session when not using it</strong> &#8211; If your  page does not use      session then disable session specifically for that page.</li>
</ul>
<p>Collapse</p>
<p>//</p>
<p>// &lt;%@ Page EnableSessionState=&#8221;false&#8221; %&gt;</p>
<p>//</p>
<p>If the page only reads session but does  not write anything in session, then make it read only.</p>
<p>Collapse</p>
<p>//</p>
<p>// &#8216;&lt;%@ Page EnableSessionState=&#8221;ReadOnly&#8221; %&gt;</p>
<p>//</p>
<ul>
<li><strong>Use Option      Strict On (VB .Net only)</strong> &#8211; Enabling  Option Script restricts      implicit type conversions, which helps avoid those annoying type      conversion and also is a Performance helper by eliminating hidden      type conversions. I agree it takes away some of you freedom, but  believe      me the advantages outweigh the freedom.</li>
<li><strong>Use      Threading</strong> &#8211; When downloading huge amounts of data use Threading to load Data  in      background. Be aware, however, that threading does carry overhead  and must      be used carefully. A thread with a short lifetime is inherently      inefficient, and context switching takes a significant amount of  execution      time. You should use the minimum number of long-term threads, and  switch      between them as rarely as you can.</li>
<li><strong>Use Chunky      Functions</strong> &#8211; A chunky call is a function call that performs several tasks. you  should      try to design your application so that it doesn&#8217;t rely on small,  frequent      calls that carry so much overhead.</li>
<li><strong>Use Jagged      Arrays</strong> &#8211; In case you are doing heavy use of Multi Dimensional Arrays, use  Jagged      Array (&#8220;Arrays of Arrays&#8221;) Instead</li>
<li>Use      &#8220;&amp;&#8221; instead of &#8220;+&#8221; &#8211; You should use the      concatenation operator (&amp;) instead of the plus operator (+) to      concatenate strings. They are equivalent only if both operands are  of type      String. When this is not the case, the + operator becomes late  bound and      must perform type checking and conversions.</li>
<li><strong>Use Ajax</strong> &#8211; In      performance critical application where there are frequent page  loads,      resort to Ajax.</li>
<li><strong>Use the      SqlDataReader class</strong> &#8211; The  SqlDataReader class provides a means to      read forward-only data stream retrieved from a SQL Serverï¿½ <a href="http://www.c-sharpcorner.com/UploadFile/vendettamit/733/Default.aspx#" target="_blank">database</a>.  If you only need      to read data then SqlDataReader class offers higher performance  than the      DataSet class because SqlDataReader uses the Tabular Data Stream  protocol      to read data directly from a database connection</li>
<li><strong>Choose      appropriate Session State provider</strong> &#8211; In-process session state is the      fastest solution. If you store only small data in session state, go  for      in-process provider. The out-of-process solutions is useful if you  scale      your application across multiple processors or multiple computers.</li>
<li><strong>Use Stored      Procedures</strong> &#8211; Stored procedures are pre-compiled and hence are much faster than  a      direct SQL statement call.</li>
<li><strong>Use Web      Services with care</strong> &#8211; Web  Services depending on data volume can      have monstrous memory requirements. Do not go for Web Services  unless your      Business Models demands it.</li>
<li><strong>Paging in      Database Side </strong>-      When you needs to display large amount of Data to the user, go for a      stored procedure based Data Paging technique instead of relying on  the      Data Grid/ Data List Paging functionality. Basically download only  data for      the current page.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/329/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=329&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2010/07/01/code-optimization-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
		<item>
		<title>هل نحن اغبياء فعلا هكذا ?</title>
		<link>http://bagalaty.wordpress.com/2010/05/24/%d9%87%d9%84-%d9%81%d8%b9%d9%84%d8%a7-%d9%86%d8%ad%d9%86-%d8%a7%d8%ba%d8%a8%d9%8a%d8%a7%d8%a1-%d9%87%d9%83%d8%b0%d8%a7/</link>
		<comments>http://bagalaty.wordpress.com/2010/05/24/%d9%87%d9%84-%d9%81%d8%b9%d9%84%d8%a7-%d9%86%d8%ad%d9%86-%d8%a7%d8%ba%d8%a8%d9%8a%d8%a7%d8%a1-%d9%87%d9%83%d8%b0%d8%a7/#comments</comments>
		<pubDate>Mon, 24 May 2010 14:23:36 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[Islamic]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=318</guid>
		<description><![CDATA[أرجو قراءة الموضوع حتى النهاية ولكم جزيل الشكر ديفيد رسام ومصور وخبير فوتوشوب له عدة مواهب &#8230; يكره الاسلام و المسلمين من صغره عندما شاهد أحداث الرسومات الكركتيرية المسيئة للمسلمين .. في الصحف الأوروبية &#8230;. أسعده وسره &#8230; حاول أن يفعل شيئا يغيظ المسلمين &#8230;. لكي يذوق السرور !! **** قام برسم كركتيرات مسيئة للإسلام [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=318&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><strong><em><span style="text-decoration:underline;">أرجو قراءة الموضوع حتى النهاية ولكم جزيل الشكر</span></em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ديفيد رسام ومصور وخبير فوتوشوب</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>له عدة مواهب &#8230;</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em> </em></strong><strong><em> </em></strong><strong><em>يكره الاسلام و المسلمين من صغره</em></strong><strong><em><br />
</em></strong><strong><em> </em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em>عندما شاهد أحداث الرسومات الكركتيرية المسيئة للمسلمين ..</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>في الصحف الأوروبية &#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>أسعده وسره &#8230;</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>حاول أن يفعل شيئا يغيظ المسلمين &#8230;.<span id="more-318"></span></em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>لكي يذوق السرور !!</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>****</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>قام برسم كركتيرات مسيئة للإسلام &#8230;.</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em> </em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em>مسيئة لله ولآياته &#8230;</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وضع لفظ الجلالة في مكان نجس &#8230;.</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>كتب (</em></strong><strong><em> </em></strong><strong><em>لا إله إلا الله</em></strong><strong><em> </em></strong><strong><em>) في موضع لا يليق .. (</em></strong><strong><em> </em></strong><strong><em>ولا داعي لذكر الموضع تعظيما للشهادة</em></strong><strong><em> </em></strong><strong><em>)</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ركّب صور وجوه مسلمين على حيوانات &#8230;.</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>كتب سورة الفاتحة على فستان امرأة مبرقعة &#8230;.</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em>*</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ذهب ديفيد وبيده ملف يحوي أعماله القذرة &#8230;.</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>إلى إحدى الجرائد العريقة &#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>دخل على رئيس التحرير وأراه إياها &#8230;.<br />
</em></strong><strong><em><br />
</em></strong><strong><em>طلب منه أن ينشرها في جريدته وقال أنه تعِب عليها &#8230;</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ولكن رئيس التحرير</em></strong><strong><em> </em></strong><strong><em><span style="text-decoration:underline;">رفض</span></em></strong><strong><em> </em></strong><strong><em>ذلك وقال : نحن مجانين لو فعلنا ذلك ،</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>أما تعرف كيف انقلب العالم بعد أحداث الدنمارك ؟</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>عاد ديفيد إلى بيته يائسا ..</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>****</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em>في عصر يوم من الأيام &#8230;.</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>افترش ديفيد الأرض وجلس يشاهد التلفاز</em></strong></p>
<p style="text-align:center;"><strong><em><br />
</em></strong><strong><em>وأمامه كوب قهوة ، ورقه ، وقلم &#8230;.</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em>يتسلى بالرسم &#8230;</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em>اتصل به صديقه ودعاه للخروج للبحر &#8230;.</em></strong><strong><em> </em></strong></p>
<div style="text-align:center;"><strong><em>وعلى البحر &#8230;</em></strong></div>
<p style="text-align:center;"><strong><em>أخبر ديفيد صديقه بـ&#8217; أعماله &#8216; وأخبره &#8216; بذهابه للصحيفة</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ومحاولة نشرها &#8216; وكيف رفضوا &#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>قال له صديقه</em></strong><strong><em> </em></strong><strong><em>: وماحاجتك للصحيفة وعندك</em></strong><strong><em> </em></strong><strong><em>الإنترنت ؟؟</em></strong><strong><em><br />
</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em>ديفيد</em></strong><strong><em> </em></strong><strong><em>: هل تقارن صحيفة بموقع انترنت ؟</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>صديقه</em></strong><strong><em> </em></strong><strong><em>: ديفيد ، اسمع سأخبرك شيئا &#8230;.</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>أنت لست بحاجة لعمل موقع تنشر فيها أعمالك &#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>فقط ادخل على أحد</em></strong><strong><em> </em></strong><strong><em>المنتديات العربية</em></strong><strong><em> </em></strong><strong><em>وانشر أعمالك &#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وبعد اسبوع ، ابحث عن أعمالك في</em></strong><strong><em>جوجل</em></strong><strong><em>&#8230;.</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ستجدها قد انتشرت في</em></strong><strong><em> </em></strong><strong><em><span style="text-decoration:underline;">80</span></em></strong><strong><em><span style="text-decoration:underline;"> </span></em></strong><strong><em><span style="text-decoration:underline;">منتدى عربي مسلم</span></em></strong><strong><em><span style="text-decoration:underline;"> </span></em></strong><strong><em>= يُفترض !!</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وبعد اسبوعين .. ستنتشر في</em></strong><strong><em><span style="text-decoration:underline;">400</span></em></strong><strong><em><span style="text-decoration:underline;"> </span></em></strong><strong><em><span style="text-decoration:underline;">منتدى عربي</span></em></strong><strong><em><span style="text-decoration:underline;"> </span></em></strong><strong><em>.. وهكذا</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ديفيد يحك ذقنه</em></strong><strong><em> </em></strong><strong><em>:  أنشرها في منتديات عربية وتنتشر ؟</em></strong><strong><em>أعتقد أنك لست في وعيك</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>صديقه</em></strong><strong><em> </em></strong><strong><em>: يا ديفيد يا ديفيد &#8230;..</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>افعل فقط واترك هذه الأسئلة .</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وفي صباح اليوم التالي &#8230;.</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>بعد أن نام ديفيد والأفكار في عقله متجمهرة &#8230;</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>استيقظ وجلس على اللاب توب الجديد</em></strong></p>
<p style="text-align:center;"><strong><em> وعينه تصارع النوم ورائحة فمه قتلت أخيه، وكلبه ..</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>اتصل بزميله جورج &#8230; ( نصراني عربي ) &#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وطلب منه أن يعينه على إيجاد المنتديات العربية &#8230;</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>فديفيد لا يحسن من العربية إلا بضع كلمات &#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>رحب جورج بالفكرة بعد أن</em></strong><strong><em> </em></strong><strong><em>ضحك ضحكات غريبه</em></strong><strong><em> </em></strong><strong><em>&#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ثم ..</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>نشروا</em></strong><strong><em> </em></strong><strong><em>أول صورة</em></strong><strong><em> </em></strong><strong><em>في منتدى عربي &#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وهي</em></strong><strong><em> </em></strong><strong><em>صورة المرأة المبرقعة</em></strong><strong><em> </em></strong><strong><em>..</em></strong><strong><em>المكتوب على لباسها</em></strong><strong><em> </em></strong><strong><em><span style="text-decoration:underline;">سورة الفاتحة</span></em></strong><strong><em><span style="text-decoration:underline;"> </span></em></strong><strong><em>..</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>قال جورج</em></strong><strong><em> </em></strong><strong><em>: ديفيد ، كيف سأنشرها ، سوف أطرد ويُحذف الموضوع !!</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>سكتوا لحظة &#8230;</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>جورج صارخا</em></strong><strong><em> </em></strong><strong><em>: نعم &#8230; سأكتب كلمات بسيطة تقلب الطرد إلى ترحيب ؟</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>أمسك جورج كيبورده المُعَرَّب &#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وكتب :</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>بسم الله الرحمن الرحيم</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>يا ناس شوفوا الصورة :</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>( ووضع الصورة هنا)</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وتحت الصورة كتب والضحكة تخنقه :</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><span style="text-decoration:underline;">حسبي الله ونعم الوكيل</span></em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>&#8230;.</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>قال ديفيد</em></strong><strong><em> </em></strong><strong><em>: أخبرني ماذا تكتب &#8230; ماذا فعلت &#8230;.</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>قال جورج</em></strong><strong><em> </em></strong><strong><em>:</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>&#8216; بعض &#8216; المسلمين</em></strong><strong><em> </em></strong><strong><em><span style="text-decoration:underline;">أغبياء جهلة</span></em></strong><strong><em> </em></strong><strong><em>، يعتبرون الصور كفرية</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>إذا كانت في صحف أوروبيه أو حتى عربية ،</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><br />
</em></strong><strong><em>ويعتبرون نشرها مسيئ ومحرم وكفر ..</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><br />
</em></strong><strong><em>ولكن الأمر يختلف في</em></strong><strong><em> </em></strong><strong><em><span style="text-decoration:underline;">منتدياتهم !!</span></em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><br />
</em></strong><strong><em><span style="text-decoration:underline;">في منتدياتهم تجد الأمر طبيعي ،</span></em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><br />
</em></strong><strong><em>فقط اذكر الله واذكر عبارات مستنكرة ما يحدث</em></strong><strong><em> </em></strong><strong><em>، كأن تكتب :</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><br />
</em></strong><strong><em><span style="text-decoration:underline;">لا حول ولا قوة إلا بالله، أعوذ بالله انظر ماذا يفعل أعداء الإسلام،</span></em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><br />
</em></strong><strong><em>وغيرها فيما يخص الموضوع ونزَّل ماشئت من &#8216; كفريات &#8216;</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>&#8230; استهزئ كما تشاء &#8230;.</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><br />
</em></strong><strong><em>ولكن مرفقة بعبارات إسلامية دينية</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em> </em></strong></p>
<table style="text-align:center;" dir="rtl" border="0" cellpadding="0" width="400">
<tbody>
<tr>
<td width="20"></td>
<td>نقره على هذا الشريط لتكبير الصورة</td>
</tr>
</tbody>
</table>
<p style="text-align:center;"><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وبعد أسبوع &#8230;</em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>أخبر جورج صديقه ديفيد يبشره ..</em></strong><strong><em> </em></strong><strong><em><span style="text-decoration:underline;">أن الصورة انتشرت</span></em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><span style="text-decoration:underline;">انتشارا واسعا في المنتديات العربية ..</span></em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>قال ديفيد</em></strong><strong><em>: ما أبله هؤلاء الحقراء ، سأصمم الليلة</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>صورة عن الكعبة وأرسلها لك غدا لتنشرها &#8230;</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>جورج</em></strong><strong><em> </em></strong><strong><em>: انتظر قليلا وانشرها بعد أسبوعين ، دعهم</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>يشتاقون لأعمالك ولا تحرقها جميعها ..</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ديفيدضاحكا</em></strong><strong><em> </em></strong><strong><em>: صدقني لا يوجد معرض يفي بالغرض ..</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>مثل</em></strong><strong><em> </em></strong><strong><em>الإنترنت وبعض عملاء التوزيع المسلمين فيه &#8230;</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>(( القصة من مذكرات ديفيد وويلز ، طالب جامعي أمريكي ))</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>لذلك الأخوة والأخوات .. أشدد وأشدد عليكم</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>عند استلامكم لأي شيء كان .. صور أو رسوم تسيء للإسلام</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>فعليكم مباشرة</em></strong><strong><em> </em></strong><strong><em>حذفها</em></strong><strong><em> </em></strong><strong><em>و</em></strong><strong><em>إلغائها</em></strong><strong><em> </em></strong><strong><em>..</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em><br />
</em></strong><strong><em>كتلك التي وصلتني ووصلت غيري من المتعاملين بالبريد الإليكتروني</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>صورة الحقير الذي يهين المصحف الشريف بأعمال قذره مثله</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><span style="text-decoration:underline;">وبالطبع انتشرت بين عدد كبير من الناس وتداولها العديد</span></em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ولكني أحمد الله كثيراً أنني عندما استلمت ذلك الإيميل</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>قمت بحذفه مباشرة ولم أرسله لأحد ..</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>لإنه في الحقيقة لا فائدة تعود علينا من نشر مثل تلك الصور</em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ما الذي ستستفيده ؟؟!!</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>أولاً</em></strong><strong><em> </em></strong><strong><em>هي صور تؤذي مشاعرنا ، فكيف نقوم بنشرها</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وثانياً</em></strong><strong><em> </em></strong><strong><em>نحن نعلم أعداء الإسلام وما يقومون به فلماذا نريد الدليل</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>بالصورعلى ما يفعلون ؟ ..</em></strong><strong><em><br />
</em></strong><strong><em> </em></strong><strong><em><br />
</em></strong><strong><em><br />
</em></strong><strong><em>دعوهم يفعلوا ما يريدون ولا تساهموا في نشر ذلك</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>حتى</em></strong><strong><em> </em></strong><strong><em>لا</em></strong><strong><em> </em></strong><strong><em>تصبح مثل تلك الصور مألوفة لديكم</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>بصراحةأغلب المواقع الالكترونيه تسارع لنشر مثل هالمواضيع</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>أعلم نيتهم حسنه بس ليه ننشر هالإسأه ؟؟</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وأكرر ماذا سنستفيد من نشرها ؟؟</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>نحن بذلك نكون سوقنا ونشرنا وأنجحنا مخططاتهم</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>فمن يقوم بأفعال كتلك التي رأيناها في إهانة القرآن الكريم</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ماذا كان يقصد ذلك الحقير بأن يقوم بهذه الأفعال ويصورها</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ومن ثم يضعها على الإنترنت ؟</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>إنه كان يقصد أن تنتشر عبر العالم</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وأنتم كنتم الأداة</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><br />
</em></strong><strong><em>استغفروا الله على ما لم تكونوا تقصدوا ..</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وتوقفوا فوراً عن النشر</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ومن استطاع أن يدخل إلى المواقع لحذف تلك الصور فليفعل</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>وليكن شعارنا :</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em><span style="text-decoration:underline;">ساعدوا بالإزالة وليس بالإنتشار</span></em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>قبل الختام بقي أمر مهم</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>أذكركم أن</em></strong><strong><em> </em></strong><strong><em>لرسول الله صلى الله عليه وسلم</em></strong><strong><em> </em></strong><strong><em>أخ من</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>الرضاع وكان شاعراً وجّه شعره في</em></strong><strong><em>ذم</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>رسول الله صلى الله عليه وسلم</em></strong><strong><em>قبل أن يسلم</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>ويحسن إسلامه وغيره من الشعراء كثير</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>السؤال الآن</em></strong><strong><em> </em></strong><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>لماذا لم يصلنا ذلك الشعر</em></strong><strong><em>؟</em></strong></p>
<p style="text-align:center;"><strong><em>لا يجب أن نكون أغبيـــاء لهذه الدرجة &#8230;.</em></strong></p>
<p><strong><em> </em></strong></p>
<p style="text-align:center;"><strong><em>حسبي الله ونعم الوكيل &#8230;.</em></strong><strong><em> </em></strong><strong><em>نعم نحن كذلك فعلا فكل واحد يفتخر بعمل فورارد لأى اميل من دون معرفة ماذا يفعل او يتأكد من المحتوى</em></strong><strong><em> </em></strong></p>
<p style="text-align:center;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/318/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=318&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2010/05/24/%d9%87%d9%84-%d9%81%d8%b9%d9%84%d8%a7-%d9%86%d8%ad%d9%86-%d8%a7%d8%ba%d8%a8%d9%8a%d8%a7%d8%a1-%d9%87%d9%83%d8%b0%d8%a7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
		<item>
		<title>الفوائد العشر لصلاة الفجر في جماعة</title>
		<link>http://bagalaty.wordpress.com/2010/01/16/%d8%a7%d9%84%d9%81%d9%88%d8%a7%d8%a6%d8%af-%d8%a7%d9%84%d8%b9%d8%b4%d8%b1-%d9%84%d8%b5%d9%84%d8%a7%d8%a9-%d8%a7%d9%84%d9%81%d8%ac%d8%b1-%d9%81%d9%8a-%d8%ac%d9%85%d8%a7%d8%b9%d8%a9/</link>
		<comments>http://bagalaty.wordpress.com/2010/01/16/%d8%a7%d9%84%d9%81%d9%88%d8%a7%d8%a6%d8%af-%d8%a7%d9%84%d8%b9%d8%b4%d8%b1-%d9%84%d8%b5%d9%84%d8%a7%d8%a9-%d8%a7%d9%84%d9%81%d8%ac%d8%b1-%d9%81%d9%8a-%d8%ac%d9%85%d8%a7%d8%b9%d8%a9/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 21:13:57 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[Islamic]]></category>
		<category><![CDATA[فوائد]]></category>
		<category><![CDATA[الفجر]]></category>
		<category><![CDATA[الجنة]]></category>
		<category><![CDATA[الصلاه]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=312</guid>
		<description><![CDATA[الحمد لله رب العالمين، والصلاة والسلام على سيدنا محمد، الحبيب المحبوب القائل: ((وجُعِلت قُرَّة عيني في الصلاة)). والذي نودُّ ذِكره هنا أن صلاة الفجر مع الجماعة، قد اختصتْ بفوائدَ وأسرارٍ انفردتْ بها عن سائر الصلوات، ومن يطَّلع على واحدة من هذه الفوائد يجد أن الواحدة منها كافية أن تستنهض همَّة المؤمن، وتحرِّك عزيمته، وتبعث نشاطه، [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=312&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2 style="text-align:center;">الحمد لله رب العالمين، والصلاة والسلام على سيدنا محمد، الحبيب المحبوب القائل:</p>
<p>((<span style="color:#ff0000;">وجُعِلت قُرَّة عيني في الصلاة</span>)).</p>
<p>والذي نودُّ ذِكره هنا أن صلاة الفجر مع الجماعة، قد اختصتْ بفوائدَ وأسرارٍ انفردتْ بها عن سائر الصلوات، ومن يطَّلع على واحدة من هذه الفوائد يجد أن الواحدة منها كافية أن تستنهض همَّة المؤمن، وتحرِّك عزيمته، وتبعث نشاطه، وتحمله على هجر النوم والكسل، وترك الفراش، والبيت الدافئ، لينطلق في لهفة وحماس؛ لتحصيل هذه الفوائد، بأداء صلاة الفجر في المسجد مع الجماعة.</p>
<p><span style="color:#0000ff;">الفائدة الأولى: الدخول في ذمَّة الله:</span><br />
عن جندب بن عبدالله بن سفيان البجلي &#8211; رضي الله عنه &#8211; قال: قال رسول الله &#8211; صلى الله عليه وسلم -:<br />
((<span style="color:#ff0000;">مَن صلَّى الصبح، فهو في ذمة الله، فلا يَطلُبَنَّكم الله من ذمَّته بشيء؛ فإن من يطلُبهُ من ذمته بشيء يدركه، ثم يَكُبه على وجهه في نار جهنم</span>))؛ رواه مسلم وأحمد.</p>
<p>ومعنى هذا الحديث: أن مَن صلَّى الصبح في جماعة، فهو في ضمانه &#8211; تعالى &#8211; وأمانه وعهده، فليس لأحد أن يتعرَّض له بسوء، ومَن نقض عهد الله &#8211; تعالى &#8211; فإنه يطلبه للمؤاخذة بما فرط في حقِّه والقيام بعهده.</p>
<p><span style="color:#0000ff;">الفائدة الثانية: أجر قيام الليل:</span><br />
عن عثمان بن عفان &#8211; رضي الله عنه &#8211; قال: قال رسول الله &#8211; صلى الله عليه وسلم -:<br />
((<span style="color:#ff0000;">مَن صلى العشاء في جماعة، فكأنما قام نصف الليل، ومن صلى الصبح في جماعة، فكأنما صلَّى الليلَ كلَّه</span>))؛ رواه مسلم.</p>
<p><span style="color:#0000ff;">الفائدة الثالثة: براءة من النفاق:<span id="more-312"></span></span></p>
<p>عن أبي هريرة &#8211; رضي الله عنه &#8211; قال: قال رسول الله &#8211; صلى الله عليه وسلم -:<br />
((<span style="color:#ff0000;">ليس صلاة أثقل على المنافقين من الفجر والعشاء، ولو يعلمون ما فيهما، لأتَوهما ولو حبوًا، ولقد هممتُ أن آمُرَ المؤذِّن فيُقيم، ثم آخُذَ شُعلاً من النار، فأحرِّقَ على من لا يخرج إلى الصلاة بعد</span>))؛ رواه أحمد، والبخاري، ومسلم.</p>
<p><span style="color:#0000ff;">الفائدة الرابعة: النور التام يوم القيامة:</span></p>
<p>عن بريدة الأسلمي &#8211; رضي الله عنه &#8211; عن النبي &#8211; صلى الله عليه وسلم &#8211; قال:<br />
((<span style="color:#ff0000;">بشِّرِ المشَّائين في الظُّلَم إلى المساجد بالنور التام يوم القيامة</span>))؛ رواه أبو داود والترمذي.</p>
<p><span style="color:#0000ff;">الفائدة الخامسة: شهود الملائكة له، وثناؤهم عليه عند الله &#8211; تعالى:</span></p>
<p>عن أبي هريرة &#8211; رضي الله عنه -: أن رسول الله &#8211; صلى الله عليه وسلم &#8211; قال: ((<span style="color:#ff0000;">يتعاقبون فيكم ملائكةٌ بالليل، وملائكةٌ بالنهار، ويجتمعون في صلاة الفجر وصلاة العصر، ثم يعرُجُ الذين باتوا فيكم، فيسألهم ربُّهم &#8211; وهو أعلم بهم -: كيف تركتم عبادي؟ فيقولون: تركناهم وهم يصلُّون، وأتيناهم وهم يصلون</span>))؛ رواه البخاري ومسلم.</p>
<p><span style="color:#0000ff;">الفائدة السادسة: أجر حجة وعمرة إذا ذكر الله &#8211; تعالى &#8211; حتى تطلع الشمس:</span></p>
<p>عن أنس بن مالك &#8211; رضي الله عنه &#8211; قال: قال رسول الله &#8211; صلى الله عليه وسلم -:<br />
((<span style="color:#ff0000;">مَن صلى الغداة في جماعة، ثم قعد يذكر الله حتى تطلع الشمس، ثم صلى ركعتين، كانت له كأجر حجة وعمرة تامة، تامة، تامة</span>))؛ رواه الترمذي.</p>
<p><span style="color:#0000ff;">الفائدة السابعة: غنيمة لا تعدلها غنائم الدنيا:</span></p>
<p>عن عمر بن الخطاب &#8211; رضي الله عنه -: أن النبي &#8211; صلى الله عليه وسلم &#8211; بعث بعثًا قِبَلَ نجدٍ، فغنموا غنائم كثيرة، فأسرعوا الرجعة، فقال رجل ممن لم يخرج: ما رأينا بعثًا أسرع رجعةً، ولا أفضل غنيمةً من هذا البعث، فقال النبي &#8211; صلى الله عليه وسلم -:<br />
((<span style="color:#ff0000;">ألا أدلُّكم على قوم أفضل غنيمة، وأسرع رجعة؟ قوم شهدوا الصبح، ثم جلسوا يذكرون الله حتى طلعت عليهم الشمس، فأولئك أسرع رجعة، وأفضل غنيمة</span>))؛ رواه الترمذي وضعفه.</p>
<p><span style="color:#0000ff;">الفائدة الثامنة: فضل اغتنام سنة الفجر:</span></p>
<p>عن عائشة &#8211; رضي الله عنها &#8211; عن النبي &#8211; صلى الله عليه وسلم &#8211; قال: ((<span style="color:#ff0000;">ركعتا الفجر خيرٌ من الدنيا وما فيها</span>))؛ رواه مسلم.<br />
<span style="color:#0000ff;"><br />
الفائدة التاسعة: النجاة من النار، والبشارة بدخول الجنة:</span></p>
<p>عن عُمارة بن رويبة &#8211; رضي الله عنه &#8211; قال: سمعت رسول الله &#8211; صلى الله عليه وسلم &#8211; يقول:<br />
((<span style="color:#ff0000;">لن يلج النارَ أحدٌ صلى قبل طلوع الشمس وقبل غروبها</span>))؛ يعني: الفجرَ والعصر؛ رواه مسلم.<br />
<span style="color:#0000ff;">الفائدة العاشرة: الفوز برؤية الله &#8211; تعالى &#8211; يوم القيامة (وهي أعظم الفوائد):</span><br />
عن جرير بن عبدالله البجلي &#8211; رضي الله عنه &#8211; قال: كنا جلوسًا عند رسول الله &#8211; صلى الله عليه وسلم &#8211; إذ نظر إلى القمر ليلة البدر<br />
فقال: (<span style="color:#ff0000;">(أمَا إنكم سترَون ربَّكم كما ترَون هذا القمر، لا تُضَامُّون في رؤيته، فإن استطعتم ألا تُغلبوا على صلاةٍ قبل طلوع الشمس وقبل غروبها، فافعلوا</span>))؛ رواه البخاري ومسلم.</p>
<p>ومما يعين المؤمنَ على الاستيقاظ لصلاة الفجر في وقتها ألاَّ يطيل السهر بعد العشاء، وأن ينام باكرًا لوقت يمكنه فيه أن يصحو نشيطًا ويهرع إلى المسجد، فمَن منَّا لا يحرص على أن يكون في أمان الله، يرعاه ويتولاه؟!</p>
<p>ومن منا لا يحرص على أن يكون له النور التام يوم القيامة، يوم ترى المؤمنين والمؤمنات يسعى نورهم بين أيديهم وبأيمانهم؟!</p>
<p>ومَن ذاك الذي لا يهمُّه أن يكون بريئًا من النفاق براءةً تنجيه من هول ذلك اليوم، ومن سوء الحساب يوم القيامة؟!</p>
<p>ومن ذاك الذي لا يجد في نفسه حبًّا وشوقًا للفوز برؤية الله &#8211; تبارك وتعالى &#8211; يوم القيامة؛ ليدخل في عِداد من قال الله فيهم: {<span style="color:#ff0000;">وُجُوهٌ يَوْمَئِذٍ نَاضِرَةٌ * إِلَى رَبِّهَا نَاظِرَةٌ</span>} [القيامة: 22، 23]؟!</p>
<p>ألا تستأهل كل واحدة من هذه الفوائد أن تجعلنا ننفض عنا غبار النوم والكسل، ونسارع لاغتنام هذا الخير العظيم، قبل انقضاء أعمارنا في هذه الدنيا الفانية؟!</p>
<p>فإذا جاهدتَ نفسك، وهرعتَ إلى المسجد عندما ينادي المؤذِّن (الصلاة خير من النوم)، وأدَّيت هذه الصلاة مع الجماعة، فستجد لذلك حلاوة ومتعة، لا يُفصح عنها لسان، ولا يُعبَّر عنها بالبيان، فإذا تذوقتَ حلاوتها، وتنعمتَ بما فيها، فإنك لن تستغني بعد ذلك عنها، إنك ستصبح أشد حرصًا عليها، واهتمامًا بها، ورغبةً فيها، كلما مرت بك الأيام، وامتدت بك الأعوام.</p>
<p>وختامًا:</p>
<p>اللهم أعنَّا على ذِكرك وشكرك وحسن عبادتك، واجعلنا ممن يسارعون إلى الخيرات، ويسابقون إلى الطاعات والمكرمات، وفي ذلك فليتنافس المتنافسون، ولمثل هذا فليعمل العاملون، والحمد لله رب العالمين.<br />
<strong>حسن رمضان البوطي</strong></p>
<p><a href="http://www.twbh.com/index.php/site/article/read7071/" target="_blank">http://www.twbh.com/index.php/site/article/read7071/</a><br />
لاتنسوني من صالح دعائكم</p>
<p>أنا لا أكتبُ حروفـــــاً وكلمات لِـتُــقرأَ !</p>
<p>بل أَصنعُ للحــــياةِ ألوانـــــاً منَ الإيمـــانِ والأمــــلِ ..</p>
<p>nooralislaam.com</h2>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/312/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=312&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2010/01/16/%d8%a7%d9%84%d9%81%d9%88%d8%a7%d8%a6%d8%af-%d8%a7%d9%84%d8%b9%d8%b4%d8%b1-%d9%84%d8%b5%d9%84%d8%a7%d8%a9-%d8%a7%d9%84%d9%81%d8%ac%d8%b1-%d9%81%d9%8a-%d8%ac%d9%85%d8%a7%d8%b9%d8%a9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
		<item>
		<title>في سورة الكهف 4 قصص</title>
		<link>http://bagalaty.wordpress.com/2010/01/16/%d9%81%d9%8a-%d8%b3%d9%88%d8%b1%d8%a9-%d8%a7%d9%84%d9%83%d9%87%d9%81-4-%d9%82%d8%b5%d8%b5/</link>
		<comments>http://bagalaty.wordpress.com/2010/01/16/%d9%81%d9%8a-%d8%b3%d9%88%d8%b1%d8%a9-%d8%a7%d9%84%d9%83%d9%87%d9%81-4-%d9%82%d8%b5%d8%b5/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 13:57:03 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[Islamic]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=310</guid>
		<description><![CDATA[في سورة الكهف 4 قصص : 1- أصحاب الكهف (فـتـنـة الـديـن). قصة لشباب مؤمن كانوا يعيشون في بلدة كافرة فعزموا على الهجرة والفرار بدينهم بعد مواجهة بينهم وبين قومهم. &#8211; كافأهم الله برحمته في الكهف و رعاية الشمس. + &#8212; استيقظوا فوجدوا القرية مؤمنة بكاملها. 2- صاحب الجنتين (فـتـنـة الـمـال والـولـد). قصة لرجل أنعم الله [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=310&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1 style="text-align:center;"><span style="color:#ff0000;">في سورة الكهف 4 قصص :</span></h1>
<p style="text-align:center;">
<p style="text-align:center;">1- أصحاب الكهف  (فـتـنـة الـديـن).</p>
<p style="text-align:center;">قصة لشباب مؤمن كانوا يعيشون في بلدة كافرة فعزموا على الهجرة والفرار بدينهم بعد مواجهة بينهم وبين قومهم.</p>
<p style="text-align:center;">&#8211;  كافأهم الله برحمته في الكهف و رعاية الشمس.     +    &#8212; استيقظوا فوجدوا القرية  مؤمنة بكاملها.</p>
<p style="text-align:center;">2- صاحب الجنتين  (فـتـنـة الـمـال والـولـد).<br />
<span id="more-310"></span><br />
قصة لرجل أنعم الله عليه، فنسي واهب النعمة فطغى وتجرأ على ثوابت الإيمان بالطعن والشك و لم يحسن شكر النعمة، رغم تذكرة صاحبه..</p>
<p style="text-align:center;">&#8211; هلاك الزرع والثمر.   +    &#8212; الندم  حين لا ينفع الندم.</p>
<p style="text-align:center;">3- موسى والخضر  (فـتـنـة الـعـلـم).</p>
<p style="text-align:center;">عندما سئل موسى: من أعلم أهل الأرض؟ فقال: أنا ..، فأوحى الله إليه أن هناك من هو أعلم منك,</p>
<p style="text-align:center;">&#8211; فسافر إليه موسى ليتعلم منه  كيف أن الحكمة الإلهية قد تغيب أحيانا ولكن مدبرها حكيم محال في حقه العبث.</p>
<p style="text-align:center;">(مثال: السفينة، الغلام، الجدار).</p>
<p style="text-align:center;">4-  ذي القرنين  (فـتـنـة الـسـلـطـة).</p>
<p style="text-align:center;">قصة الملك العظيم الدي جمع بين العلم والقوة، وطاف جوانب الأرض، يساعد الناس وينشر الخير في ربوعها .</p>
<p style="text-align:center;">&#8211; تغلب على مشكلة يأجوج ومأجوج ببناء السد و استطاع توظيف طاقات قوم لا يكادوا يفقهون قولا .</p>
<p style="text-align:center;">في وسط السورة تقريبا  يظهر أن ابليس = محرك خيوط الفتنة :</p>
<p style="text-align:center;">قال تعالى :\\\&#8221;أَفَتَتَّخِذُونَهُ وَذُرِّيَّتَهُ أَوْلِيَاء مِن دُونِي وَهُمْ لَكُمْ عَدُوٌّ بِئْسَ لِلظَّالِمِينَ بَدَلًا \\\&#8221; الآية 50 .<!-- google_ad_section_end --></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/310/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/310/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/310/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=310&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2010/01/16/%d9%81%d9%8a-%d8%b3%d9%88%d8%b1%d8%a9-%d8%a7%d9%84%d9%83%d9%87%d9%81-4-%d9%82%d8%b5%d8%b5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
		<item>
		<title>عامل نظافه في شركة مايكروسوفت</title>
		<link>http://bagalaty.wordpress.com/2009/12/31/%d8%b9%d8%a7%d9%85%d9%84-%d9%86%d8%b8%d8%a7%d9%81%d9%87-%d9%81%d9%8a-%d8%b4%d8%b1%d9%83%d8%a9-%d9%85%d8%a7%d9%8a%d9%83%d8%b1%d9%88%d8%b3%d9%88%d9%81%d8%aa/</link>
		<comments>http://bagalaty.wordpress.com/2009/12/31/%d8%b9%d8%a7%d9%85%d9%84-%d9%86%d8%b8%d8%a7%d9%81%d9%87-%d9%81%d9%8a-%d8%b4%d8%b1%d9%83%d8%a9-%d9%85%d8%a7%d9%8a%d9%83%d8%b1%d9%88%d8%b3%d9%88%d9%81%d8%aa/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 08:00:53 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=306</guid>
		<description><![CDATA[عامل نظافه في شركة مايكروسوفت‎ تقدم رجل لشركة مايكروسوفت للعمل بوظيفة &#8211; عامل نظافه &#8211; بعد إجراء المقابلة والاختبار ( تنظيف أرضية المكتب )، أخبره مدير التوظيف بأنه قد تمت الموافقة عليه وسيتم إرسال قائمة بالمهام وتاريخ المباشرة في العمل عبر البريد الإلكتروني. أجاب الرجل: ولكنني لا أملك جهاز كمبيوتر ولا املك بريد إلكتروني! رد [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=306&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3 style="text-align:center;">عامل نظافه في شركة مايكروسوفت‎</h3>
<h3 style="text-align:center;">تقدم رجل لشركة مايكروسوفت للعمل بوظيفة &#8211; عامل نظافه &#8211; بعد إجراء المقابلة والاختبار ( تنظيف أرضية المكتب )، أخبره مدير التوظيف بأنه قد تمت الموافقة عليه وسيتم إرسال قائمة بالمهام وتاريخ المباشرة في العمل عبر البريد الإلكتروني. أجاب الرجل: ولكنني لا أملك جهاز كمبيوتر ولا املك بريد إلكتروني! رد عليه المدير ( باستغراب ): من لا يملك بريد إلكتروني فهو غير موجود أصلا ومن لا وجود له فلا يحق له العمل.</h3>
<h3 style="text-align:center;">خرج الرجل وهو فاقد الأمل في الحصول على وظيفة، فكر كثيراً ماذا عساه أن يعمل وهو لا يملك سوى 10 دولارات. بعد تفكير عميق ذهب الرجل إلى محل الخضار وقام بشراء صندوق من الطماطم ثم اخذ يتنقل في الأحياء السكنية ويمر على المنازل ويبيع حبات الطماطم. نجح في مضاعفة رأس المال وكرر نفس العملية ثلاث مرات إلى أن عاد إلى منزله في نفس اليوم وهو يحمل 60 دولار.</h3>
<h3 style="text-align:center;">أدرك الرجل بان يمكنه العيش بهذه الطريقة فاخذ يقوم بنفس العمل يوميا يخرج في الصباح الباكر ويرجع ليلا ، أرباح الرجل بدأت تتضاعف فقام بشراء عربة ثم شاحنة حتى أصبح لدية أسطول من الشاحنات لتوصيل الطلبات للزبائن. بعد خمس سنوات أصبح الرجل من كبار الموردين للأغذية في الولايات المتحدة.</h3>
<h3 style="text-align:center;">لضمان مستقبل أسرته فكر الرجل في شراء بوليصة تأمين على الحياة فاتصل بأكبر شركات التأمين وبعد مفاوضات استقر رأيه على بوليصة تناسبه فطلب منه موظف شركة التأمين أن يعطيه بريده الإلكتروني!! أجاب الرجل: ولكنني لا املك بريد إلكتروني! رد عليه الموظف (باستغراب): لا تملك بريداً إلكترونيا ونجحت ببناء هذه الإمبراطورية الضخمة!! تخيل لو أن لديك بريداً إلكترونيا! فأين ستكون اليوم؟</h3>
<h3 style="text-align:center;">أجاب الرجل بعد تفكير:</h3>
<h3 style="text-align:center;">&#8221; عامل نظافه في شركة مايكروسوفت &#8221;</h3>
<h3 style="text-align:center;">الفائدة :</h3>
<h3 style="text-align:center;">لا تحزن على مالا تملك .. فربما لو كان عندك لكان سبب حزن أكبر</h3>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/306/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=306&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2009/12/31/%d8%b9%d8%a7%d9%85%d9%84-%d9%86%d8%b8%d8%a7%d9%81%d9%87-%d9%81%d9%8a-%d8%b4%d8%b1%d9%83%d8%a9-%d9%85%d8%a7%d9%8a%d9%83%d8%b1%d9%88%d8%b3%d9%88%d9%81%d8%aa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
		<item>
		<title>يأتي على الناس زمان يصلون و هم لا يصلون</title>
		<link>http://bagalaty.wordpress.com/2009/12/26/%d9%8a%d8%a3%d8%aa%d9%8a-%d8%b9%d9%84%d9%89-%d8%a7%d9%84%d9%86%d8%a7%d8%b3-%d8%b2%d9%85%d8%a7%d9%86-%d9%8a%d8%b5%d9%84%d9%88%d9%86-%d9%88-%d9%87%d9%85-%d9%84%d8%a7-%d9%8a%d8%b5%d9%84%d9%88%d9%86/</link>
		<comments>http://bagalaty.wordpress.com/2009/12/26/%d9%8a%d8%a3%d8%aa%d9%8a-%d8%b9%d9%84%d9%89-%d8%a7%d9%84%d9%86%d8%a7%d8%b3-%d8%b2%d9%85%d8%a7%d9%86-%d9%8a%d8%b5%d9%84%d9%88%d9%86-%d9%88-%d9%87%d9%85-%d9%84%d8%a7-%d9%8a%d8%b5%d9%84%d9%88%d9%86/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 17:49:26 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[Islamic]]></category>
		<category><![CDATA[الصلاة]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=302</guid>
		<description><![CDATA[يأتي على الناس زمان يصلون وهم لا يصلون!!ء قال تعالى :&#8217; وذكر فان الذكرى تنفع المؤمنين &#8216; روي أن سيدنا طلحة الأنصاري رضي الله عنه كان يصلي في بستانه ذات يوم ورأى طيرا يخرج من بين الشجر فتعلقت عيناه بالطائر حتى نسي كم صلى, فذهب إلى الطبيب (الرسول صلى الله عليه وسلم.) يبكي ويقول : [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=302&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3 style="text-align:right;">يأتي على الناس زمان يصلون وهم لا يصلون!!ء<br />
<span style="color:#ff0000;">قال تعالى :&#8217; وذكر فان الذكرى تنفع المؤمنين &#8216;</span><br />
روي أن سيدنا طلحة الأنصاري رضي الله عنه كان يصلي في بستانه ذات يوم ورأى طيرا يخرج<br />
من بين الشجر فتعلقت عيناه بالطائر حتى نسي كم صلى, فذهب إلى الطبيب (الرسول صلى الله عليه وسلم.) يبكي ويقول :</h3>
<h3 style="text-align:right;"><span id="more-302"></span><br />
يا رسول الله , إني انشغلت بالطائر في البستان حتى نسيت كم صليت ,<br />
فإني أجعل هذا البستان صدقة في سبيل الله ..<br />
فضعه يا رسول الله حيث شئت لعل الله يغفر لي<br />
<span style="color:#ff0000;">وهذا أبو هريرة رضي الله عنه يقول :</span><br />
إن الرجل ليصلي ستين سنة ولا تقبل منه صلاة ,<br />
فقيل له : كيف ذلك؟<br />
فقال: لا يتم ركوعها ولا سجودها ولا قيامها ولا خشوعها<br />
<span style="color:#ff0000;">ويقول سيدنا عمر بن الخطاب رضي الله عنه :</span><br />
إن الرجل ليشيب في الاسلام ولم يكمل لله ركعة واحدة!!<br />
قيل : كيف يا أمير المؤمنين قال : لا يتم ركوعها ولا سجودها<br />
<span style="color:#ff0000;">ويقول الإمام أحمد بن حنبل رحمه الله : </span><br />
يأتي على الناس زمان يصلون وهم لا يصلون ,<br />
وإني لأتخوف أن يكون الزمان هو هذا الزمان !!!!!!!<br />
فماذا لو أتيت إلينا يا إمام لتنظر أحوالنا ؟؟؟<br />
<span style="color:#ff0000;">ويقول الإمام الغزالي ر حمه الله : </span><br />
إن الرجل ليسجد السجدة يظن أنه تقرب بها إلى الله سبحانه وتعالى ,<br />
ووالله لو وزع ذنب هذه السجدة على أهل بلدته لهلكوا ،<br />
سئل كيف ذلك ؟؟؟ فقال : يسجد برأسه بين يدي مولاه ,<br />
وهو منشغل باللهو والمعاصي والشهوات وحب الدنيا &#8230;..<br />
فأي سجدة هذه ؟؟؟؟؟؟؟؟؟؟؟<br />
النبي يقول : (( وجعلت قرة عيني في الصلاة))<br />
فبالله عليك هل صليت مرة ركعتين فكانتا قرة عينك؟؟؟؟<br />
وهل اشتق مرة أن تعود سريعا إلى البيت كي تصلي ركعتين لله؟؟؟<br />
هل اشتقت إلى الليل كي تخلو فيه مع الله؟؟؟؟؟؟<br />
وانظر إلى الرسول &#8230;<br />
كانت عائشة رض ي الله عنها تجده طول الليل يصلي وطول النهار يدعو إلى الله تعالى فتسأله :0<br />
يا رسول الله أنت لا تنام؟؟<br />
<span style="color:#ff0000;">فيقول لها (( مضى زمن النوم ))</span><br />
ويقول الصحابة : كنا نسمع لجوف النبي وهو يصلي أزيز كأزيز المرجل من البكاء؟؟؟؟؟؟؟؟<br />
وقالوا .. لو رأيت سفيان الثوري يصلي لقلت : يموت الآن ( من كثرة خشوعه )؟؟؟<br />
وهذا عروة بن الزبير (( واستمع لهذه)) ابن السيدة أسماء أخت السيدة عائشة رضي الله<br />
عنهم &#8230; أصاب رجله داء الأكلة ( السرطان ) فقيل له : لا بد من قطع قدمك حتى لا ينتشر<br />
المرض في جسمك كله , ولهذا لا بد أن تشرب بعض الخمر حتى يغيب وعيك . فقال : أيغيب<br />
قلبي ولساني عن ذكر الله ؟؟<br />
والله لا أستعين بمعصية الله على طاعته .<br />
فقالوا : نسقيك المنقد ( مخدر)<br />
فقال : لا أحب أن يسلب جزء من أعضائي وأنا نائم<br />
فقالوا : نأتي بالرجال تمسكك ,<br />
فقال : أنا أعينكم على نفسي .<br />
قالوا : لا تطيق .<br />
قال : دعوني أصلي فإذا وجدتموني لا أتحرك وقد سكنت جوارحي واستقرت فأنظروني حتى أسجد<br />
فإذا سجدت فما عدت في الدنيا , فافعلوا بي ما تشاؤون !!!<br />
فجاء الطبيب وانتظر, فلما سجد أتى بالمنشار فقطع قدم الرجل ولم يصرخ بل كان<br />
يقول : &#8230; لا إله إلا الله &#8230;.<br />
رضيت بالله ربا وبالإسلام دينا وبمحمد نبيا ورسولا &#8230;<br />
حتى أغشي عليه ولم يصرخ صرخة ,,<br />
فلما أفاق أتوه بقدمه فنظر إليها<br />
وقال : أقسم بالله إني لم أمش بك إلى حرام ,<br />
ويعلم الله , كم وقفت عليك بالليل قائما لله&#8230;.<br />
فقال له أحد الصحابة : يا عروة &#8230; أبشر &#8230;. جزء من جسدك سبقك إلى الجنة<br />
فقال : والله ما عزاني أحد بأفضل من هذا العزاء<br />
<span style="color:#ff0000;">وكان الحسن بن علي رضي الله عنهما إذا دخل في الصلاة ارتعش واصفر لونه &#8230;</span><br />
فإذا سئل عن ذلك قال : أتدرون بين يدي من أقوم الآن ؟؟؟؟؟!!!!!<br />
وكان أبوه سيدنا علي رضي الله عنه إذا توضأ ارتجف فإذا سئل عن ذلك قال :<br />
الآن أحمل الأمانة التي عرضت على السماء والأرض والجبال<br />
فأبين أن يحملها وأشفقن منها &#8230;.. وحملتها أنا<br />
وسئل حاتم الأصم رحمه الله كيف تخشع في صلاتك ؟؟؟<br />
قال : بأن أقوم فأكبر للصلاة .. وأتخيل الكعبة أمام عيني ..<br />
والصراط تحت قدمي ,, والجنة عن يميني والنار عن شمالي,,<br />
وملك الموت ورائي ,, وأن رسول الله يتأمل صلاتي وأظنها آخر صلاة ,<br />
فأكبر الله بتعظيم وأقرأ وأتدبر وأركع بخضوع<br />
وأسجد بخضوع وأجعل في صلاتي الخوف من الله والرجا في رحمته ثم أسلم ولا أدري<br />
أقبلت أم لا؟؟؟؟؟؟؟؟؟؟؟؟؟؟<br />
يقول سبحانه وتعالى :<br />
<span style="color:#ff0000;">(( ألم يأن للذين آمنوا أن تخشع قلوبهم لذكر الله ))</span><br />
يقول ابن مسعود رضي الله عنه : لم يكن بين إسلامنا وبين نزول هذه الآية إلا أربع سنوات ,,<br />
فعاتبنا الله تعالى فبكينا لقلة خشوعنا لمعاتبة الله لنا &#8230;.<br />
فكنا نخرج ونعاتب بعضنا بعضا نقول:<br />
ألم تسمع قول الله تعالى :<br />
ألم يأن للذين آمنوا أن تخشع قلوبهم لذكر الله &#8230;&#8230;<br />
فيسقط الرجل منا يبكي على عتاب الله لنا<br />
فهل شعرت أنت يا أخي أن الله تعالى يعاتبك بهذه الآية ؟؟؟؟<br />
لا تنظر إلى صغر المعصيه .. ولكن انظر لعظمة من عصيت</h3>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/302/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=302&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2009/12/26/%d9%8a%d8%a3%d8%aa%d9%8a-%d8%b9%d9%84%d9%89-%d8%a7%d9%84%d9%86%d8%a7%d8%b3-%d8%b2%d9%85%d8%a7%d9%86-%d9%8a%d8%b5%d9%84%d9%88%d9%86-%d9%88-%d9%87%d9%85-%d9%84%d8%a7-%d9%8a%d8%b5%d9%84%d9%88%d9%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
		<item>
		<title>call JavaScript &#8211; jQuery code from ASP.NET Server-Side</title>
		<link>http://bagalaty.wordpress.com/2009/12/14/call-javascript-jquery-code-from-asp-net-server-side/</link>
		<comments>http://bagalaty.wordpress.com/2009/12/14/call-javascript-jquery-code-from-asp-net-server-side/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 14:10:08 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[call JavaScript - jQuery code from ASP.NET Server-Side]]></category>
		<category><![CDATA[Client-Side]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Server-Side]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=294</guid>
		<description><![CDATA[jQuery got so close to me lately that I can see myself adding the scripts to my project almost unconsciously. The thing is, jQuery is very useful for me, in almost all situations and it has been a do or die enhancement for all my project since I first put my hands on it. Of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=294&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>jQuery got so close to me lately that I can see myself adding the scripts to my project almost unconsciously. The thing is, jQuery is very useful for me, in almost all situations and it has been a do or die enhancement for all my project since I first put my hands on it.</p>
<p>Of course while using it, you encounter few situations which need a bit of research to solve, mostly when you are trying to combine it with some other technologies like: UpdatePanels and ASP.NET Ajax. For instance there are many situations when I would like to run some jQuery magic based on some decision that I make on the server side.<span id="more-294"></span></p>
<p>It’s not the case to use jQuery ajax calls here, the point is I would like to run some jQuery code after a postback or an asynchronous postback with results coming from the server. This would mean that I’d need to prepare the scripts on the server-side in my code-behind and use RegisterClientScriptBlock to run them on the browser.</p>
<p>The catch is that using ClientScript.RegisterClientScriptBlock simply won’t render your scripts when the request is coming from an AsyncPostbackTrigger of an UpdatePanel. In this case you’ll need to call ScriptManager.RegisterClientScriptBlock.</p>
<p>To solve this automatically I’ve created a method which then handles all the logic that I need for running some JavaScript code after the request has been processed. This method the JavaScript code that needs to run on the browser as a parameter, and encloses within a $(document).ready for sake of this example.</p>
<p>The whole logic sits behind this idea: We need to know if the current request is a standard synchronous Postback or if it is an AJAX Asynchronous Postback from an UpdatePanel. Therefore in my code I check if there is any ScriptManager registered with the Page (in this case ScriptManager.GetCurrent(this), ScriptManager.GetCurrent(Page) will not return null, but we still need to check whether the request was asynchronous by checking the IsAsynchPostback on the ScriptManager instance.</p>
<p>If there is a ScriptManager on the page and the request was Asynchronous, then the JavaScript code needs to be registered with ScriptManager.RegisterClientScriptBlock. If the request is just a simple standard Postback, registering the JavaScript with Page.ClientScript.RegisterClientScriptBlock is the solution.</p>
<p>For sake of this post I’ve created a short example (which you can also download and view at: )</p>
<p><code>private string getjQueryCode(string jsCodetoRun)<br />
{<br />
StringBuilder sb = new StringBuilder();<br />
sb.AppendLine("$(document).ready(function() {");<br />
sb.AppendLine(jsCodetoRun);<br />
sb.AppendLine(" });");</code></p>
<p>return sb.ToString();<br />
}</p>
<p>getjQueryCode is the method that encloses your code that needs to run after the Postback within a jQuery $(document).ready() call.</p>
<p><code><br />
private void runjQueryCode(string jsCodetoRun)<br />
{</code></p>
<p>ScriptManager requestSM = ScriptManager.GetCurrent(this);<br />
if (requestSM != null &amp;&amp; requestSM.IsInAsyncPostBack)<br />
{<br />
ScriptManager.RegisterClientScriptBlock(this,<br />
typeof(Page),<br />
Guid.NewGuid().ToString(),<br />
getjQueryCode(jsCodetoRun),<br />
true);<br />
}<br />
else<br />
{<br />
ClientScript.RegisterClientScriptBlock(typeof(Page),<br />
Guid.NewGuid().ToString(),<br />
getjQueryCode(jsCodetoRun),<br />
true);<br />
}<br />
}</p>
<p>runjQueryCode is the method which handles the logic I talked about earlier. By using this function all over you project respects the DRY principle, of course you can change the way it generates the JavaScript code on the server side, I have created this only for sake of this example.</p>
<p>The markup that is needed for this example is the following:</p>
<p>Please note how the first button is set as a PostBackTrigger. This will force it to reload the whole page (which in term demonstrates how the code works when there is a standard postback) even if it is declared within the UpdatePanel. The second button launches an AJAX request (which in term demonstrates how the runjQueryCode method works while fulfilling and AJAX request).</p>
<p><code><br />
protected void btnPostback_Click(object sender, EventArgs e)<br />
{<br />
runjQueryCode("alert('After a standard postback.')");<br />
}</code></p>
<p>protected void btnAsynchPostback_Click(object sender, EventArgs e)<br />
{<br />
runjQueryCode(&#8220;alert(&#8216;After an asynchronous postback.&#8217;)&#8221;);<br />
}</p>
<p>The click event handlers of the 2 buttons on the form simply call the runjQueryCode method with custom JavaScript code (in this case it’s a simple JavaScript alert).</p>
<p><span style="color:#ff0000;">One very important thing to note is the following:<br />
The rendered script tag needs to be after the script tag that imports the jQuery library. If you use  Collection from the ScriptManager, this could break the code because your scripts from the server side will get rendered before the ScriptManager renders the script tags for the js files you use with the ScriptManager. </span></p>
<p><span style="color:#ff0000;">From : </span>http://blog.dreamlabsolutions.com/post/2009/06/03/run-jQuery-code-from-ASPNET-Server-Side.aspx</p>
<p>Thanks to</p>
<h4>Arnold Matusz</h4>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/294/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=294&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2009/12/14/call-javascript-jquery-code-from-asp-net-server-side/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
		<item>
		<title>xp_cmdshell disabled</title>
		<link>http://bagalaty.wordpress.com/2009/12/10/xp_cmdshell-disabled/</link>
		<comments>http://bagalaty.wordpress.com/2009/12/10/xp_cmdshell-disabled/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 09:02:41 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=288</guid>
		<description><![CDATA[As you are getting up to speed with SQL Server 2005, you might notice that scripts using master.dbo.xp_cmdshell no longer work: Msg 15501, Level 16, State 1, Procedure xp_cmdshell, Line 1 This module has been marked OFF. Turn on &#8216;xp_cmdshell&#8217; in order to be able to access the module. This change is by design and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=288&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As you are getting up to speed with SQL Server 2005, you might notice that scripts using master.dbo.xp_cmdshell no longer work:</p>
<p><span style="color:#ff0000;"> </span></p>
<p>Msg 15501, Level 16, State 1, Procedure xp_cmdshell, Line 1<br />
This module has been marked OFF.  Turn on &#8216;xp_cmdshell&#8217; in order to be able to access the module.</p>
<p>This change is by design and is part of Microsoft&#8217;s overall &#8220;secure by default&#8221; approach. However, the error message is not very helpful in solving the problem, as there is no magic switch in Management Studio to enable this feature. To turn xp_cmdshell functionality back on, use the sa account or another administrator, and issue this code:</p>
<p><span id="more-288"></span></p>
<p><span style="color:#0000ff;">USE master<br />
GO<br />
EXEC sp_configure &#8216;show advanced options&#8217;, 1<br />
GO<br />
RECONFIGURE WITH OVERRIDE<br />
GO<br />
EXEC sp_configure &#8216;xp_cmdshell&#8217;, 1<br />
GO<br />
RECONFIGURE WITH OVERRIDE<br />
GO<br />
EXEC sp_configure &#8216;show advanced options&#8217;, 0<br />
GO</span></p>
<p>Seems like a lot of code.  But if you try this by itself:</p>
<p><span style="color:#0000ff;">EXEC sp_configure &#8216;xp_cmdshell&#8217;, 1</span></p>
<p>You will get this error:</p>
<p><span style="color:#ff0000;">Msg 15123, Level 16, State 1, Procedure sp_configure, Line 50<br />
The configuration option &#8216;xp_cmdshell&#8217; does not exist, or it may be an advanced option.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/288/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/288/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/288/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=288&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2009/12/10/xp_cmdshell-disabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
		<item>
		<title>Some Asp.net Tips with javascript, masterpage , AJAX and jQuery</title>
		<link>http://bagalaty.wordpress.com/2009/12/06/asp-net-tips/</link>
		<comments>http://bagalaty.wordpress.com/2009/12/06/asp-net-tips/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 21:05:59 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[clientid]]></category>
		<category><![CDATA[Id]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[masterpage]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=280</guid>
		<description><![CDATA[1- What is the difference between ID and ClientID For any server control ? both of them is the same in page that don&#8217;t bind with master page the difference will be in the ClientID will be changed and this one is used to deal with java script . Ex: drag and drop one textbox [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=280&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>1- What is the difference between ID and ClientID For any server control ?</strong><br />
<span style="color:#00ff00;">both of them is the same in page that don&#8217;t bind with master page</span><br />
<span style="color:#ff0000;">the difference will be in the ClientID will be changed and this one is used to deal with java script .</span><br />
Ex:<span id="more-280"></span></p>
<p>drag and drop one textbox control in default aspx page without master page</p>
<p>and at load event write :</p>
<p>textbox1.text=&#8221;Some Text Here&#8221;;</p>
<p>textbox1.Attributes["onfocus"] = &#8220;alert(textbox1.value)&#8221;;</p>
<p>and run the page and set focus on the control , you will find the alert message is shown with Some Text Here as a text</p>
<p>it&#8217;s works !!</p>
<p>now take the same code to page binded with masterpage and run the page</p>
<p>you will find the code not work</p>
<p>and the cause is :</p>
<p>textbox1.value is changed</p>
<p>to</p>
<p>ctl00_ContentPlaceHolder1_Text1.value</p>
<p>now change it to the new value and run the code</p>
<p>it&#8217;s works</p>
<p>Mail Me @ <span style="color:#0000ff;">bagalaty@hotmail.com</span></p>
<p>with Subject : Some Asp.net Tips with javascript, masterpage , AJAX and jQuery</p>
<p>to give you sample example, cause i can&#8217;t attach file from here !!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=280&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2009/12/06/asp-net-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
		<item>
		<title>News In SQL 2008</title>
		<link>http://bagalaty.wordpress.com/2009/10/25/news-in-sql-2008/</link>
		<comments>http://bagalaty.wordpress.com/2009/10/25/news-in-sql-2008/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 21:48:58 +0000</pubDate>
		<dc:creator>أبو رحمـــــــة - روح الفـــــؤاد</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[insert statment]]></category>
		<category><![CDATA[new sql feature]]></category>
		<category><![CDATA[sql 2008]]></category>
		<category><![CDATA[sql 2008 feature]]></category>

		<guid isPermaLink="false">http://bagalaty.wordpress.com/?p=267</guid>
		<description><![CDATA[you can run this insert statement : insert into tablename(col1,col2,col3) values(1,&#8221;Ahmed&#8221;,&#8221;Bagalaty&#8221;), (2,&#8221;SQL&#8221;,&#8221;2008&#8243;), (3,&#8221;Rahma&#8221;,&#8221;Bagalaty&#8221;)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=267&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>you can run this insert statement :</p>
<p>insert into tablename(col1,col2,col3)</p>
<p>values(1,&#8221;Ahmed&#8221;,&#8221;Bagalaty&#8221;),</p>
<p>(2,&#8221;SQL&#8221;,&#8221;2008&#8243;),</p>
<p>(3,&#8221;Rahma&#8221;,&#8221;Bagalaty&#8221;)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagalaty.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagalaty.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagalaty.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagalaty.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bagalaty.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bagalaty.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bagalaty.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bagalaty.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagalaty.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagalaty.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagalaty.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagalaty.wordpress.com/267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagalaty.wordpress.com/267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagalaty.wordpress.com/267/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagalaty.wordpress.com&amp;blog=3124414&amp;post=267&amp;subd=bagalaty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bagalaty.wordpress.com/2009/10/25/news-in-sql-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9cc6961f43d159fbde341b166c79c341?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">أبو رحمـــــــة - روح الفـــــؤاد</media:title>
		</media:content>
	</item>
	</channel>
</rss>
