Forum: ASP.NET Mar 23rd, 2007 |
| Replies: 5 Views: 3,475 OK
You can get webdeveloper express which is free and makes it a lot easier.
the code below has a grid view which lets me list, edit and delete items in the grid (it could select too but i have no... |
Forum: ASP.NET Mar 23rd, 2007 |
| Replies: 5 Views: 3,475 use the formview control and bind it to a datasource control which is configured to access your database.
If you use VS2005 they are there and very simple to setup (follow the wizards). Drop a form... |
Forum: ASP.NET Mar 23rd, 2007 |
| Replies: 2 Views: 1,772 if the texbox was bound to the database and there is no value then num1 num2 etc. is empty or null, neither of which will parse to a double to be able to be added. You need to do a test to see if... |
Forum: ASP.NET Feb 10th, 2006 |
| Replies: 7 Views: 21,251 sms is complex and not free but can be done. There are gateways which you can setup with your provider. There is a way to do it via email and is usually mobilenumber@carrierssmsmail.tld i know them... |
Forum: ASP.NET Jan 12th, 2006 |
| Replies: 9 Views: 20,805 Just one quick one on stored procedure names... dont prefix a stored procedure with sp_ use anything but this as when you call a stored procedure SQL Server looks at the name and if it starts with... |
Forum: ASP.NET Jan 12th, 2006 |
| Replies: 6 Views: 9,580 so you want to auto refresh the page at set times?
Best way to do it is to put it in the META tag. It is the same technique as an auto redirect to another page, only this time you are reloading... |
Forum: ASP.NET Jan 12th, 2006 |
| Replies: 6 Views: 9,580 I agree. However should you need to pause the thread while another thread completes then use thread.sleep(timetosleep) |
Forum: ASP.NET Jan 12th, 2006 |
| Replies: 3 Views: 6,076 are you talking about a popup window or a whole new webpage/site? if you need to do a new browser window with a webpage then in the link that you have you need to set the target="_blank"
if you... |