Click here to Skip to main content
15,912,756 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to restrict the data in drop down list control Pin
Abhijit Jana20-Jun-08 21:13
professionalAbhijit Jana20-Jun-08 21:13 
GeneralRe: How to restrict the data in drop down list control Pin
BalasubramanianK20-Jun-08 22:06
BalasubramanianK20-Jun-08 22:06 
QuestionRe: How to restrict the data in drop down list control Pin
Abhijit Jana20-Jun-08 22:10
professionalAbhijit Jana20-Jun-08 22:10 
AnswerRe: How to restrict the data in drop down list control Pin
BalasubramanianK20-Jun-08 22:20
BalasubramanianK20-Jun-08 22:20 
GeneralRe: How to restrict the data in drop down list control Pin
Abhijit Jana20-Jun-08 22:26
professionalAbhijit Jana20-Jun-08 22:26 
GeneralRe: How to restrict the data in drop down list control Pin
BalasubramanianK20-Jun-08 22:32
BalasubramanianK20-Jun-08 22:32 
Questionwhat is the use of this statement FormsAuthentication.SetAuthCookie(oUserID, False)........ Pin
Shaik Haneef20-Jun-08 18:23
Shaik Haneef20-Jun-08 18:23 
AnswerRe: what is the use of this statement FormsAuthentication.SetAuthCookie(oUserID, False)........ Pin
Sathesh Sakthivel20-Jun-08 19:00
Sathesh Sakthivel20-Jun-08 19:00 
QuestionDreaded "Operation Aborted" on IE7 but not IE6 Pin
astanton197820-Jun-08 10:22
astanton197820-Jun-08 10:22 
QuestionShare session variables between projects Pin
Asha100920-Jun-08 9:54
Asha100920-Jun-08 9:54 
AnswerRe: Share session variables between projects Pin
Abhijit Jana20-Jun-08 21:37
professionalAbhijit Jana20-Jun-08 21:37 
AnswerRe: Share session variables between projects Pin
Abhijit Jana20-Jun-08 23:20
professionalAbhijit Jana20-Jun-08 23:20 
GeneralRe: Share session variables between projects Pin
Asha100922-Jun-08 5:26
Asha100922-Jun-08 5:26 
QuestionRefactoring our security - need feedback Pin
gantww20-Jun-08 8:43
gantww20-Jun-08 8:43 
QuestionCreating A Web From with database back-end Pin
ferronrsmith20-Jun-08 8:17
ferronrsmith20-Jun-08 8:17 
AnswerRe: Creating A Web From with database back-end Pin
SomeGuyThatIsMe20-Jun-08 8:34
SomeGuyThatIsMe20-Jun-08 8:34 
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 

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.