Dear Advance,
How to save image from a given textbox text.
Regards,
Kamrul Hassan
huh?
You can't... if you want the client to upload an image use the upload control.... you can't pull a file off the client PC...thank heaven...
Dear Advance,
How to save image from a given textbox text.
Regards,
Kamrul Hassan
huh?
You can't... if you want the client to upload an image use the upload control.... you can't pull a file off the client PC...thank heaven...
I added a TextBox and an Image Button to a page so that they are side
by side.
Instead of both being top aligned the Text Box is pushed down.
Why is that?
How can I solve this?
Thanks,
MiguelHi there again,
<asp:ImageButton ID="ImageButton1" runat="server" ImageAlign="Top" />
<asp:TextBox ID="TextBox2" runat="server" />
or
<table>
<tr>
<td valign="top">
<asp:ImageButton ID="ImageButton2" runat="server" />
</td>
<td valign="top">
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
</tr>
</table>
or
<div>
<div style="float:left">
<asp:ImageButton ID="ImageButton3" runat="server" />
</div>
<asp:TextBox ID="TextBox3" runat="server" />
</div>
--
Milosz
"shapper" wrote:
Quote:
Originally Posted by
Hello,
>
I added a TextBox and an Image Button to a page so that they are side
by side.
Instead of both being top aligned the Text Box is pushed down.
>
Why is that?
How can I solve this?
>
Thanks,
Miguel
>
>
Thanks!There was some good example code of a simple text/image component in
the book Developing Microsoft ASP.NET Server Controls and Components. I
believe the source code used is freely available at the website.
http://www.microsoft.com/mspress/books/5728.asp
Actually, that would be in the companion content section.
http://www.microsoft.com/mspress/bo...anion%20Content
Anyone know of a software company where I can purchase to integrate into my web site ? This software presents a word in distorted images and user has to type in the corresponding characters for verification that its a real person and not a script.
what you want to search on is CAPTCHA
I used this in the past (http://blogs.clearscreen.com/migs/archive/2004/11/10/575.aspx)
I added a TextBox and an Image Button to a page so that they are side by side.
Instead of both being top aligned the Text Box is pushed down.
Why is that?
How can I solve this?
Thanks,
Miguel
Insert a table of 1 row, 2 columns (I do it from the Layout menu)
Put the TextBox in one cell, the Image Button in the other.
You may have to play with the cell alignments to get it to look the way you want.
Hi,
I don't use tables. I always use CSS for layouts.
Anyway, I was able to solve it. Just set my ImageButton's ImageAlign property to Top and everything went fine.
Thanks,
Miguel
shapper:
Hi,
I don't use tables. I always use CSS for layouts.
Anyway, I was able to solve it. Just set my ImageButton's ImageAlign property to Top and everything went fine.
Thanks,
Miguel
I just recently learned an even easier way to control your layout. Go to the layout tab, then go to position > auto-position options > then check the checkbox for changing position for controls added.
That should really spice things up for ya, good luck!