Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Data-Based User Controls

Reply
Thread Tools

Data-Based User Controls

 
 
Jonathan Wood
Guest
Posts: n/a
 
      10-11-2006
I'm new to C# and ASP.NET, and wondered if anyone could give me some
pointers on this.

I want a serious of boxes on the left side of my master page. Each box will
display a graphic image followed by any number of links. Each box needs to
correspond to a category in a database. So the number of boxes is not known
in advance.

In addition, the links displayed in each box will be the items in that
category. So the number of links is not known in advance. I'd also like to
display a little message when there are no links for that category.

Does this seem a reasonably efficient way to approach this?

Any tips or code snippets?

Thanks!

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com


 
Reply With Quote
 
 
 
 
Abraham Andres Luna
Guest
Posts: n/a
 
      10-11-2006
i suggest downloading and stealing the code from the asp.net starter kits
http://asp.net/downloads/starterkits....aspx?tabid=62


"Jonathan Wood" <> wrote in message
news:...
| I'm new to C# and ASP.NET, and wondered if anyone could give me some
| pointers on this.
|
| I want a serious of boxes on the left side of my master page. Each box
will
| display a graphic image followed by any number of links. Each box needs to
| correspond to a category in a database. So the number of boxes is not
known
| in advance.
|
| In addition, the links displayed in each box will be the items in that
| category. So the number of links is not known in advance. I'd also like to
| display a little message when there are no links for that category.
|
| Does this seem a reasonably efficient way to approach this?
|
| Any tips or code snippets?
|
| Thanks!
|
| --
| Jonathan Wood
| SoftCircuits Programming
| http://www.softcircuits.com
|
|


 
Reply With Quote
 
 
 
 
Jonathan Wood
Guest
Posts: n/a
 
      10-11-2006
That's probably a good suggestion at a general level.

But what about my question? Are you saying one of the starter kits displays
blocks like that in the navigation menu? And, if so, which one?

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com


"Abraham Andres Luna" <> wrote in message
news:...
>i suggest downloading and stealing the code from the asp.net starter kits
> http://asp.net/downloads/starterkits....aspx?tabid=62
>
>
> "Jonathan Wood" <> wrote in message
> news:...
> | I'm new to C# and ASP.NET, and wondered if anyone could give me some
> | pointers on this.
> |
> | I want a serious of boxes on the left side of my master page. Each box
> will
> | display a graphic image followed by any number of links. Each box needs
> to
> | correspond to a category in a database. So the number of boxes is not
> known
> | in advance.
> |
> | In addition, the links displayed in each box will be the items in that
> | category. So the number of links is not known in advance. I'd also like
> to
> | display a little message when there are no links for that category.
> |
> | Does this seem a reasonably efficient way to approach this?
> |
> | Any tips or code snippets?
> |
> | Thanks!
> |
> | --
> | Jonathan Wood
> | SoftCircuits Programming
> | http://www.softcircuits.com
> |
> |
>
>



 
Reply With Quote
 
sloan
Guest
Posts: n/a
 
      10-11-2006

If you're using 1.1 then look at
skmMenu.com

http://skmmenu.com/menu/Download/doc...u.AddMenu.html


It allows you to code up menu items.

...
If you're in 2.0, then the StarterKits are good.




"Jonathan Wood" <> wrote in message
news:...
> I'm new to C# and ASP.NET, and wondered if anyone could give me some
> pointers on this.
>
> I want a serious of boxes on the left side of my master page. Each box

will
> display a graphic image followed by any number of links. Each box needs to
> correspond to a category in a database. So the number of boxes is not

known
> in advance.
>
> In addition, the links displayed in each box will be the items in that
> category. So the number of links is not known in advance. I'd also like to
> display a little message when there are no links for that category.
>
> Does this seem a reasonably efficient way to approach this?
>
> Any tips or code snippets?
>
> Thanks!
>
> --
> Jonathan Wood
> SoftCircuits Programming
> http://www.softcircuits.com
>
>



 
Reply With Quote
 
Jonathan Wood
Guest
Posts: n/a
 
      10-11-2006
I'm using 2.0. Again, are you saying one of the StarterKits has this sort of
menu?

I've looked at them and downloaded the personal starter kit. But I didn't
see anything like this.

Are you guys just giving me general advice, or does one of the starter kits
relate to my question? And, if so, which one?

Thanks.

--
Jonathan Wood
SoftCircuits Programming
http://www.softcircuits.com


"sloan" <> wrote in message
news:%...
>
> If you're using 1.1 then look at
> skmMenu.com
>
> http://skmmenu.com/menu/Download/doc...u.AddMenu.html
>
>
> It allows you to code up menu items.
>
> ..
> If you're in 2.0, then the StarterKits are good.
>
>
>
>
> "Jonathan Wood" <> wrote in message
> news:...
>> I'm new to C# and ASP.NET, and wondered if anyone could give me some
>> pointers on this.
>>
>> I want a serious of boxes on the left side of my master page. Each box

> will
>> display a graphic image followed by any number of links. Each box needs
>> to
>> correspond to a category in a database. So the number of boxes is not

> known
>> in advance.
>>
>> In addition, the links displayed in each box will be the items in that
>> category. So the number of links is not known in advance. I'd also like
>> to
>> display a little message when there are no links for that category.
>>
>> Does this seem a reasonably efficient way to approach this?
>>
>> Any tips or code snippets?
>>
>> Thanks!
>>
>> --
>> Jonathan Wood
>> SoftCircuits Programming
>> http://www.softcircuits.com
>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Controls.Count, Controls.IsSynchronized, and Controls.SyncRoot Nathan Sokalski ASP .Net 4 09-05-2007 03:27 AM
using javascript in User controls to access server controls of the user control Faizan Ahmed ASP .Net Building Controls 1 01-04-2005 04:09 PM
using javascript in User controls to access server controls of the user control Faizan Ahmed ASP .Net Web Controls 1 01-04-2005 04:09 PM
IntelliSense on Web User Controls and Web Custom Controls Axel Dahmen ASP .Net 1 11-12-2003 06:12 AM
HTML Controls and User controls trinitypete ASP .Net 6 06-26-2003 09:47 AM



Advertisments
 



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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57