<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Free For All</title><link>http://forums.asp.net/12.aspx</link><description>Unmoderated open discussions for anything concerning Microsoft .NET and related technologies.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Notepad encoding Issue</title><link>http://forums.asp.net/thread/3520599.aspx</link><pubDate>Wed, 18 Nov 2009 22:32:46 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3520599</guid><dc:creator>Syerneni84</dc:creator><author>Syerneni84</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3520599.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3520599</wfw:commentRss><description>&lt;p&gt;Does any body had this problem before. Notepad is displaying garbage. Notepad is viewed as wordpad can see data and also when it is converted to unicode text file. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Can any one advise on this. How to resolve this problem ?&lt;/p&gt;</description></item><item><title>Trying to Implement Google Maps on my Site</title><link>http://forums.asp.net/thread/3540535.aspx</link><pubDate>Tue, 01 Dec 2009 00:16:09 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3540535</guid><dc:creator>ryguy7272</dc:creator><author>ryguy7272</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3540535.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3540535</wfw:commentRss><description>&lt;p&gt;The title pretty much says it all.&amp;nbsp; I’m trying get Google maps working on my
site.&amp;nbsp; Here is a sample page:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://pubcrawlnyc.com/Boston.aspx"&gt;http://pubcrawlnyc.com/Boston.aspx&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I would love to figure out a way to click on each item in
the list (which consists of pubs and addresses) and display the address in
Google maps, such as this.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=219+Second+Avenue,+ny,+ny&amp;amp;sll=37.0625,-95.677068&amp;amp;sspn=45.688268,80.595703&amp;amp;ie=UTF8&amp;amp;hq=&amp;amp;hnear=219+2nd+Ave,+New+York,+10003&amp;amp;z=16"&gt;http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=219+Second+Avenue,+ny,+ny&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Eventually, I’d like to display all addresses in the list
simultaneously, with directions, such as this:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://maps.google.com/maps?f=d&amp;amp;source=s_d&amp;amp;saddr=219+2nd+Ave,+New+York,+NY+10003&amp;amp;daddr=225+W.+4th+Street,+New+York,+NY+to:337+Third+Avenue,+New+York,+ny+to:1701+Second+Avenue,+New+York,+ny&amp;amp;geocode=FbaFbQId5RGX-ylLKN9dnlnCiTGh69Rh3jssug%3BFayNbQIdH86W-ynna5BvlFnCiTGxx3DOcq4lHg%3BFSWkbQId7R-X-ykX_BMcClnCiTFV9G9isWOrZA%3B&amp;amp;hl=en&amp;amp;mra=ls&amp;amp;sll=40.73727,-73.992615&amp;amp;sspn=0.021461,0.039353&amp;amp;ie=UTF8&amp;amp;z=13"&gt;http://maps.google.com/maps?f=d&amp;amp;source=s_d&amp;amp;saddr=219+2nd+Ave,+New+York,+NY+10003&amp;amp;daddr=225+W.+4th+Street,+New+York,+NY+to:337+Third+Avenue,+New+York,+ny+to:1701+Second+Avenue,+New+York,+ny&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I guess I can hard-code it, because there aren’t too many
that I need to do, but I’d really like to figure out how to do this
dynamically, so if I add a few addresses to my SQL Server DB, the items will
automatically be represented in the Google map.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I found this script online; seems pretty useful but I&amp;#39;m not sure how to implement it:&lt;/p&gt;&lt;p&gt;&lt;pre name="code" class="vb.net"&gt;	&amp;lt;script language=&amp;quot;JavaScript&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;
 		function getMap(add, zip)
		{
			var url = &amp;quot;map.asp?add=&amp;quot;+escape(add)+&amp;quot;&amp;amp;zip=&amp;quot;+escape(zip)+&amp;quot;&amp;amp;city=NYC&amp;amp;state=NY&amp;quot;;
			window.open(url, &amp;quot;YahooMap&amp;quot;, &amp;quot;toolbar=no,resizable=no,menubar=no,location=no,scrollbars=no,width=500,height=400&amp;quot;);
 	 	}
	 
	 	function getGoogleMap(add, zip, city, mystate)
		{
			var url = &amp;quot;googlemap.asp?add=&amp;quot;+escape(add)+&amp;quot;&amp;amp;zip=&amp;quot;+escape(zip)+&amp;quot;&amp;amp;city=&amp;quot;+escape(city)+&amp;quot;&amp;amp;state=&amp;quot;+escape(mystate);
			window.open(url, &amp;quot;GoogleMap&amp;quot;, &amp;quot;toolbar=no,resizable=no,menubar=no,location=no,scrollbars=no,width=500,height=400&amp;quot;);
 	 	}
	&amp;lt;/script&amp;gt;
