Link to home
Start Free TrialLog in
Avatar of JAVI1065
JAVI1065Flag for Puerto Rico

asked on

How car I insert an image in a master form using asp.net?

I'm completely new in this. I have no Idea on how to insert an image in a form in terms of background. If someone can help me I would be really grateful.
Avatar of Cognize
Cognize

So you want an image to sit behind a form that a user fills in?

You could do it with CSS (Cascading style sheets)

So in the header section of your page, you could type something like:

<style type="text/css">

body
{
    background-image: url('yourimagefolder/yourimage.jpg);
}


</style>

Maybe if you be a bit more specific about what you are trying to do we can help you further
Avatar of JAVI1065

ASKER

No, sorry I mean only for background how can I insert it, I see something of a URL, but I don't know how to get the url of the image. I know it should be simple, but I'm copmpletely newbie in ASP.
ASKER CERTIFIED SOLUTION
Avatar of Cognize
Cognize

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for everything