Author Archives: admin
How disable submit button with javascript
I seen some code on codeproject.com web site how to avoid inserting twice when user refresh page in ASP.NET. Here is a quick tip how to prevent double submission of the form request while it is processing on the server. I … Continue reading
how to connect mysql database with asp.net application
One of my customers has asked me to create application in asp.net which ftp files from host and save them in file directory. I have done application in .Net with C sharp. Couple weeks later, he called me up … Continue reading
How to hide column in gridview asp.net
Just got a call from customer asking me not to display last two columns on the gridview for some condition. The project was done in c sharp. So I have tryied to do it with one line of code by … Continue reading
How to merge MS Access with Word using vba
Couple days ago got small vba project to fill Microsoft word document with data from access database. The access database UI form has several sub forms in different tabs on top of the form menu bar with buttons. One of … Continue reading
delete all items in dropdown list
In asp.net sometimes dropdown list needs to reload. If an AppendDataBoundItems attribute set to true then each time list get reloaded values will be accumulated So before populating a list script need to erase or remove all the items in … Continue reading
Browse files using ftp in vb.net
Couple post before I described how to upload fiels with vb.net now i will show you function to list all directories on remote server with ftp. Function will accept several parameters like host user name password and directory on the … Continue reading
Watermark textbox with Jquery
Sometimes contact form on the site doesn’t have place for textbox labels and we need to use textboxes instead of labels on the site or top of texbox. So in help we got JQuery plugin watermaek 1.0 you can download … Continue reading
How to create tabs with jquery
Tabs are very popular web2.0 future in web application development. I could not believe how easy to implement tabs with JQuery vs javascript and css. So for start you need to download JQuery css and Javascript files from www.jquery.com. Then … Continue reading
How to get data form other excel file with vba
Last week I got very small project from one of my clients to create vba micro to process data row by row from one excel file brake one text column into records with 250 characters long and write output into … Continue reading
email function for asp.net
Email function is most useful function in today web development most of the sites have contact form request forms and etc .. In this post I will post email function which will accept 1 or more email address subject and … Continue reading