&lt;/pre&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I’d sincerely appreciate any/all help with this.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;
Ryan--- &lt;/p&gt;</description></item><item><title>Recognizing Website by Search Engines</title><link>http://forums.asp.net/thread/3535734.aspx</link><pubDate>Fri, 27 Nov 2009 09:30:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3535734</guid><dc:creator>QUL001</dc:creator><author>QUL001</author><slash:comments>5</slash:comments><comments>http://forums.asp.net/thread/3535734.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3535734</wfw:commentRss><description>&lt;p&gt;Hi, does anyone have some tips as to maximizing the probability of finding my website (or even finding my website at all) by entering key words in a search engine?&amp;nbsp; I have entered a variety of specific key word combinations from my site and it is not located by a search.&amp;nbsp; Questions:&lt;/p&gt;
&lt;p&gt;Does time need to elapse from the update of a site (my site is new) until it would be included in search engine results?&lt;/p&gt;
&lt;p&gt;Does having key words on a web page imbedded in graphics on a web page vs. words entered directly on the ASP.net web page form make a difference in being recognized? &lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;</description></item><item><title>Improve the performance of the web site</title><link>http://forums.asp.net/thread/3541559.aspx</link><pubDate>Tue, 01 Dec 2009 12:21:20 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3541559</guid><dc:creator>wanttobe</dc:creator><author>wanttobe</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3541559.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3541559</wfw:commentRss><description>&lt;p&gt;Hi all,&lt;/p&gt;&lt;p&gt;I want to improve the performance of a web site. So I read several articles about that, and found serveral key points. Actually that&amp;#39;s not the exact point I want to discuss this time (later on i&amp;#39;m looking to discuss with you all :) )&lt;/p&gt;&lt;p&gt;What I want to know is how i can measuer the performance of the currect site. I found one analyzer here.&lt;/p&gt;&lt;p&gt;&lt;a title="Web Page Analyzer" href="http://www.websiteoptimization.com/services/analyze/"&gt;http://www.websiteoptimization.com/services/analyze/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I&amp;#39;ve validate my site with this, but don&amp;#39;t know the status of this. Anyone of you using this? Or any other solution for me.&lt;/p&gt;&lt;p&gt;Thanks all&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Fax in ASP.NET</title><link>http://forums.asp.net/thread/3541462.aspx</link><pubDate>Tue, 01 Dec 2009 11:10:27 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3541462</guid><dc:creator>khanwasim07</dc:creator><author>khanwasim07</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3541462.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3541462</wfw:commentRss><description>&lt;p&gt;hi can i send message to fax machine from &lt;/p&gt;
&lt;p&gt;my asp.net web site &lt;/p&gt;
&lt;p&gt;please provide me any suitable link&amp;nbsp;&lt;/p&gt;</description></item><item><title>Shopping Cart</title><link>http://forums.asp.net/thread/3541627.aspx</link><pubDate>Tue, 01 Dec 2009 12:57:40 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3541627</guid><dc:creator>prog.mukesh</dc:creator><author>prog.mukesh</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3541627.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3541627</wfw:commentRss><description>&lt;p&gt;Hello Guys,&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I am creating shopping cart web site.How can i do it using paypal services?&lt;/p&gt;&lt;p&gt;please let me know the full concept .&lt;br /&gt;&lt;/p&gt;</description></item><item><title>asp.net website run in IIS</title><link>http://forums.asp.net/thread/3541370.aspx</link><pubDate>Tue, 01 Dec 2009 10:20:03 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3541370</guid><dc:creator>bharatpatel0005</dc:creator><author>bharatpatel0005</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3541370.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3541370</wfw:commentRss><description>&lt;p&gt;&lt;/p&gt;&lt;p&gt;when i run my website in iis at that time it gives &amp;quot;SERVER APPLICATION UNAVIALABLE&amp;quot; errors and i found in event viewers in that aspnet_wp.exe is stopped.how to start aspnet_wp.exe&lt;/p&gt;&lt;p&gt;plz help me............&lt;br /&gt;&lt;/p&gt;&lt;p&gt;i am waiting for your reply.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;thanks&lt;/p&gt;&lt;p&gt;bharat&lt;br /&gt;&lt;/p&gt;</description></item><item><title>the Same  - Photo Album</title><link>http://forums.asp.net/thread/3541612.aspx</link><pubDate>Tue, 01 Dec 2009 12:53:07 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3541612</guid><dc:creator>silu44</dc:creator><author>silu44</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3541612.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3541612</wfw:commentRss><description>&lt;p&gt;&lt;b&gt;i have the same question that previuos user posted it &lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;I Need Photo Gallery Section on my website. There
are at least 50 Albums &amp;amp; Each Albums has 10 images.I do not know
which methd to use for programming photo gallery section.&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Them important thing is that the amount of image files are variable for each album. I do not know whether I should:&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;1- Upload them via web form.(then /I do not know the amount of Upload Fields)&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;2-Use FTP to upload them and then Enter the Album name in webform&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;
**-What method does the professional developers use&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description></item><item><title>Local Search Engine implementation in .NET platform</title><link>http://forums.asp.net/thread/3541521.aspx</link><pubDate>Tue, 01 Dec 2009 11:43:38 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3541521</guid><dc:creator>hajan</dc:creator><author>hajan</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3541521.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3541521</wfw:commentRss><description>&lt;p&gt;Dear Friends, Colleagues and Experts,&lt;/p&gt;&lt;p&gt;I&amp;#39;m currently preparing myself to start working on building lightweight library for Local Search Engine implementation in .NET platform.&lt;/p&gt;&lt;p&gt;This library will serve for an frontend local website that will be able to act as a Search Engine for document files (.doc, .docx), excell files, pdf files, text files etc.&lt;/p&gt;&lt;p&gt;I have took a look at the Lucene implementation &lt;a target="_blank" href="http://incubator.apache.org/lucene.net/"&gt;http://incubator.apache.org/lucene.net/&lt;/a&gt; - download:&lt;a target="_blank" href="http://sourceforge.net/projects/nlucene/"&gt; http://sourceforge.net/projects/nlucene/&lt;/a&gt; but mainly I want to build much simpler Search Engine that will use mix of ASP.NET , C#.NET, Javascript and JQuery libraries.&lt;/p&gt;&lt;p&gt;I said much simpler Search Engine because Lucene has a lot of functionalities, optimization methods etc etc which I don&amp;#39;t need for the very beginning of the project because the main idea is to search tru directories, find objects, create search indexes and retrieve data using Natural Language Processing techniques, Data Mining techniques etc.&lt;/p&gt;&lt;p&gt;What I want now is to hear for some ideas from your side...&lt;/p&gt;&lt;p&gt;Maybe it will be good if someone points me to some more open source search engine implementations in .NET...&lt;/p&gt;&lt;p&gt;All in all, I would be glad if you just post your ideas...&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Any idea, thought or post reply to my post will be highly appreciated.&lt;/p&gt;&lt;p&gt;Thanks,&lt;br /&gt;Hajan&lt;br /&gt;&lt;/p&gt;</description></item><item><title>How to Execute FFMpeg</title><link>http://forums.asp.net/thread/1763268.aspx</link><pubDate>Wed, 20 Jun 2007 10:31:41 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1763268</guid><dc:creator>arinhere</dc:creator><author>arinhere</author><slash:comments>16</slash:comments><comments>http://forums.asp.net/thread/1763268.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=1763268</wfw:commentRss><description>&lt;p&gt;Hello Everybody,&lt;/p&gt;&lt;p&gt;&amp;nbsp;Can anybody tell me how to execute ffmpeg to convert video file to flv. There is command available in PHP&amp;nbsp; &lt;b&gt;(&amp;quot;EXEC&amp;quot;) &lt;/b&gt;which execute ffmpeg.&lt;/p&gt;&lt;p&gt;Is there any available method in .NET like &lt;b&gt;&amp;quot;EXEC&amp;quot;.&lt;/b&gt;&lt;/p&gt;&lt;p&gt;I&amp;#39;ve converted the video using MediaHandler &lt;b&gt;http://www.iepak.com/2/TopicDetail.aspx. &lt;/b&gt;But it&amp;#39;s not a free Module.That&amp;#39;s why i&amp;#39;m trying to use the &lt;b&gt;&amp;quot;EXEC&amp;quot; &lt;/b&gt;like method.&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;u&gt;Code in PHP :&lt;/u&gt; exec(ffmpeg -i input.avi -b 64k output.flv)&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Waiting 4 your valuable suggestion. Code will be very much helpfull.&lt;/p&gt;&lt;p&gt;Thanks in advance...&lt;/p&gt;&lt;p&gt;Regards-Arindam&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Onrowcreated</title><link>http://forums.asp.net/thread/3452698.aspx</link><pubDate>Mon, 12 Oct 2009 02:34:28 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3452698</guid><dc:creator>wmec</dc:creator><author>wmec</author><slash:comments>44</slash:comments><comments>http://forums.asp.net/thread/3452698.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3452698</wfw:commentRss><description>&lt;p&gt;Hi,&lt;br /&gt;Is there one working example for the captioned event for one gridview as I&amp;#39;m with the following error using the event below.&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Stackoverflowexception&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void gv_ins(object sender, GridViewRowEventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gv1.DataBind();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;I do expect to be able to create one new record there&lt;/p&gt;</description></item><item><title>Desktop app control browser</title><link>http://forums.asp.net/thread/3539928.aspx</link><pubDate>Mon, 30 Nov 2009 16:58:50 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3539928</guid><dc:creator>JCDoc</dc:creator><author>JCDoc</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/3539928.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3539928</wfw:commentRss><description>&lt;p&gt;Is there some example code that demonstrates a desktop app passing data to or otherwsie controlling a browser&amp;nbsp;instance?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;jcDoc&lt;/p&gt;</description></item><item><title>finding time difference in asp.net</title><link>http://forums.asp.net/thread/3540770.aspx</link><pubDate>Tue, 01 Dec 2009 04:30:21 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3540770</guid><dc:creator>tracy6001</dc:creator><author>tracy6001</author><slash:comments>10</slash:comments><comments>http://forums.asp.net/thread/3540770.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3540770</wfw:commentRss><description>&lt;p&gt;hi,&lt;/p&gt;
&lt;p&gt;i am having two textboxes in which i am giving two times in 24hr format..&lt;/p&gt;
&lt;p&gt;in the third textbox i would like to have a display of the time difference..&lt;/p&gt;
&lt;p&gt;here is my codings..&lt;/p&gt;
&lt;p&gt;i tried to subtract 04:30:00 from 17:00:00..but it is giving a display of 12:00:00 AM..&lt;/p&gt;
&lt;p&gt;pls help me out..&lt;/p&gt;
&lt;p&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/span&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;&lt;span class="" style="FONT-SIZE:x-small;COLOR:#0000ff;FONT-FAMILY:;"&gt;Dim&lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt; date1 &lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;COLOR:#0000ff;FONT-FAMILY:;"&gt;As&lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt; &lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;COLOR:#0000ff;FONT-FAMILY:;"&gt;Date&lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt; &lt;font size="2"&gt;
&lt;p&gt;&amp;nbsp;&lt;/font&gt;&lt;/p&gt;&lt;/span&gt;
&lt;p&gt;&lt;/p&gt;&lt;span class="" style="FONT-SIZE:x-small;COLOR:#0000ff;FONT-FAMILY:;"&gt;Dim&lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt; date2 &lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;COLOR:#0000ff;FONT-FAMILY:;"&gt;As&lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt; &lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;COLOR:#0000ff;FONT-FAMILY:;"&gt;Date&lt;/span&gt;
&lt;p&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt; 
&lt;p&gt;TextBox1.Text = date1&lt;/p&gt;
&lt;p&gt;TextBox2.Text = date2&lt;/p&gt;&lt;font size="2"&gt;
&lt;p&gt;&amp;nbsp;&lt;/font&gt;&lt;/p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;span class="" style="FONT-SIZE:x-small;COLOR:#0000ff;FONT-FAMILY:;"&gt;Dim&lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt; interval &lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;COLOR:#0000ff;FONT-FAMILY:;"&gt;As&lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt; TimeSpan = date1 - date2&lt;/span&gt;&lt;/p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt;&lt;font size="2"&gt;
&lt;p&gt;Console.WriteLine(&lt;/font&gt;&lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;COLOR:#a31515;FONT-FAMILY:;"&gt;&amp;quot;{0} - {1} = {2}&amp;quot;&lt;/span&gt;&lt;span class="" style="FONT-SIZE:x-small;FONT-FAMILY:;"&gt;, date2, date1, interval.ToString())&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</description></item><item><title>Transferring parameters to Google Maps</title><link>http://forums.asp.net/thread/3540767.aspx</link><pubDate>Tue, 01 Dec 2009 04:28:56 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3540767</guid><dc:creator>STEVE.com</dc:creator><author>STEVE.com</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/3540767.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3540767</wfw:commentRss><description>&lt;p&gt;I have a database with several real estate listings.&amp;nbsp; I want to add a map feature from Google (or any other mapping site).&amp;nbsp; I&amp;#39;m not sure how to do it.&amp;nbsp;&lt;/p&gt;</description></item><item><title>research topic</title><link>http://forums.asp.net/thread/3540750.aspx</link><pubDate>Tue, 01 Dec 2009 04:12:50 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3540750</guid><dc:creator>laknath27</dc:creator><author>laknath27</author><slash:comments>5</slash:comments><comments>http://forums.asp.net/thread/3540750.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3540750</wfw:commentRss><description>&lt;p&gt;Anyone have an idea for the research project?i need to get a idea 4da research....&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Hotel Search with Kayak Hotel Search API</title><link>http://forums.asp.net/thread/3417989.aspx</link><pubDate>Tue, 22 Sep 2009 06:07:17 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3417989</guid><dc:creator>manish_partey</dc:creator><author>manish_partey</author><slash:comments>4</slash:comments><comments>http://forums.asp.net/thread/3417989.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3417989</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I am developing a Travel Networking web site.&lt;/p&gt;&lt;p&gt;I have done flight and hotel search using the kayak api.&lt;/p&gt;&lt;p&gt;while in hotel search i am getting all the info&lt;/p&gt;&lt;p&gt;but i am unable to find any information related to Images for the hotels searched&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Please suggest me how to get images of the hotels searched.&lt;/p&gt;&lt;p&gt;Thanks&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Make Exe and bind in printer driver combo.</title><link>http://forums.asp.net/thread/3540920.aspx</link><pubDate>Tue, 01 Dec 2009 06:02:29 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3540920</guid><dc:creator>khushboo_Nayak</dc:creator><author>khushboo_Nayak</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3540920.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3540920</wfw:commentRss><description>&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;I want &amp;nbsp;to make one exe and bind exe in printer driver combo. Whenever I open any document&amp;nbsp;and give print command then my exe should be displyed in list of printer driver and I can select my exe and that exe should be executed.Is it possible?&lt;/p&gt;
&lt;p&gt;Any help will be appriciated.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Khushboo Nayak&lt;/p&gt;</description></item><item><title>World maps</title><link>http://forums.asp.net/thread/3533810.aspx</link><pubDate>Thu, 26 Nov 2009 06:29:23 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3533810</guid><dc:creator>trying_to_Master_ASP</dc:creator><author>trying_to_Master_ASP</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3533810.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3533810</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;I want to use Maps and add some markers on it. Google maps charges if the request is behind the login page. Can any one provide me&amp;nbsp; a free API so that i can use it for my requirement.&lt;/p&gt;</description></item><item><title>Having doubts over windows service</title><link>http://forums.asp.net/thread/3536818.aspx</link><pubDate>Sat, 28 Nov 2009 05:51:41 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3536818</guid><dc:creator>Sunilsachdeva</dc:creator><author>Sunilsachdeva</author><slash:comments>9</slash:comments><comments>http://forums.asp.net/thread/3536818.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3536818</wfw:commentRss><description>&lt;p&gt;Hello everyone,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Can any one tell me when we go to develop a windows service what role does the service account play? If i give account of the computer administrator what can be the drawbacks??? What is the difference between Local system account and administartor account(in terms of privileges)??? Thanks in advance,&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Video Conversion &amp; Playing</title><link>http://forums.asp.net/thread/3539532.aspx</link><pubDate>Mon, 30 Nov 2009 12:38:44 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3539532</guid><dc:creator>JawadHasan</dc:creator><author>JawadHasan</author><slash:comments>3</slash:comments><comments>http://forums.asp.net/thread/3539532.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3539532</wfw:commentRss><description>&lt;p&gt;Dear Friends.&lt;/p&gt;
&lt;p&gt;I want my users to&amp;nbsp;Upload&amp;nbsp;video files (more than 1 format) then i want to process those files to convert in &lt;strong&gt;flv&lt;/strong&gt;&amp;nbsp;format and to display it for&amp;nbsp;further viewing.&lt;/p&gt;
&lt;p&gt;I have implemented this funcationality using &lt;strong&gt;ffmpeg&lt;/strong&gt; TOOL&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.muzaffargarh.biz/Education.aspx"&gt;http://www.muzaffargarh.biz/Education.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;But&amp;nbsp;my webhost didnot allow ffmpeg tool to execute on the server (i have windows hosting plan).&amp;nbsp;I&amp;nbsp;am looking for some &lt;strong&gt;free tool&lt;/strong&gt; to get same conversion functionality.&amp;nbsp;I shall be very thankful to you guys for guiding me towards any other tool/resource/tutorial&amp;nbsp; etc.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Cannot create ActiveX component.</title><link>http://forums.asp.net/thread/3534599.aspx</link><pubDate>Thu, 26 Nov 2009 14:51:38 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3534599</guid><dc:creator>galaxy_thestars39</dc:creator><author>galaxy_thestars39</author><slash:comments>3</slash:comments><comments>http://forums.asp.net/thread/3534599.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3534599</wfw:commentRss><description>&lt;p&gt;&lt;span&gt;Hello,
&lt;br /&gt;
&lt;br /&gt;
I receive this error, when I try to read word document using asp.net and OpenOffice.
&lt;br /&gt;
&lt;br /&gt;
My code:
&lt;br /&gt;
&lt;br /&gt;
Dim oSM As Object                  &amp;#39;Root object for accessing OpenOffice from VB
&lt;br /&gt;
        Dim oDesk, oDoc As Object &amp;#39;First objects from the API
&lt;br /&gt;
        Dim _args As System.Array
&lt;br /&gt;
        Dim objDummy As Object = New Object
&lt;br /&gt;
        _args = System.Array.CreateInstance(objDummy.GetType, 0)
&lt;br /&gt;
        objDummy = Nothing &amp;#39; free ressource 
&lt;br /&gt;
        oSM = CreateObject(&amp;quot;com.sun.star.ServiceManager&amp;quot;)
&lt;br /&gt;
        oDesk = oSM.createInstance(&amp;quot;com.sun.star.frame.Desktop&amp;quot;)
&lt;br /&gt;
        oDoc = oDesk.loadComponentFromURL(&amp;quot;file:///&amp;quot; &amp;amp; filepath, &amp;quot;_blank&amp;quot;, 0, _args)
&lt;br /&gt;
&lt;br /&gt;
Any help will be appreciated. Thanks&lt;/span&gt;&lt;/p&gt;</description></item><item><title>ScriptSharp</title><link>http://forums.asp.net/thread/3461763.aspx</link><pubDate>Fri, 16 Oct 2009 12:00:35 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3461763</guid><dc:creator>Marcus Vinitius Baffa</dc:creator><author>Marcus Vinitius Baffa</author><slash:comments>34</slash:comments><comments>http://forums.asp.net/thread/3461763.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3461763</wfw:commentRss><description>&lt;p&gt;Hi, &lt;/p&gt;
&lt;p&gt;A few months ago a thread (&lt;a href="http://forums.asp.net/t/1393485.aspx)%20was"&gt;http://forums.asp.net/t/1393485.aspx) &lt;/a&gt;&amp;nbsp;was talking about broken links of &amp;nbsp;Script#. As far as I could see Script# is alive and it was used to develop MicrosoftMvcAjax.js.&lt;/p&gt;
&lt;p&gt;I am a C# programmer and in my first ASP.NET MVC aplication I would like to use Script# but&amp;nbsp;there are very few tutorials and examples. The manual is good but&amp;nbsp;I could not find the codeplex site and&amp;nbsp;there is no specific Forums to discuss.&lt;/p&gt;
&lt;p&gt;The Script# framework is very rich but I could not find any tutorial to ScriptFX.UI, UI.Forms, etc. The roadmap is telling the in 2009 there will be&amp;nbsp;the release of version 1.0 with jQuery integration. Well we are already in October.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And ASP.NET MVC no examples and tutorials.&lt;/p&gt;
&lt;p&gt;I would like to ask you: &lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Are you working with Script# in your projects ???? &lt;/li&gt;
&lt;li&gt;Can we be sure that Script# Projetcs will be avaiable for VS 2010 ???&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Is Script# only to used internally in Microsoft ????&lt;/li&gt;
&lt;li&gt;Is there any other documentation, tutorials and examples in some place I could not find ???&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;Script# seems fantastic but I need more resources to go on.&amp;nbsp;Can you help me &amp;nbsp;???&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Commercial Asp.Net development guidance</title><link>http://forums.asp.net/thread/3540026.aspx</link><pubDate>Mon, 30 Nov 2009 18:19:55 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3540026</guid><dc:creator>dbstrat</dc:creator><author>dbstrat</author><slash:comments>2</slash:comments><comments>http://forums.asp.net/thread/3540026.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3540026</wfw:commentRss><description>&lt;p&gt;Hi.&amp;nbsp; I am looking for any guidance (meaning resources, blogs, forums, whitepapers, words or encouragement &lt;img src="http://forums.asp.net/tiny_mce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif" alt="Wink" title="Wink" border="0" /&gt;) from/for people involved in developing commercial software based on Asp.Net.&amp;nbsp; I work at an ISV and we are porting an expansive COM-based application over to the web.&amp;nbsp; Most of our clients will be installing this software on-site.&amp;nbsp; As I&amp;#39;m going along it is becoming obvious that a great deal of the guidance out there for .Net developers and specifically Asp.Net guidance is really geared toward internal or enterprise use where the software is deployed in the same infrastructure where it is developed.&lt;/p&gt;&lt;p&gt;I can&amp;#39;t find, for instance, guidance on best practice for deploying a web application to a customer&amp;#39;s network, or further on the best way to design and deploy new versions.&amp;nbsp; All of the deployment guidance to me seems to assume that you own the entire environment which is not the case for our applications.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Is there some other community out there that is geared toward ISV&amp;#39;s and their web applications?&lt;br /&gt;&lt;/p&gt;</description></item><item><title>change page title in dotnetnuke</title><link>http://forums.asp.net/thread/3539833.aspx</link><pubDate>Mon, 30 Nov 2009 15:41:16 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3539833</guid><dc:creator>gslakmal</dc:creator><author>gslakmal</author><slash:comments>1</slash:comments><comments>http://forums.asp.net/thread/3539833.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3539833</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;How can i change page title in dotnetnuke site. This wont work&lt;/p&gt;&lt;p&gt;this.Page.Title = rdr[&amp;quot;Title&amp;quot;].ToString();&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;lakmal&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div id="refHTML"&gt;&lt;/div&gt;</description></item><item><title>dual monitors:  faster development or a waste of time?</title><link>http://forums.asp.net/thread/3122184.aspx</link><pubDate>Mon, 27 Apr 2009 15:15:09 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3122184</guid><dc:creator>gerrylowry</dc:creator><author>gerrylowry</author><slash:comments>7</slash:comments><comments>http://forums.asp.net/thread/3122184.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=12&amp;PostID=3122184</wfw:commentRss><description>&lt;p&gt;Hello,&amp;nbsp; I&amp;#39;m having a debate with my spouse ....&lt;br /&gt;&lt;br /&gt;some computers allow a second monitor.&lt;br /&gt;&lt;br /&gt;most laptops also do this:&amp;nbsp; plug a second monitor&lt;br /&gt;into your laptop and your options are usually&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; laptop only,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; monitor only, and&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; both.&lt;br /&gt;&lt;br /&gt;A second monitor since Windows 2000 (?)&lt;br /&gt;&amp;nbsp; &amp;nbsp;{and forever with Macs AFAIK}&lt;br /&gt;can be an extension of your desktop ... example,&lt;br /&gt;you can show your e-mail on one monitor while&lt;br /&gt;creating code on the second.&amp;nbsp; Or, for web design,&lt;br /&gt;you can have your code on one display and&lt;br /&gt;your browser showing your rendered code on the other.&lt;br /&gt;&lt;br /&gt;Also, I like to have one monitor display the Microsoft tutorials&lt;br /&gt;while doing hands on in Visual Studio on the other monitor.&lt;br /&gt;&lt;br /&gt;Not long ago, while working at our kitchen table on my&lt;br /&gt;laptop, I dragged a second monitor to the table to try&lt;br /&gt;and boost my productivity.&amp;nbsp; My spouse thought I was&lt;br /&gt;being ridiculous and strongly believes that there&amp;#39;s no&lt;br /&gt;benefit to a second monitor when you can simply use&lt;br /&gt;ALT+TAB;&amp;nbsp;one does also have to ALT+TAB to control&lt;br /&gt;whatever is on the second monitor.&lt;br /&gt;&lt;br /&gt;What&amp;#39;s your opinion:&amp;nbsp; &lt;strong&gt;&lt;em&gt;two monitors&lt;/em&gt;&lt;/strong&gt; or &lt;strong&gt;&lt;em&gt;not two monitors?&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Gerry (Lowry)&lt;/p&gt;</description></item></channel></rss>