Tagged Questions

0
votes
2answers
39 views

How can the literal contents of a PlaceHolder be read?

I have some code on a User Control that looks like this: <asp:PlaceHolder id="ph1" runat="server"> <script type="text/javascript"> jQuery(function() { …
0
votes
1answer
65 views

Proper way to hide place holders in a SharePoint 2007 Master Page?

I am working on a specialized instance of MOSS for a client where What I am wanting to do is hide elements on the master page. In particular, I want to hide the main top navigation …
2
votes
6answers
433 views

How to replace text in a powerpoint (.ppt) document?

What solutions are there? I know only solutions for replacing Bookmarks in Word (.doc) files with Apache POI? Are there also possibilities to change images, layouts, text-styles i …
0
votes
1answer
242 views

ASP.NET C#: Enabling / Disabling all ASP Controls in Table / Placeholder

Hello guys, How do I disable for example all button controls in a certain placeholder? The plot: I am coding an application for web that uses some buttons which get disabled afte …
0
votes
2answers
178 views

Issue adding multiple controls to placeholder returned by function

I have a function that creates multiple controls. Mainly input fields and an imagebutton with dynamic data for an Amazon payment button. How can I add these controls to a placeho …
0
votes
3answers
110 views

How to show content from contentPlaceholder inline

Hi, I have a page where i in my masterpage have a toolbar with a "Home" button to the far left. This button is not in a contentplaceholder but on the page. I want to have the oppor …
-2
votes
6answers
409 views

What are placeholders in Java

Hello. I have been asked to go and find out about placeholders in Java. I have searched the internet and cannot find any site that will tell me what a placeholder is (in java terms …
0
votes
0answers
26 views

How to swap a SWF file with an image on a disjointed rollover

I have a site that has a short SWF file that plays when the site is loaded. I want to use the space where this SFW file is at to display images when a thumbnail is clicked. I have …
0
votes
2answers
79 views

C# printformat placeholders

hey, can anyone give me a list of the printFormat placeholders in C#? somewhere deep in MSDN one exists, and I even found it, but it's really troublesome and not really convenient. …
0
votes
1answer
88 views

How to make UserControl to use master page placeholders?

Hello all. There's quite weird issue and I wonder if it had ever occurred before. It looks odd that nobody had been caught by it, by Google says so. that's what we have: Master …
0
votes
1answer
435 views

hw to create line breaks between dynamically generated labels in a placeholder?

This is the code below in code behind file's Page_Load event: LinkButton linkButton = new LinkButton(); linkButton.ID = "LinkButtonDynamicInPlaceHolder1Id" + i; …
6
votes
3answers
2k views

ASP.Net: Panel VS. PlaceHolder

What is the difference between Panel and PlaceHolder in ASP.NET?
6
votes
5answers
2k views

Replace Placeholders in word document with c#

Hi there, I have a template in word (.docx) format and want to replace some placeholders in this template with my own data, do you know where I can find the right classes for this …
2
votes
4answers
365 views

Simplest way to use “BeanUtils alike” replace

Is there any libraries that would allow me to use the same known notation as we use in BeanUtils for extracting POJO parameters, but for easily replacing placeholders in a string? …