all groups > asp.net > february 2007 > threads for saturday february 24
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
how can i make xml file from an Access database file
Posted by miladhatam NO[at]SPAM gmail.com at 2/24/2007 11:25:19 PM
can i make a xml file from my databse file(access or sql)
ofcourse in asp.net
thanks
... more >>
Why Can't This Be Done?
Posted by rn5a NO[at]SPAM rediffmail.com at 2/24/2007 9:28:52 PM
Assume that a Web Form has a TextBox server control whose ID is
*txtName*. Now why can't I do something like this?
<script language="VB" runat="server">
Dim txtName As String = txtName.Text
'other subs & functions come here
</script>
The above code generates the following error p... more >>
questions about arrays and collections
Posted by Gilbert at 2/24/2007 7:36:56 PM
H,
i'm starting with asp.net/vb.net and have some questions about arrays and
collections:
1) what's the difference between:
dim x() as string
and
dim x as array
2) can variable 'x' in the second case contain anything (string, integer
.... together)?
3) what is the correct syntax?... more >>
RegularExpressionValidator Validation Expression
Posted by rn5a NO[at]SPAM rediffmail.com at 2/24/2007 6:19:45 PM
A Web Form has a TextBox for users to enter their telephone numbers. I
need to validate the TextBox against 3 conditions - firstly, the
TextBox should allow only whole numbers (from 0 to 9). Secondly, the
minimum allowable length in the TextBox should be greater than or
equal to 8 & lastly the m... more >>
For loop
Posted by shapper at 2/24/2007 5:09:32 PM
Hello,
Is there any difference between using:
For Each message As String In Messages
....
Next message
Or
For Each message As String In Messages
....
Next
The difference is between adding the variable after Next.
I am using ASP.NET 2.0
Thanks,
Miguel
... more >>
How to create this data source?
Posted by shapper at 2/24/2007 4:36:46 PM
Hello,
I am creating a class where I have a repeater.
I want to create the source of the repeater inside the class as
follows:
1 Dim a As New MyClass
2 With a
3 .Add("item 01")
4 .Add("item 02")
5 .Add("item 03")
6 End With
Basically I would like to create a... more >>
storing a shopping cart in a cookie?
Posted by Milsnips at 2/24/2007 12:03:43 PM
Hi there,
i had a small project where i used a session to store the shopping cart, but
if it times out, the user loses the cart.
Then i thought instead of using session, i'll store the cart in a cookie,
but cookie only stores string values, which makes it tricky to update/remove
cart item ... more >>
FormView - how to insert data into a hidden field??
Posted by adam.waterfield NO[at]SPAM gmail.com at 2/24/2007 11:47:05 AM
I am pretty sure this is a simple problem, with a simple solution, but
I am totally lost with this. I am working to a very tight uni
deadline, and have wasted far too long on this now, so any help would
be much appreciated.
I have a FormView with various textboxes in it and some hidden fields.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to make event fire once?
Posted by erdos at 2/24/2007 9:44:36 AM
I have an asp.net 2.0 button with server and client side click
events. On the first click, both events will fire. On the next
click, only the client side event fires. How do I make the server
side event not fire after the first click?
Thanks,
Brett
... more >>
DateTime DataType Mismatch
Posted by rn5a NO[at]SPAM rediffmail.com at 2/24/2007 8:11:27 AM
I am inserting records in a MS-Access database table. The data type of
one of the columns named *OrderDate* in the DB table is Date/Time.
This is the SQL query I am using to insert the records in the Access
DB table:
===============================
strSQL = "INSERT INTO Cart (CartID, ProductI... more >>
Data type. Multi pair of values. How can I do this?
Posted by shapper at 2/24/2007 7:04:28 AM
Hello,
I need to pass to a function a list of pairs of values.
For each item the first value is a string and the second value is an
Enum named Country.
For example, consider I need to pass 3 items:
"New York", Country.UnitedStates
"Paris", Country.France
"London", Country.England
... more >>
Gridview 256 character cell limit?
Posted by jobs at 2/24/2007 4:56:40 AM
There appears to be a 256 character cell limit on gridviews. Is there
a way to increase this ?
ControlStyle-Width="1000" does not seem to do it.
Thank you for any help or information.
... more >>
Saving the page from footer user control
Posted by Annie at 2/24/2007 12:00:00 AM
hello guys,
I have a scenario that I am confused about ...
I have a number of pages which are using a Master page ...
Then I have seperate Footer user control that can reside in master page or
could be kept
in the content pages (still not confirmed and looking for any suggestion)
The ... more >>
|