Web Forms :: Accessing Image Control Properties?
Apr 6, 2010
I am writing my own captcha generator page using an aspx form that generates an image.
In the form that displays the captcha I have the following img tag -
<asp:Image ID="Image1" runat="server" ImageUrl="~/captcha.aspx" />
and things works well.
What I want to do is use the image tag with width and height specified properties -
<asp:Image ID="Image1" runat="server" width="100" height="50" ImageUrl="~/captcha.aspx" />
and in my captcha.aspx read the width and height properties in my captcha generator vb script.
How can I access the width and height from my captcha generator vb script?
View 2 Replies
Similar Messages:
Jan 15, 2010
I am currently working on a page that displays a set of questions as retrieved from an XML source. I can print the questions out fine by using a ListView and the ItemDataBound event. On PostBack it seems I can get some property values (Text), but not others (ID). I need to get the ID so I can match up the answer to the appropriate question.
Here is the ListView:
[Code]....
I just don't understand the Life Cycle stuff that well for advanced issues like this. I'd prefer not to use the Request.Form collection for this, but I will if it's the last resort.
View 3 Replies
Jan 31, 2011
i am using .net 2.0 for developing my web app. want to modify a public property in the container page. how do i access the containser page?
[code]....
View 1 Replies
Feb 9, 2011
I have a public property defined in code behind of a user control. I want to toggle visibility of controls in the markup based on the property's value.
However, using the following syntax:
<td style="display:<%#(Container.PageControlMode == PageControlMode. PageMode.Wizard) ? "none" : "inline" %;">
I have the following property in my code behind:
public PageMode PageControlMode { get; set; }
Does not work and generate errors.
View 1 Replies
Mar 8, 2010
If the answer to this question exists somewhere, I'm no good at searching for it. This is sort of a simple question, the response being two parts: (1) is it possible? (2) if so, how?
I've created a web user control for my site's footer. In my web.config I have it registered like this:
[Code]....
Then, within the pages on my site, I simply insert it like this:
[Code]....
But obviously, that didn't work. I get this error: The type or namespace name 'FooterControl' could not be found (are you missing a using directive or an assembly reference?)
So I'm really not sure what to do at this point. I can put all of my code in the ASPX file and make my life easier, but I would kind of prefer not to.
View 11 Replies
Jun 12, 2010
In my application, I use nested master pages. In the main.master which is the top level, all encompossing master page, I have some properties. I want to set the value of this property from a user control embedded into the page which is using master page which is embedded into main.master. To clarify further, here's the hierarchy
main.master
content.master
some_page.aspx
myUserControl.ascx
The property is mpProperty1 which is in main.master. How do I access and set the value of this property from my user control?
View 4 Replies
Sep 30, 2010
i have a <div> named 'mydiv' on a web page and have set it's runat property as <server> so it is visible within
my vb.net server side code.
i can see the mydiv within the server side code.
my question:
how do i adjust the height/style of the <div> withion the vb.net code so that whe the page is posted back the new height/style settings apply. how do i get to the style properties server side?
View 3 Replies
Apr 13, 2010
I am using a backgroundimage in a <div>. The image itself has the dimensions 1246 * 1488.
I have set the div property to the same size in the .css file: 1246 * 1488
In the image I have some written text. But now when I open this up in the browser, the image is a bit wider wich makes this text "Blurry"
I wonder why this image is getting bigger in the browser:
[Code]....
View 1 Replies
Jan 6, 2010
I have a regular method I want to call. I need to use properties of the GridViewRowEventArgs Class within this method.
i.e.
[Code]....
Of course the above code is not valid because I don't think you can put GridViewRowEventArgs within the method like that. I don't want to put it within a event handler because that even handler is doing other things. I want to be able to call this seperatley.
View 2 Replies
Oct 22, 2010
I want to be able to extend the System.Web.UI.Page class and then easily access those properties from the Markup. I know I can do it from the codebehind, but is it possible from the Markup?
View 3 Replies
Apr 15, 2010
I am unsure of how to reference the properties of my class in a function. Here is how I see it in my head, but how do i go about this?
WebService.vb
[Code]....
UserClasses.vb
[Code]....
View 4 Replies
Feb 2, 2010
I have masterpage.master.vb where I have properties, such as;
[coe]....
Can anyone give me an idea how to go about this? I've tried searching but most articles talk in the context of web controls...
View 3 Replies
Mar 5, 2010
We have added some custom profile properties to the web.config - what we want to do is have the code access them once (when user logs in) and cache this so that the code doesn't have to hit the database each time we call Profile.<our custom profile property name>
What we see is a call to GetProperties or GetProfile each time we access Profile. <our custom profile property name> - whats the recommended way to do this?
View 4 Replies
Nov 12, 2010
Currently, I am accessing the property by creating a static method like the one below.
public static class CartCollection : List<Cart>
{
public static void Add(Cart Cart)
[code]...
View 3 Replies
Feb 22, 2010
I have implemented a CollapsiblePanelExtender with a button that collapses/expands a panel. I also have a javascript function that can collapse the expanded panel when a certain condition exists somewhere else on the page.
The problem I am having is when I programatically collapse the panel, the extender is not aware, so the Collapsed property remains false and the CollapsedImage and CollapsedText are not updated. The next time I click the button, the extender is updated to a collapsed state, but nothing happens on the page because the panel was already collapsed. It is just resynchronizing the Collapsed, CollapsedImage, and CollapsedText properties to match the panel's already collapsed state.
Is there a way I can update the Collapsed, CollapsedImage, and CollapsedText properties in javascript to match the actual state of the panel?
View 3 Replies
Sep 15, 2010
I wonder why asp.net wont allow accessing property of contained class on Gridview's Boundfields while it work in ItemTemplates..
Class User
{
Diagnosis diagnosis { get; set; } // Contained class
}
Class Diagnosis
{
string DiagnosisCode { get; set; }
}
gridview.datasource =
new List<User>() {
new User() {
diagnosis = new Diagnosis() { DiagnosisCode = "MALARIA" }} }
<boundfield datafield='<#% User.diagnosis.DiagnosisCode %>' />
View 1 Replies
Sep 28, 2010
I'm embarrassed to ask this here because it's clearly been duplicated several times already on StackOverflow. I've read a lot of stuff including:
[URL]
I think I've done exactly what those article say, but it's not working for me.
Here's the top of my master page, named "MasterNoNews.master":
[code]....
In the first case, VS is telling me System.Web.Ui.MasterPage does not contain a definition for urrentUser. In the second case, VS says the type or namespace 'MasterNoNews' could not be found.
View 2 Replies
Dec 17, 2010
I am using my aspnet membership for storing user profile related information in the database and I am looking for a way to access that information out of database from a function like Member.GetProfile. I am just wondering of any of the membership classes give thet functionality that I can actually access the information out of Membership database.
Somebody suggested me follwowing thread:
[Code]....
I am "Profile" object is not recognized in my code I think they are trying to refer to some some instance of a class here by the word Profile but I am not sure what instance is that.
View 2 Replies
Apr 14, 2010
I want to access one image file residing in C: of the client's machine. I know with the help of file upload control (or say input type=file), this would be easy. Due to nature of my application (Its a KIOSK application), user is not expected to select file. I am just wondering how should I implement reading file without using file upload control. I want to store this file in Images folder of server. I am beginner to WCF. Should I look towards WCF?
View 7 Replies
Dec 22, 2010
Seem to be having trouble getting ahold of an asp:Image I placed on an .aspx page in my code behind. I'm trying to set the Visible property to "true" programatically.
What am I doing wrong here?
.cs (see lines 81-87):
[Code]....
And .aspx:
[Code]....
View 6 Replies
Oct 11, 2010
I am having a bit of frustration trying to display an image save in a folder after upload in a datagrid. The image path is being return but the image does not displays. When I check the image properties is empty. THis is what I've been trying.
[Code]....
Here is where the image is being save: imagePath = "C:\inetpub\wwwroot\soweb\page_images\image1.png" If I change the path in the database to: page_imagesimage1.png, the image is display in the datagrid.
View 1 Replies
Nov 26, 2010
I need to access a control inside a repeater and change its properties. To enable it or not. I got an erorr message Object reference not set to an instance of an object. Here is my code inside a method. protected void
rptCAP_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
LinkButton lnDel = (LinkButton)rptCap.FindControl("lnkDelete");
lnkDel.Enabled = false; //<<<<< this is where the error occur
}
The name of the repeater control is id="rptCAP"
View 3 Replies
Sep 14, 2010
i have a .JPG file in my local machine which has to be sent as body of SMTP mail.Path of image D://foldername//imagename.jpg The code I run is in the server mc. I want it to access my local machine's d: folder to get the image file. But it is accessing the server mc's d: folder. How can this be done?
View 3 Replies
Sep 15, 2010
I am using a form view control which has two binded textbox. Now at this level it works fine and the textboxes show the values from database. But when i insert a panel inside the form view and move these two textboxes inside the panel, they dont show any values. What could be the reason for this?
View 2 Replies
Oct 25, 2010
I have a LoginView control that contains a PasswordRecovery control. Upon page_load I don't want this to be visible. When the user clicks a hyperlink button ("forgot password?" type of button), then it'll be made visible.
But I'm having a hard time making the password recovery control invisible at runtime. Here is my page_load function:
[Code]....
It is the only password recovery control in the LoginView control, so I don't understand why this isn't working. The password recovery control is still visible when the page loads in my browser.
View 7 Replies