Click here to Skip to main content
15,891,431 members
Home / Discussions / C#
   

C#

 
Questionwhat software do i need to install to run C# Pin
ken617126-May-05 16:35
ken617126-May-05 16:35 
AnswerRe: what software do i need to install to run C# Pin
Christian Graus26-May-05 16:42
protectorChristian Graus26-May-05 16:42 
GeneralC# DirectX Loading multiple .x files Pin
Rinventive26-May-05 14:52
Rinventive26-May-05 14:52 
GeneralInsert with Parameters Pin
NormBohana26-May-05 14:38
NormBohana26-May-05 14:38 
GeneralRe: Insert with Parameters Pin
Christian Graus26-May-05 14:59
protectorChristian Graus26-May-05 14:59 
QuestionHow to Excelsheet data from c# Pin
srinivasr_sankasani26-May-05 13:53
srinivasr_sankasani26-May-05 13:53 
AnswerRe: How to Excelsheet data from c# Pin
pubududilena26-May-05 20:02
pubududilena26-May-05 20:02 
GeneralPassing parameters from aspx to code behind file. Pin
Phillip H. Blanton26-May-05 13:02
Phillip H. Blanton26-May-05 13:02 
This is driving me crazy. I keep getting the big ugly useless block of text errors and I can't figure out why. Take for example this snippet from my aspx page...

<asp:ImageButton id="ibRoles" runat="server" ImageUrl='<%# GetImageLink("pawn_glass_blue.gif"); %>' CommandName="Roles" AlternateText="Roles" ToolTip="Edit roles"></asp:ImageButton>

You see that I know the name of the image that I want, so I am trying to pass it to a method in my .cs file that will determine the full path to the image, plop the image on filename on the end and deliver it back to the caller. Here is the GetImageLink method...

public string GetImageLink(object imageName)
{
string path = Request.Path.Substring(0,
Request.Path.LastIndexOf("/") + 1 );
return path + "Resources/BlueImages/"
+ (string)imageName;
}

I have tried making the parameter a string and an object. It doesn't matter. The page parser pukes on it every time.

It seems to me that this is fundamental. Why can't I find any examples for this that aren't assuming I am getting my input from a bound database?

Phillip H. Blanton
www.ComponentScience.net
Email: Phillip at that domain that you see one line above the line you are reading now.
GeneralRe: Passing parameters from aspx to code behind file. Pin
Christian Graus26-May-05 14:23
protectorChristian Graus26-May-05 14:23 
GeneralRe: Passing parameters from aspx to code behind file. Pin
Phillip H. Blanton26-May-05 17:48
Phillip H. Blanton26-May-05 17:48 
GeneralRe: Passing parameters from aspx to code behind file. Pin
Christian Graus27-May-05 2:45
protectorChristian Graus27-May-05 2:45 
GeneralRe: Passing parameters from aspx to code behind file. Pin
Phillip H. Blanton27-May-05 3:23
Phillip H. Blanton27-May-05 3:23 
QuestionHow does one know the Screen Point of a MenuItem when it is drawn using OwnerDrawn true? Pin
Don Ashworth26-May-05 11:35
Don Ashworth26-May-05 11:35 
AnswerRe: How does one know the Screen Point of a MenuItem when it is drawn using OwnerDrawn true? Pin
Marc Clifton26-May-05 15:52
mvaMarc Clifton26-May-05 15:52 
GeneralRe: How does one know the Screen Point of a MenuItem when it is drawn using OwnerDrawn true? Pin
Don Ashworth27-May-05 4:09
Don Ashworth27-May-05 4:09 
GeneralRe: How does one know the Screen Point of a MenuItem when it is drawn using OwnerDrawn true? Pin
Marc Clifton27-May-05 6:20
mvaMarc Clifton27-May-05 6:20 
GeneralRe: How does one know the Screen Point of a MenuItem when it is drawn using OwnerDrawn true? Pin
Don Ashworth27-May-05 7:13
Don Ashworth27-May-05 7:13 
GeneralHandling Bad HTTP server responses Pin
crc102426-May-05 11:26
crc102426-May-05 11:26 
GeneralDataTable's ever changing row index Pin
fuzzlog26-May-05 8:15
fuzzlog26-May-05 8:15 
GeneralRe: DataTable's ever changing row index Pin
pubududilena26-May-05 19:55
pubududilena26-May-05 19:55 
GeneralRe: DataTable's ever changing row index Pin
Anonymous26-May-05 20:05
Anonymous26-May-05 20:05 
GeneralRe: DataTable's ever changing row index Pin
pubududilena26-May-05 20:40
pubududilena26-May-05 20:40 
GeneralUsing custom controls. Pin
Nick Z.26-May-05 7:29
Nick Z.26-May-05 7:29 
GeneralRe: Using custom controls. Pin
Christian Graus26-May-05 14:25
protectorChristian Graus26-May-05 14:25 
GeneralRe: Using custom controls. Pin
Nick Z.26-May-05 14:40
Nick Z.26-May-05 14:40 

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.