Tagged Questions

7
votes
4answers
4k views

Replace Placeholders in word document with c#

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 project? It would be nice for ...
4
votes
2answers
3k views

Specify an item placeholder by setting a control's ID property to “itemPlaceholder”

I have only single "Default.aspx" page and a single ListView Control. Why am I getting this error. Never Happened before "An item placeholder must be specified on ListView 'ListView1'. Specify an ...
2
votes
4answers
73 views

Updating a section of a page to show “News” (Without using a database) Asp.net C#

I want to have a news section to my page in a placeholder which can be updated relatively frequently with just Text and a Date. But I do not want it to be linked to a Database, Is there a way this ...
2
votes
1answer
206 views

What are the best characters to use for placeholders in file names (on Windows) AND URLs?

I am writing an application in C# that will need to find placeholders in URLs and/or file names, and substitute in a value, much like this: C:\files\file{number} => C:\files\file1 Unfortunately for ...
2
votes
2answers
543 views

C# append to placeholder

So I am trying to make a dynamic form builder where people can add a new form and add fields to that form (the add field brings up several textboxes & dropdown options for that new field). Is ...
1
vote
2answers
144 views

Rendering Dynamic asp.net webpage into string invoked from another page

The question basically drill's down to these two C# 2.0, ASP.NET 2.0 webpages. viewtemplate.aspx generatetemplate.aspx Purpose of these: viewtemplate.aspx - Displays Email template defined in ...
1
vote
1answer
284 views

placeholder visible always false

I have a placeholder inside updatepanel, thats also inside a placeholder and an updatepanel. However, according to my tests this layout shouldnt matter on this error. My placeholder always have ...
1
vote
2answers
314 views

Getting the content of an ASP.NET System.Web.UI.WebControls.PlaceHolder

I have a server control that has a PlaceHolder that is an InnerProperty. In the class when rendering I need to get the text / HTML content that is supposed to be in the PlaceHolder. Here is a sample ...
1
vote
2answers
453 views

PlaceHolder In C#

Actually I am new here and not familiar about placeholder. Just hear about it and find generally in ASP.Net. my question is PlaceHolder is not available in local C# is there any similar control is ...
0
votes
2answers
54 views

How to update a PlaceHolder on clicking on LinkButton

I have a simple web page with 5 tabs. Each tab is a LinkButton. The main body is a <div> and I place a PlaceHolder inside it. Now, I want to make a click event on the tabs, so whenever I click ...
0
votes
5answers
96 views

<br/> not being displayed on text string replacement and then put into placeholder

When I read in the data from SQL it has \r\n for the carriage returns, so I use .Replace to convert the \r\n's to <br/>'s but on display the <br/>'s are ignored. It works if I replace the ...
0
votes
1answer
110 views

Alternatives to Search and Replace to use for telling to an application where to put content in a Word document

I write an application that does also document management. I do this in Delphi but the question may apply to c# too. I just got a very useful reply to this question I asked that made ma ...
0
votes
1answer
372 views

ID “itemPlaceholder” is not rendered when using custom LayoutTemplate

I've created a simple ASPX-page, added a ListView control to the page and created two implementations of the ITemplate; one for the LayoutTemplate and one for the ItemTemplate. The trick here is that ...
0
votes
1answer
565 views

Placeholder containing dynamic table is empty unless I create table twice

I am dynamically creating a table that contains a textbox in each cell. The table is put in a placeholder control. Everything displays perfectly. The problem is when I go to retrieve the values ...
0
votes
1answer
1k views

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

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 after you click them. Now when I ...
0
votes
2answers
550 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. thanks
-2
votes
1answer
83 views

Byte place holder?

Hey guys I'm working on a project in C# were I must replace any byte that will terminate a string with some sort of place holder.. Is there some way to do this in C# without terminating the string or ...