yousefla

Stories kicked by yousefla

CSS Mirror to convert free templates for RTL Web sites(mycsharpcorner.com)

submitted by youseflayousefla(675) 3 years, 10 months ago

A quick tool to convert free CSS templates from Left-To-Right into Right-To-Left , very usefull when developing sites with Right-To-Left Design read more...

1 comment |category: |Views: 592

tags: another

Applying column formulas in Excel(mycsharpcorner.com)

submitted by youseflayousefla(675) 3 years, 10 months ago

How to copy a formula to the whole column values in Excel read more...

add a comment |category: |Views: 48

tags: another

RegEx to extract __VIEWSTATE from the Login page HttpWebRequest (mycsharpcorner.com)

submitted by youseflayousefla(675) 3 years, 11 months ago

Here is a quick one line code to extract __VIEWSTATE hidden form field from the ASP.NET Login page. This comes in handy during web automation of the ASP.NET form authentication. read more...

add a comment |category: |Views: 112

tags: another

A better way to string.split using RegEx(mycsharpcorner.com)

submitted by youseflayousefla(675) 3 years, 11 months ago

An example to use RegEx to split a string in C# read more...

add a comment |category: |Views: 60

tags: another

Algorithm #105(mycsharpcorner.com)

submitted by youseflayousefla(675) 4 years, 1 month ago

What's the best way to cut small pieces of paper out of a larger piece while keeping paper scrape to a minimum? read more...

add a comment |category: |Views: 9

tags: another

Hide automatically generated columns in GridView(mycsharpcorner.com)

submitted by youseflayousefla(675) 4 years, 5 months ago

Here is how to hide an automatically generated column in GridView read more...

add a comment |category: |Views: 31

tags: another

DateTime.ToString() Patterns(geekzilla.co.uk)

submitted by phaymanphayman(3550) 4 years, 11 months ago

Handy list of DateTime.ToString() patterns. Bookmark it ;-) read more...

add a comment |category: |Views: 60

tags: another

Using HttpRuntime to get the web application absolute path(mycsharpcorner.com)

submitted by youseflayousefla(675) 4 years, 11 months ago

We all know in ASP.NET, to get the absolute path from the relative path, you can prefix your relative path with the Tilde character as follows: MyHyperLink.NavigateUrl = "~/Catalog/ASP/Products"; read more...

add a comment |category: |Views: 18

tags: another

Wild card % does not work in MS Access for LIKE SQL statement(mycsharpcorner.com)

submitted by youseflayousefla(675) 5 years ago

Using LIKE statement in an SQL query requires specifying wild cards in the search pattern. In C# .NET, the wild card is %, however if you are building your SQL query directly from MS Access, I found out you need to use ... read more...

add a comment |category: |Views: 34

tags: another

Free C# & ASP.NET Utilities from www.mycsharpcorner.com(mycsharpcorner.com)

submitted by youseflayousefla(675) 5 years ago

Here is a digest of all free utilities & user controls for the month of Arpil developed on www.mycsharpcorner.com site. Enjoy! ... read more...

add a comment |category: |Views: 5

tags: another

301 Moved Permanently Redirect in ASP.NET(mycsharpcorner.com)

submitted by youseflayousefla(675) 5 years, 1 month ago

If you have done SEO work, you know that Search Engines would penalize my site if both http://www.mycsharpcorner.com and http://mycsharpcorner.com/ requests returned a 200 OK code in the HTTP header. Why? Because from a Search Engine's spider point of view... read more...

1 comment |category: |Views: 78

tags: another

A managed code C# alternative for the Native FindWindow(mycsharpcorner.com)

submitted by youseflayousefla(675) 5 years, 1 month ago

A cleaner C# alternative to loading Native Win 32 DLL and invoking FindWindow to get to another process's window handle, is to use the Process class in C#. You can also use it to close another window, and even get the window's text... read more...

add a comment |category: |Views: 840

tags: another

Socialize your ASP.NET Pages - A Free Social Links User Control(mycsharpcorner.com)

submitted by youseflayousefla(675) 5 years, 1 month ago

In today's Internet blog, you almost never miss seeing a "Digg It", a "Kick it", a "Ridd It" a Furl it, burl it...or squirrel it... link or icon at the end of each article you read in someones blog. Well, regardless of the opinions people might have about this phenomenon, if you are an ASP.NET ... read more...

add a comment |category: |Views: 27

tags: another

Fun with C# Timers.. Flash a Windows Control to draw attention to it(mycsharpcorner.com)

submitted by youseflayousefla(675) 5 years, 1 month ago

The most common GUI technique is to display the error using a MessageBox.Show popup after validating the control, with something like "First Name field is empty! Please enter your First Name". I find these popup boxes in a Windows Application to be annoying... especially when combined with the "bump" wav sound associated with them! So to give my users a friendly app read more...

1 comment |category: |Views: 110

tags: another

Displaying a "Please Wait..." Dialog(mycsharpcorner.com)

submitted by youseflayousefla(675) 5 years, 1 month ago

I was writing this application for a client of mine, and I needed to dsiplay a "Please Wait..." message while disabling access to the the rest of the application controls during a lengthy background process, but at the same time, wanted to show that the application is alive and well.... not frozen, maybe even put a cancel or a stop button to terminate the lengthy process. read more...

add a comment |category: |Views: 620

tags: another

How to insert text at a specified line number in a file using C#?(mycsharpcorner.com)

submitted by youseflayousefla(675) 5 years, 1 month ago

System.IO.StreamWriter allows you to write text to a file easily if you are creating the file and know the order of the lines. However, what if you are trying to edit a file? For example, you need to insert a text at a specified line number in an existing text file. Say you have a text file that contains: 1. Orange 2. Banana <---- Want to Insert: 3. Apple 4. Grapefruit 5. Kiwi And say you want to insert the text "3. Apple" between line 2 & 4, how do you do that in C#? read more...

add a comment |category: |Views: 20

tags: another