Forum: ASP.NET Jan 26th, 2006 |
| Replies: 18 Views: 17,746 Nice. Thanks. I'm trying to re-read and digest :d |
Forum: ASP.NET Jan 20th, 2006 |
| Replies: 18 Views: 17,746 Interesting... Would you mind sharing what's the basic steps needed to secure your web ? |
Forum: ASP.NET Jan 19th, 2006 |
| Replies: 18 Views: 17,746 Thanks a lot f1fan for the thorough explanation~!
I must say that I learned a lot from that reply lol.
Now I know what sql injection means - thanks a lot. |
Forum: ASP.NET Jan 17th, 2006 |
| Replies: 18 Views: 17,746 Wow, thanks for your thorough explanation.
All understood.
I will try that out.
Umm, I have another quick question here:-
I have been using the sqlDataSource control for about a week now but... |
Forum: ASP.NET Jan 15th, 2006 |
| Replies: 18 Views: 17,746 Thanks once again.
Umm, yeah, guess I need more information on the 2nd and 3rd options.
I'm not quite sure how it can be done but I have a rough idea here, did you mean that the form action tag... |
Forum: ASP.NET Jan 13th, 2006 |
| Replies: 18 Views: 17,746 Thanks for your fast response.
I have thought of doing the global class thingy that you have mentioned.
Then I thought it's quite inappropriate.
Alright, the scenario is this, from b.aspx.vb... |
Forum: ASP.NET Jan 12th, 2006 |
| Replies: 18 Views: 17,746 Ugghh sorry silly mistake :D
By the way, is it possible for one sub procedure in a.aspx.vb to call another sub procedure in b.aspx.vb ?
Thanks. |
Forum: ASP.NET Jan 12th, 2006 |
| Replies: 18 Views: 17,746 Greetings.
I encountered a problem in accessing the controls I placed inside the TemplatedWizardStep tag. Here's the code snippet:-
<asp:Wizard ID="wizCreateBulk" runat="server"... |
Forum: ASP.NET Dec 30th, 2005 |
| Replies: 12 Views: 4,187 Nah... tend to learn better with truthful words ;)
Btw, yup what you said is true. I used to be a Coldfusion developer, am still one. The reason I've got to move on to ASP.net for this particular... |
Forum: ASP.NET Dec 27th, 2005 |
| Replies: 12 Views: 4,187 Yup definitely tgreer.
I'm sure I'll be back with more problems lol.
But thanks for the prompt replies ;) |
Forum: ASP.NET Dec 23rd, 2005 |
| Replies: 12 Views: 4,187 Err, it's kinda difficult eh kev.
But here goes:-
File1.aspx:-
<asp:ListBox ID="Groups" runat="server" SelectionMode="multiple" width="250"/>
<script type="text/javascript">
... |
Forum: ASP.NET Dec 21st, 2005 |
| Replies: 12 Views: 4,187 Thanks a lot kev and tgreer. I'll try out the first option suggested and come back with a feedback ;) |
Forum: ASP.NET Dec 21st, 2005 |
| Replies: 12 Views: 4,187 Hey kev, thanks in advance.
Here's the function in javascript:-
function addOptionToListBox(lsVal, lsNam, obj) {
var anOption = document.createElement("OPTION");
... |
Forum: ASP.NET Dec 20th, 2005 |
| Replies: 12 Views: 4,187 Hi all,
I'm relatively new to ASP.NET - used to code in Coldfusion.
I've got this control created in a page <asp:listbox>.
I also have a javascript function in the same page to add listitems... |
Forum: ASP.NET May 21st, 2004 |
| Replies: 4 Views: 21,607 Greetings!
function validate()
{
var yrs_check = /[1-2][0-9]{3}$/;
if(yyyy1.value=="" || yyyy2.value=="" || mthOfWage.value=="")
{
alert("Please fill in all the required... |