 |
|
 |
For those new to message boards please try to follow a few simple rules when posting your question.- Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
- Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
- If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode "<" (and other HTML) characters when pasting" checkbox before pasting anything inside the PRE block, and make sure "Use HTML in this post" check box is checked.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question into an unrelated forum such as the lounge. It will be deleted. Likewise, do not post the same question in more than one forum.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
cheers,
Chris Maunder
The Code Project | Co-founder
Microsoft C++ MVP
|
|
|
|
 |
|
 |
Apologies for the shouting but this is important.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers,
Chris Maunder
The Code Project Co-founder
Microsoft C++ MVP
|
|
|
|
 |
|
 |
I want to add some mathematical formulas to my web page. I want the formulas to look good however, it is important that the web page can be viewed with a standard browser. Should this be done in HTML? Should I make up a GIF file for them? What is the recommend tool these days?
Thanks
Bob
|
|
|
|
 |
|
 |
if you use basic HTML you will run into web safe font issues and wont look as good as an image
|
|
|
|
 |
|
 |
DO you mean you just want them to be seen or you want functionality?
If it is just an image, just bung it in a div and move to where it is needed.
------------------------------------
I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave
CCC Link[ ^]
Trolls[ ^]
|
|
|
|
 |
|
 |
David,
I just want them to be seen.
Bob
|
|
|
|
 |
|
 |
Wikipedia uses images to display formulas. Follow the leader.
|
|
|
|
 |
|
|
 |
|
 |
Hi,
I have created a report with Report Viewer control using Visual Studio 2008 under 3.5 frame work in the local mode. However, I am trying to publish this website for public to use on Windows 2003 server. I have installed published the website with Web.Config from my machine and then executed ReportViewer.exe on this server by double clicking on it. This Report Viewer.exe was downloaded from Microsoft Report Viewer Redistributable 2005. However, so I read an article in this that I need to copy exe file from C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\ReportViewer\ReportViewer.exe to the server. I did the same, but I do not see same directory path on the server. It does not have no subdirecties from BootStrapper\Packages\ReportViewer\ReportViewer.exe in the server. When I try to access the website, it still says "Could not load file or assembly 'Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies". Although I executed ReportViewer.exe from c:\ on the server, I am not sure what else needed to do. It says that all the required files in C:Windows directory. But I am not positive on copying files and placing them anywhere.
I am wondering if my actions are not coherent enough to publish the website or not. Any help is greatly appreciated.
|
|
|
|
 |
|
 |
I have copied all dlls from windows folders to my website bin folder, and it worked.
|
|
|
|
 |
|
|
 |
|
 |
question, statement or are you just giving us your current status??
the way that I have generally done something like this is to call some [WebMethod] either in a web service or a page method. technically those public static page methods are nothing but web service methods. at least in my opinion they are.
[WebMethod]
[System.Web.Script.Services.ScriptMethod(ResponseFormat = System.Web.Script.Services.ResponseFormat.Xml)]
public DataTable someMethod(string param)
{
DataSet dsReturn;
try
{
dsReturn.Tables[0].TableName = "someName";
}
catch (Exception)
{
throw;
}
return dsReturn.Tables[0];
}
then my jQuery code I use the $.ajax(...) function to call the web service.
$.ajax({
type: 'POST',
url: 'location/name.asmx/someMethod',
data: "{ 'param': 'paramValue' }",
contentType: 'application/json; charset=utf-8',
dataType: 'xml',
success: function (xml) {
$('someName', xml).each(function() {
$(this).find('ColumnName').text();
});
},
error: function(err) {
}
});
|
|
|
|
 |
|
|
 |
|
 |
what is a popular javacript framework?
...I hope I win something more that a toaster!
Chris J
www.redash.org
|
|
|
|
 |
|
 |
I'm sorry, we were looking for ECMAScript. The toaster goes to Bob.
No comment
|
|
|
|
 |
|
 |
ah man, I never win...Bob is one lucky bass turd!
Chris J
www.redash.org
|
|
|
|
 |
|
 |
Correct!
------------------------------------
I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave
CCC Link[ ^]
Trolls[ ^]
|
|
|
|
 |
|
 |
I quit being afraid when my first venture failed and the sky didn't fall down.
|
|
|
|
 |
|
 |
Can any1 help me edit my website plz i just started it
modified 1 Oct '11.
|
|
|
|
 |
|
 |
That is not the purpose of this site. If you have a specific technical question then post it here and people will try to help you.
|
|
|
|
 |
|
 |
If you have just started it, how can we edit it?
What are you using?
A website designer or are you straight coding to notepad?
What is wrong? What are you having problems with?
You see we need more information.
------------------------------------
I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave
CCC Link[ ^]
Trolls[ ^]
|
|
|
|
 |
|
|
 |
|
 |
You are referencing Visual Studio projects and solutions correct? In which yes it is possible. Using source control the file can be shared across multiple projects.
No comment
|
|
|
|
 |
|
 |
more details.
I have:
1 solution
5 projects -> 1 projects has references to 2,3,4 project(s).
I would like to use 1 web.config across all 5. How do I do this?
I don't have IIS install on my pc
|
|
|
|
 |
|
|
 |