Click here to Skip to main content
15,888,968 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionpage_load for user control not firing when address is typed in browser window Pin
chacimulch20-Jun-08 8:06
chacimulch20-Jun-08 8:06 
AnswerRe: page_load for user control not firing when address is typed in browser window Pin
Shaik Haneef20-Jun-08 18:18
Shaik Haneef20-Jun-08 18:18 
GeneralRe: page_load for user control not firing when address is typed in browser window Pin
chacimulch23-Jun-08 4:16
chacimulch23-Jun-08 4:16 
GeneralRe: page_load for user control not firing when address is typed in browser window Pin
chacimulch23-Jun-08 5:40
chacimulch23-Jun-08 5:40 
Questionhandling dynamically generated controls Pin
Balram Watwani20-Jun-08 7:49
Balram Watwani20-Jun-08 7:49 
QuestionAdd image to a web page Pin
zvit20-Jun-08 7:34
zvit20-Jun-08 7:34 
AnswerRe: Add image to a web page Pin
tina->newcoder20-Jun-08 8:00
tina->newcoder20-Jun-08 8:00 
AnswerRe: Add image to a web page Pin
Sathesh Sakthivel20-Jun-08 19:06
Sathesh Sakthivel20-Jun-08 19:06 
Generally I create a folder called images, in the web site part of the solution.

When adding an image, it depends on what you need it for. If it doesn't have any functionality aside from decorational (i.e. part of the layout), just add a simple html img tag

<img src="images/my_image.jpg" alt="" />

This assumes that your aspx file is in the same folder as the subfolder images.

If you need it for the execution of some server side coding, then you add:

<asp:Image Id="imgMyImage" ImageUrl="images/my_image.jpg" runat="server" />

I'm assuming, that the image you want to add, is not within the solution, which is why it might not be showing.

Adding the folder:
- right click on the solution name and click on new folder
- rename the folder to what you want

Adding the image:
- right click on the newly added folder and choose add existing Item
- look up the image file you want to add.

After this, inside the application folder, you will have a new folder which will contain the image you need.

SSK.

Anyone who says sunshine brings happiness has never danced in the rain.

AnswerRe: Add image to a web page Pin
Christian Graus20-Jun-08 21:46
protectorChristian Graus20-Jun-08 21:46 
QuestionCheckBox Control retaining state Pin
P Nandi20-Jun-08 5:41
P Nandi20-Jun-08 5:41 
QuestionNew to ASP Pin
KirkNew2ASP20-Jun-08 4:59
KirkNew2ASP20-Jun-08 4:59 
AnswerRe: New to ASP Pin
Jay Royall20-Jun-08 5:38
Jay Royall20-Jun-08 5:38 
QuestionDisable Copy Slide, Edit Slide and Print Slide options in .pps file. Pin
VivekNema20-Jun-08 4:39
VivekNema20-Jun-08 4:39 
Questiontextbox value addition Pin
ManiMughal20-Jun-08 4:36
ManiMughal20-Jun-08 4:36 
AnswerRe: textbox value addition Pin
windhopper20-Jun-08 4:45
windhopper20-Jun-08 4:45 
GeneralRe: textbox value addition Pin
ManiMughal20-Jun-08 4:51
ManiMughal20-Jun-08 4:51 
GeneralRe: textbox value addition Pin
tina->newcoder20-Jun-08 8:04
tina->newcoder20-Jun-08 8:04 
GeneralRe: textbox value addition Pin
windhopper22-Jun-08 22:07
windhopper22-Jun-08 22:07 
QuestionServer Control help? Code attached Pin
windhopper20-Jun-08 4:01
windhopper20-Jun-08 4:01 
AnswerRe: Server Control help? Code attached Pin
Abhijit Jana20-Jun-08 4:04
professionalAbhijit Jana20-Jun-08 4:04 
GeneralRe: Server Control help? Code attached Pin
windhopper20-Jun-08 4:17
windhopper20-Jun-08 4:17 
QuestionThe solution to our ASP.NET page timeout problems... Pin
AndyBrew7020-Jun-08 3:53
AndyBrew7020-Jun-08 3:53 
QuestionJavaScript Help?? Pin
Imran Adam20-Jun-08 3:16
Imran Adam20-Jun-08 3:16 
AnswerRe: JavaScript Help?? Pin
Abhijit Jana20-Jun-08 3:22
professionalAbhijit Jana20-Jun-08 3:22 
GeneralRe: JavaScript Help?? Pin
Imran Adam20-Jun-08 5:56
Imran Adam20-Jun-08 5:56 

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.