
dotnetgeeks.wordpress.com
Dotnetgeeks's Blog | A .NET Developers' blog.A .NET Developers' blog.
http://dotnetgeeks.wordpress.com/
A .NET Developers' blog.
http://dotnetgeeks.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
0.9 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
12
SSL
EXTERNAL LINKS
0
SITE IP
192.0.78.13
LOAD TIME
0.913 sec
SCORE
6.2
Dotnetgeeks's Blog | A .NET Developers' blog. | dotnetgeeks.wordpress.com Reviews
https://dotnetgeeks.wordpress.com
A .NET Developers' blog.
How to swap two values without using a temporary variable | Dotnetgeeks's Blog
https://dotnetgeeks.wordpress.com/2010/08/13/how-to-swap-two-values-without-using-a-temporary-variable
A NET Developers' blog. August 13, 2010. How to swap two values without using a temporary variable. Posted by dotnetgeeks under AJAX. Int x = 200;. Int y = 300;. Response.Write(Before swap );. Response.Write(x= x ,y= y);. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. August 13, 2010 at 9:46 am.
Copy folder contents to another in C# | Dotnetgeeks's Blog
https://dotnetgeeks.wordpress.com/2010/12/21/copy-folder-contents-to-another-in-c
A NET Developers' blog. December 21, 2010. Copy folder contents to another in C#. Posted by dotnetgeeks under AJAX. Private bool CopyFolderContents(string SourcePath, string DestinationPath). SourcePath = SourcePath.EndsWith(@ )? SourcePath : SourcePath @ ;. DestinationPath = DestinationPath.EndsWith(@ )? DestinationPath : DestinationPath @ ;. If (Directory.Exists(DestinationPath) = false). Foreach (string files in Directory.GetFiles(SourcePath). FileInfo fileInfo = new FileInfo(files);.
Programatically publish website in IIS 7 using C# | Dotnetgeeks's Blog
https://dotnetgeeks.wordpress.com/2010/12/21/programatically-publish-website-in-iis-7-using-c
A NET Developers' blog. December 21, 2010. Programatically publish website in IIS 7 using C#. Posted by dotnetgeeks under AJAX. Private bool PublishWebSite(string SiteName). String siteName = YourSiteName;. String applicationPoolName = ASP.NET v4.0 Classic;. String virtualDirectoryPath = /;. Path to the folder of the published code. String virtualDirectoryPhysicalPath = yourDirectoryPath;. IP address of current machine where the site is to be published. String ipAddress = IpAddressOfServer;. Application&...
Programatically update connectionstring using C# | Dotnetgeeks's Blog
https://dotnetgeeks.wordpress.com/2010/12/21/programatically-update-connectionstring-using-c
A NET Developers' blog. December 21, 2010. Programatically update connectionstring using C#. Posted by dotnetgeeks under AJAX. Private void UpdateConnectionString(string ConfigPath). XmlDocument xmlDocument = new XmlDocument();. XmlNode parentNode = xmlDocument.DocumentElement;. If (parentNode.Name = connectionStrings). Foreach (XmlNode childNode in parentNode.ChildNodes). If (childNode.Name = add & childNode.Attributes[ name. String sqlConnectionString = childNode.Attributes[ connectionString.
Dare to solve – Einstein’s Riddle | Dotnetgeeks's Blog
https://dotnetgeeks.wordpress.com/2010/12/08/dare-to-solve-einsteins-riddle
A NET Developers' blog. December 8, 2010. Dare to solve – Einstein’s Riddle. Posted by dotnetgeeks under AJAX. I encourage anyone to try to solve it using only its logic skills, since it is a very rewarding experience, especially when its creator declared that. 98% of the world population would not be able to solve it. In a town, there are five houses, each painted with a different color. In every house leaves a person of different nationality. Who owns the fishes? The Brit lives in a red house. You are ...
TOTAL PAGES IN THIS WEBSITE
12
DotNetGear
Windows Media Center – Custom Start Menu Strips with WMCCC Wizard. This wizard can create new custom start menu strips for Windows Media Center (Vista/Windows7) and populate them with registered extra programs. Also it is possible to delete the strips. For more information please see these articles:. 8220;Custom Start Strips with WMC Custom Configuration Wizard”. 8220;Creating New Start Menu Strips”. If you have any questions, please leave a comment. Download: WMCCC V1.2.2.0. 22436 KB, 14261 hits).
Musings of a .Net Developer
Musings of a .Net Developer. My trials and tribulations with this fascinating technology. Saturday, March 31, 2012. The term post-PC era seems to crop up everywhere. I first came across the term in an interview of Steve Jobs and Bill Gates back in 2007 at the AllThingsD conference. Since then the term has been in vogue and everybody has an opinion as what it means. Ray Ozzie tried to describe it in a memo back in 2010. The marketing machines at both Microsoft ( link. And Apple ( link. Has no windows and ...
Tech Geek
Monday, February 18, 2008. CheckBox in RadComboBox(MultiSelect RadComboBox). Function stopPropagation(e,CheckBoxControl,ComboBoxControl). Calling the CheckChanged function (parameter: CheckBox Control). To keep the dropdown open. EcancelBubble = true;. To set the ComboBox Text with the Checked ComboBox Text. Var combo = %=RadComboBox1.ClientID % ;. Var str=" ;. For(i=0; i combo.Items.length; i ). Var controlid="RadComboBox1 c" eval(i) " CheckBox";. Var control=document.getElementById(controlid);.
Asp Dot Net Geek Trying To Gain Knowledge And Spread That Knowledge Too | Dot Net Geek
Asp Dot Net Geek Trying To Gain Knowledge And Spread That Knowledge Too. Stay updated via RSS. Export Data To Word Using Asp.net C#. Export Data To PDF Using Asp.net C# (iTextSharp). Custom Date Format with Language using c#. Read Rss feed in c#. Dotnetgeekblog.files.word…. Export Data To Word Using Asp.net C#. Sometimes we require to export our data to doc file. I am explaining you how we can do this using C# . I`ll Give you A Simple Example How You Can Do This. Now i will explain it with 2 approaches :.
.NET Geekette
Thursday, August 1, 2013. One of the aspects of PhoneGap that was completely non-obvious to me when I started experimenting with it was how I could test my PhoneGap apps. It turns out that there are several different ways to test a PhoneGap app depending on where you are in the testing process. Option #1: Using the capabilities of your IDE. Since I'm a .NET Geekette (see what I did there? Option #2: Debugging your Javascript. The "deployed to a URL reachable by your computer" part is the tricky part....
Dotnetgeeks's Blog | A .NET Developers' blog.
A NET Developers' blog. December 30, 2010. ASPNET Webpage goes blank with Javascript alert() : fix. Posted by dotnetgeeks under AJAX. A ASPNET web page goes blank if you inject the javascript alert(); function using the Response.Write from the the code behind. Here is the fix for it. Private void ShowMessage(string message). StringBuilder scriptBuilder = new StringBuilder( script language=’javascript’ function window.onload(){);. ScriptBuilder.Append(alert(‘ message ’););. December 21, 2010. Int PortEndI...
dotNETgeekster | A Developers archive to Sharepoint, Office 365, Microsoft development and anything in between
A Developers archive to Sharepoint, Office 365, Microsoft development and anything in between. Document Generation in Office 365 using Nintex. 8220;Document generation” action in Nintex workflow is one of the new features in Nintex workflow only available on Office 365 for supporting PDF, Word, Excel, Powerpoint generation. With this action I can:. Specify the Template the action is going to use for filling in workflow data. Select the output type. (. DOCX, PPTX, PDF or XLSX. We have our main list “...
Knowledge Transfer
Monday, December 4, 2017. Free layout for ui. Posted by Uday Bhaskar at December 04, 2017. Wednesday, November 15, 2017. A recommended way to install. Is through the npm. Package manager using the following command:. Npm i ng2-typeahead - save. Alternatively, you can download it in a ZIP file. Install the plugin - https:/ www.npmjs.com/package/ng2-typeahead. Posted by Uday Bhaskar at November 15, 2017. Sunday, November 12, 2017. New Angular 5 forms functionality. With the new updateOn. JSONPlaceholder is...
dotnetgeneralinfo.blogspot.com
General Info
Tuesday, December 18, 2007. 1Tier, 2 Tier and 3 Tier Architecture. All the processing is done on only one machine,& number of clients attached to this machine.(MainFrame). 2 Tier Architecture :. Client and Database is on different system. Processing is done at client side. Application layer is at client side. 3 Tier Architecture :. Apart from Application and database layer there is one more layer present at client side.(eg Browser). First tier= presentation tier. Third Tier=Data Tier(Database Server).
Default Parallels Plesk Panel Page
Web Server's Default Page. This page is generated by Parallels Plesk Panel. The leading hosting automation software. You see this page because there is no Web site at this address. You can do the following:. Parallels is a worldwide leader in virtualization and automation software that optimizes computing for consumers, businesses, and Cloud services providers across all major hardware, operating systems, and virtualization platforms. To find out more information. Hypervisor Virtualization technology for.
DNG - ASP.NET
Skip to: site menu. Anything and everything about Microsoft .NET technology . Anything and everything about Microsoft .NET technology . You have not logged in. With the release of .NET framework 2.0 in November 2005, significant and exciting changes have been applied to ASP.NET. A long list of enhancements include close to 50 new web controls including gridview, navigation controls like treeview, menu, site map path , login controls like loginview, ChangePassword, CreateUserWizard, wizard control etc.
SOCIAL ENGAGEMENT