Ask a Question related to ASP.NET, Design and Development.
-
Ric #1
Need some advice
Hi,
I need to keep a big database in memory for an aspx
application (a lot of user need access).
My intention is to use the application state or the cache
for this purposes.
Is this a good idea or are there much better solutions? I
can store it on disk for performance reasons.
Thanks in advance,
Ric
Ric Guest
-
Advice
Hello All, I am looking for advice on the purchase of a digital camera. I will be using it primarily for personal photos, and to e-mail shots... -
Help and Advice
Hi, I have a dynamic menu in my Intranet application that loads from a database. What I would like to do is to make parent nodes visible based on... -
some advice please
Hallo, I have to make a web application in Javascript/ASP for tenniscourt reservation (based on Access database). I would like to do everything... -
A bit of advice!
Hi guys, im kinda new to this forum stuff, and i was wondering if anyone could help me out. I'm using 3d Studio Max 5 and Director MX for a... -
Need advice
Hi I am in the process of "beautifying" a web site based on PHP + XTemplate. I wish to include a fixed left navigation bar on almost all the pages.... -
Ben #2
need some advice
Hi,
I come from classic asp and i need some advice for this application.
It's about a computer reservation system in a school. I want a page where a
student can see his own made reservations, the number and the date of each
reservation, and where he can check a checkbox beside each reservations to
cancel it (or them).
Those data are in a database. I use aspnet 2.0.
What i would like is a table with four cells (one for each field + one for a
chekbox).
I tried different things, like creating a table in test.aspx file and then
adding rows in test.aspx.vb file, like this:
(in test.aspx file)
<asp:Table id="Table1" runat="server"/>
....
(in test.aspx.vb)
sql = "select ... "
....
dtreader = comd.ExecuteReader
....
For j = 0 To numberofrec - 1
dtreader.Read()
r = New TableRow()
For i = 0 To numberoffield - 1
c = New TableCell()
f = dtreader.GetValue(i)
c.Text() = f
r.Cells.Add(c)
Next i
table1.Rows.Add(r)
Next j
This works, but it's only showing the reservations.
My idea was now to create each row a checkbox with as ID the reservation
number, and then in test.aspx and in JavaScript, posting a form to a file
that delete the checked records.
But if i do (in test.aspx.vb):
ch = new checkbox
page.controls.add(ch)
i get :"The Controls collection cannot be modified because the control
contains code blocks (i.e. <% ... %>). "
And how to put the checkbox into the fourth cell?
So is there a better approach for this? What should be in test.aspx and what
in test.aspx.vb?
I did it with classic asp (with javascript). An solution would be to put the
whole asp file in test.aspx and drop test.aspx.vb, but then why is aspnet
good for?
Thanks for any advices.
Ben
Ben Guest
-
Tasos Vogiatzoglou #3
Re: need some advice
It would be better to read a quick-start tutorial. There are some
concepts that have changed in asp.net. You should check them.Any other
suggestion would most probably confuse you.
[url]http://www.asp.net/QuickStart/aspnet/Default.aspx[/url]
Tasos
Tasos Vogiatzoglou Guest



Reply With Quote

