Forum: ASP.NET Feb 14th, 2009 |
| Replies: 1 Views: 498 Using standard security:
Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;
Using Trusted:
Data Source=myServerAddress;Initial... |
Forum: ASP.NET Mar 25th, 2008 |
| Replies: 2 Views: 1,413 Yes, load them into an array and then for each on the array and display the entire array and build labels as needed. |
Forum: ASP.NET Feb 28th, 2008 |
| Replies: 35 Views: 5,562 I would cron/schedule a job to run a new program.
The new program should read through the member db. Then look at the last email sent date (you will create this field). Now do now() +30 days. If... |
Forum: ASP.NET Feb 15th, 2008 |
| Replies: 2 Views: 874 I am doing this in C# to show you how it is done.
Not entirely sure if ASP.NET will support the same functionality.
public char NextLetter(char letter)
{
return... |
Forum: ASP.NET Feb 14th, 2008 |
| Replies: 4 Views: 5,676 Again I would still just use a LOADFILE call.
Either via ASP.NET or PHP or however else you want to do it.
LOADFILE is mysql based command and can be built into your query.
LOAD DATA LOCAL... |
Forum: ASP.NET Feb 14th, 2008 |
| Replies: 4 Views: 5,676 A simple way to do this would be to write a PHP script that imports the data.
Then have your form just hit that url and pass it's variables to it and process the file.
Simple enough right? |
Forum: ASP.NET Aug 23rd, 2005 |
| Replies: 3 Views: 2,464 If I just post code you will not learn anything so review this site with the examples and study them and why they do what they do:
... |
Forum: ASP.NET Aug 23rd, 2005 |
| Replies: 3 Views: 2,464 |
Forum: ASP.NET Aug 3rd, 2005 |
| Replies: 1 Views: 3,778 Well with what you have there nothing will happen...
You need..
<form method="POST" action"something.xxx">
stuff to pass here
</form> |
Forum: ASP.NET Aug 3rd, 2005 |
| Replies: 1 Views: 4,496 Work off this sample:
Sub btnUpload_Click (Sender as Object, e as EventArgs)
If Not (ctlFileImage.Posted is Nothing) Then
With ctlFileImage.Posted |
Forum: ASP.NET Jul 15th, 2005 |
| Replies: 8 Views: 3,669 Easy solution for the temp block is on connect do a reverse lookup on the host.
Like the object her eis everytime someon connects your are either..
Destroying Session, Creating a New one, or... |
Forum: ASP.NET Jul 14th, 2005 |
| Replies: 8 Views: 3,669 OK first things first...
Cleanse ALL DATA before being submitted.
You can do this with functions to make sure the usernames are X amount of characaters and numeric or non numeric.
Next. What... |
Forum: ASP.NET Jul 7th, 2005 |
| Replies: 6 Views: 7,962 Yeah what that guy said.. hehehehe |
Forum: ASP.NET Jul 7th, 2005 |
| Replies: 6 Views: 7,962 Try clearing your internet cache first and reload the page. |
Forum: ASP.NET Jun 30th, 2005 |
| Replies: 1 Views: 6,348 Paste as much of the error as possible. |