Click here to Skip to main content
16,007,885 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Redirecting to another page Pin
pmartike18-Mar-08 4:06
pmartike18-Mar-08 4:06 
GeneralRe: Redirecting to another page Pin
Not Active18-Mar-08 6:51
mentorNot Active18-Mar-08 6:51 
GeneralRe: Redirecting to another page Pin
pmartike18-Mar-08 20:29
pmartike18-Mar-08 20:29 
QuestionHow to Dispaly Records on runtime. Pin
raushan_918-Mar-08 3:45
raushan_918-Mar-08 3:45 
AnswerRe: How to Dispaly Records on runtime. Pin
eyeseetee18-Mar-08 3:56
eyeseetee18-Mar-08 3:56 
GeneralRe: How to Dispaly Records on runtime. Pin
raushan_918-Mar-08 4:04
raushan_918-Mar-08 4:04 
AnswerRe: How to Dispaly Records on runtime. Pin
pmartike18-Mar-08 4:02
pmartike18-Mar-08 4:02 
AnswerRe: How to Dispaly Records on runtime. Pin
lbothell18-Mar-08 9:56
lbothell18-Mar-08 9:56 
Hallo. I'm not sure exactly what you mean from the examples you suggested, since for Featured Agens some opened into a consistent format based on MagicBricks styles and others onto their own websites. If I'm getting you correctly, here's a really simple way I'd activate a datalist (which you've already styled to look the way you want)

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If IsPostBack = False Then
yourSubHere()
End If
End Sub

yourSubHere()
Using conn As New SqlConnection(as whatever)
Dim cmd As New SqlCommand("storedProcNameSelectingDatabaseContents", conn)
cmd.CommandType = Data.CommandType.StoredProcedure
conn.Open()
Using dr As SqlDataReader = cmd.ExecuteReader
datalistname.DataSource = dr
datalistname.DataBind()
datalistname.Visible = True
End Using
End Using
End Sub

Just a thought.Cool | :cool:

_________________________________________________
Have a great day!!!
-- L.J.

GeneralRe: How to Dispaly Records on runtime. Pin
raushan_918-Mar-08 19:24
raushan_918-Mar-08 19:24 
GeneralRe: How to Dispaly Records on runtime. Pin
lbothell20-Mar-08 8:14
lbothell20-Mar-08 8:14 
GeneralLDAP with ASP.net Pin
v1i9n6o7d18-Mar-08 3:05
v1i9n6o7d18-Mar-08 3:05 
Generalradio button default selection Pin
Sandeep Akhare18-Mar-08 2:10
Sandeep Akhare18-Mar-08 2:10 
GeneralRe: radio button default selection Pin
danasegaranea18-Mar-08 2:13
danasegaranea18-Mar-08 2:13 
GeneralRe: radio button default selection Pin
Sandeep Akhare18-Mar-08 2:29
Sandeep Akhare18-Mar-08 2:29 
GeneralRe: radio button default selection Pin
EvilInside18-Mar-08 2:15
EvilInside18-Mar-08 2:15 
GeneralRe: radio button default selection Pin
Sandeep Akhare18-Mar-08 2:32
Sandeep Akhare18-Mar-08 2:32 
GeneralValues from Textbox Pin
danasegaranea18-Mar-08 2:07
danasegaranea18-Mar-08 2:07 
GeneralRe: Values from Textbox Pin
Not Active18-Mar-08 2:42
mentorNot Active18-Mar-08 2:42 
GeneralRe: Values from Textbox Pin
danasegaranea18-Mar-08 2:51
danasegaranea18-Mar-08 2:51 
GeneralRe: Values from Textbox Pin
Not Active18-Mar-08 3:16
mentorNot Active18-Mar-08 3:16 
GeneralRe: Values from Textbox Pin
danasegaranea18-Mar-08 20:15
danasegaranea18-Mar-08 20:15 
QuestionHow do i 'create a folder programmatically' ? Pin
munklefish18-Mar-08 2:01
munklefish18-Mar-08 2:01 
GeneralRe: How do i 'create a folder programmatically' ? Pin
eyeseetee18-Mar-08 4:04
eyeseetee18-Mar-08 4:04 
GeneralRe: How do i 'create a folder programmatically' ? Pin
munklefish18-Mar-08 4:23
munklefish18-Mar-08 4:23 
QuestionConfiguration Problem Pin
EvilInside18-Mar-08 1:51
EvilInside18-Mar-08 1:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.