Your Ad Here

Does asp.net login control encrypt password field?

Written on February 27, 2010 – 5:20 am | by tihomir_wwf |

The asp.net login control is often used when we build an asp.net website with asp.net authentication providers. But when we think about the security, it’s good to know that when the security is important, you cannot rely on it in the HTTP protocol. The reason is that all the fields of the asp.net login control [...]

Simple Rotating Ad Script in ASP.NET

Written on February 19, 2010 – 1:34 am | by tihomir_wwf |

In the home page, you can see ‘Your Ad Here’ image. If you go to another page, you’ll see another ‘Your Ad Here’ image. Here’s an example of rotating ad banners that you can use in your asp.net website: 1. You’ll need a folder in you web server with all the image ads in it. [...]

Tags:

Export Textbox’s text to a file using asp.net

Written on February 6, 2010 – 3:31 am | by tihomir_wwf |

In the Reduce Code Size Tool, I wanted to add ability for the users to be able to export the Output TextBox’s Text into file. It can be done dynamically, without need to create a temp file into the server. Here’s an asp.net example how it can be done: Response.Clear(); Response.AddHeader(“Content-Type”, “application/html”); Response.AddHeader(“Content-Disposition”, “attachment; filename=” [...]

Tags:

How to Integrate PayPal Donate Button into ASP.NET Page

Written on January 21, 2010 – 1:48 am | by tihomir_wwf |

I’ve recently decided to add PayPal Donate Button in the current site. The generated code for the donate button was: <form action=”https://www.paypal.com/cgi-bin/webscr” method=”post”> <input type=”hidden” name=”cmd” value=”_s-xclick” /> <input type=”hidden” name=”hosted_button_id” value=”11271506″ /> <input type=”image” src=”https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif” border=”0″ name=”submit” alt=”PayPal – The safer, easier way to pay online!” /> <img alt=”” border=”0″ src=”https://www.paypal.com/en_US/i/scr/pixel.gif” width=”1″ height=”1″ /> [...]

8 Advantages of ASP.NET over PHP

Written on August 25, 2009 – 7:06 am | by tihomir_wwf |

1. The code-behind allows you easier to maintain the code when it comes to large websites. 2. You have the freedom of choosing from multiple languages (C#, VB.NET, C++, etc.) 3. SQL Server is also very fast, secure, and it can store extremely large amounts of data; actually, there’s no limit; 4. With ASP.NET you [...]

Tags: ,