webxpertstalk.blogspot.com
Web Developer: September 2010
http://webxpertstalk.blogspot.com/2010_09_01_archive.html
Monday, September 27, 2010. There are several vital pieces of advice about laying out. Pages that I wish I’d been told before I started making a mess of using. Styles. This isn’t really just a series of tips for beginners to. 1/ Make sure all your elements inherit their typography from the Base Font. You are laying out a page and decide to lay out a dictionary list. Great. Looking good, but when you test it in IE, it is the wrong font. So you put in a. Style to tell it the right font, right? This means y...
webxpertstalk.blogspot.com
Web Developer: Interview Tips
http://webxpertstalk.blogspot.com/2012/09/interview-tips.html
Thursday, September 27, 2012. Purpose of Telephonic Interview:. Telephonic Interview is a tool for the employers to narrow down the pool of applicants who will be invited for Face to Face interview. It is also used to cut down their cost for outstation candidates. It is an effective method to measure candidate’s communication and listening skills. Remember your voice can tell many things about you. Way to success for Telephonic Interviews. Be enthusiastic. Speak confidently, slowly and clearly. Make sure...
webxpertstalk.blogspot.com
Web Developer: August 2010
http://webxpertstalk.blogspot.com/2010_08_01_archive.html
Tuesday, August 24, 2010. Following query will run respective to today’s date. It will return Last Day of Previous Month, First Day of Current Month, Today, Last Day of Previous Month and First Day of Next Month respective to current month. SELECT @mydate = GETDATE(). SELECT CONVERT(VARCHAR(25),DATEADD(dd,-(DAY(@mydate) ,@mydate),101) ,'Last Day of Previous Month'. SELECT CONVERT(VARCHAR(25),DATEADD(dd,-(DAY(@mydate)-1),@mydate),101) AS Date Value,'First Day of Current Month' AS Date Type. First date of ...
webxpertstalk.blogspot.com
Web Developer: September 2012
http://webxpertstalk.blogspot.com/2012_09_01_archive.html
Thursday, September 27, 2012. Disallow space using regular expression validator in asp.net. Here is the full HTML code:. Disallow space using regular expression validator in asp.net. Remove HTML tags from string in C#. Below is the sample code. The string contains HTML tags like below:. String strHtml = ". Br Should not come. But what about this? Will this will come? Protected void btnTest Click(object sender, EventArgs e). String strHtml = ". Br Should not come. But what about this? Will this will come?
webxpertstalk.blogspot.com
Web Developer: June 2012
http://webxpertstalk.blogspot.com/2012_06_01_archive.html
Monday, June 11, 2012. How to make header and footer fixed. To make header and footer fixed, some people fix the height of content part. It may shows fine to their browser, but it might vary on another system with different resolution. So better to fix the header and footer. So if the content has less data, footer will still shown on bottom. If the content has more data, then automatically a scroll bar will be appeared. Here is the css:-. Border-bottom: 2px solid #17047a;. Padding: 5px 0px;.
webxpertstalk.blogspot.com
Web Developer: September 2009
http://webxpertstalk.blogspot.com/2009_09_01_archive.html
Monday, September 14, 2009. New Features of Visual Studio 2008. LINQ essentially is the composition of many standard query operators that allow you to work with data in a more intuitive way regardless. The benefits of using LINQ are significant – Compile time checking C# language queries, and the ability to debug step by step through queries. 2 Expression Blend Support. 3 Windows Presentation Foundation. 4 VS 2008 Multi-Targeting Support. Earlier you were not able to working with .NET 1.1 applica...Previ...
webxpertstalk.blogspot.com
Web Developer: October 2009
http://webxpertstalk.blogspot.com/2009_10_01_archive.html
Friday, October 2, 2009. How to retrieve processorID,Motherboard serial number and MAC address of a PC in C#.net. Add using System.Management; namespace in your application (You can find it in :. Reference - Add reference - .NET tab - System.management). Using System.Management;. On Page Load Event add the following code:-. ManagementObjectSearcher MOS = new ManagementObjectSearcher("Select * From Win32 BaseBoard");. Foreach (ManagementObject getserial in MOS.Get(). Subscribe to: Posts (Atom).
webxpertstalk.blogspot.com
Web Developer: June 2009
http://webxpertstalk.blogspot.com/2009_06_01_archive.html
Saturday, June 6, 2009. Curved corner with CSS. People these days go for more of a soft look to their pages with rounded corners every where. One of the best way of designing rounded corner box is by using div and CSS combination. Here is a sample code for the same. Inside the body tag write as follows. Just change the color according to your requirement. Subscribe to: Posts (Atom). Curved corner with CSS. Watermark template. Powered by Blogger.
webxpertstalk.blogspot.com
Web Developer: Disallow space using regular expression validator in asp.net
http://webxpertstalk.blogspot.com/2012/09/disallow-space-using-regular-expression.html
Thursday, September 27, 2012. Disallow space using regular expression validator in asp.net. Here is the full HTML code:. Disallow space using regular expression validator in asp.net. Subscribe to: Post Comments (Atom). Disallow space using regular expression validator . Remove HTML tags from string in C#. Watermark template. Powered by Blogger.
webxpertstalk.blogspot.com
Web Developer: December 2010
http://webxpertstalk.blogspot.com/2010_12_01_archive.html
Thursday, December 9, 2010. FCK Editor not working with Update Panel. There is compatibility issue of FCK Editor with Update Panel, because both use AJAX plugin. To run it properly we need to register FCK Editor on page load. For ( var i = 0; i. But problem is that, if we have multiple number of FCK Editor, then we have to register all FCK Editor. To solve this issue, I discovered a simple C# code, which will find all FCK Editor present inside Update Panel and register them all automatically.
SOCIAL ENGAGEMENT