Click here to Skip to main content
15,885,365 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionopen a new webform on another explorer Pin
vikas shukla22-Oct-09 1:43
vikas shukla22-Oct-09 1:43 
AnswerRe: open a new webform on another explorer Pin
Abhishek Sur22-Oct-09 2:03
professionalAbhishek Sur22-Oct-09 2:03 
GeneralRe: open a new webform on another explorer Pin
vikas shukla22-Oct-09 2:07
vikas shukla22-Oct-09 2:07 
GeneralRe: open a new webform on another explorer Pin
Abhijit Jana22-Oct-09 2:19
professionalAbhijit Jana22-Oct-09 2:19 
GeneralRe: open a new webform on another explorer Pin
sashidhar22-Oct-09 2:27
sashidhar22-Oct-09 2:27 
QuestionControl to use Pin
hrishiS22-Oct-09 1:16
hrishiS22-Oct-09 1:16 
AnswerRe: Control to use Pin
sashidhar22-Oct-09 1:41
sashidhar22-Oct-09 1:41 
AnswerRe: Control to use Pin
compninja2522-Oct-09 2:53
compninja2522-Oct-09 2:53 
I don't know if I am interperting the question correctly, but on occasion for projects that involve having different pictures and text for users/products I use a panel or div control and then just dynamically place the controls per each data row in there.

So, assume I have a panel control named "panel1" on the aspx file, I would then use something like this in my code behind:
DataReader dr1 = Connection1.Read()

While (dr1.Read)
{
   Image pictureBox1 = new Image();
   TextBox tb1 = new TextBox();

   pictureBox1.ImageURL = dr1["imageLocation"].toString();
   tb1.Text = dr1["textBlurb"].toString();

   panel1.Controls.Add(pictureBox1);
   panel1.Controls.Add(tb1);
}


Then I just work on formatting the layout using the css.

Hope this helps! Smile | :)

Knowledge is not power, however, the acquisition and appropriate application of knowledge can make you a very powerful individual.

AnswerRe: Control to use Pin
shashankbv22-Oct-09 5:02
shashankbv22-Oct-09 5:02 
Questionxslt compilation error Pin
tasoss22-Oct-09 0:44
tasoss22-Oct-09 0:44 
AnswerRe: xslt compilation error Pin
Richard MacCutchan22-Oct-09 1:25
mveRichard MacCutchan22-Oct-09 1:25 
GeneralRe: xslt compilation error Pin
tasoss22-Oct-09 11:24
tasoss22-Oct-09 11:24 
GeneralRe: xslt compilation error Pin
Richard MacCutchan22-Oct-09 23:17
mveRichard MacCutchan22-Oct-09 23:17 
Questionjavascript close page Pin
Denver Thomas21-Oct-09 23:47
Denver Thomas21-Oct-09 23:47 
AnswerRe: javascript close page Pin
Abhijit Jana21-Oct-09 23:59
professionalAbhijit Jana21-Oct-09 23:59 
AnswerRe: javascript close page Pin
pons_saravanan22-Oct-09 0:01
pons_saravanan22-Oct-09 0:01 
AnswerRe: javascript close page Pin
Abhishek Sur22-Oct-09 0:02
professionalAbhishek Sur22-Oct-09 0:02 
GeneralRe: javascript close page Pin
Denver Thomas22-Oct-09 0:47
Denver Thomas22-Oct-09 0:47 
AnswerRe: javascript close page Pin
dan!sh 22-Oct-09 0:57
professional dan!sh 22-Oct-09 0:57 
QuestionEvaluate expression in string Pin
fcis200821-Oct-09 23:02
fcis200821-Oct-09 23:02 
AnswerRe: Evaluate expression in string Pin
sashidhar21-Oct-09 23:17
sashidhar21-Oct-09 23:17 
AnswerRe: Evaluate expression in string Pin
nagendrathecoder21-Oct-09 23:20
nagendrathecoder21-Oct-09 23:20 
AnswerRe: Evaluate expression in string Pin
Abhishek Sur22-Oct-09 0:04
professionalAbhishek Sur22-Oct-09 0:04 
Questioninsert only date Pin
m@dhu21-Oct-09 21:57
m@dhu21-Oct-09 21:57 
AnswerRe: insert only date Pin
Christian Graus21-Oct-09 22:01
protectorChristian Graus21-Oct-09 22:01 

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.