|
hi, very very urgent. i am using crystal report on a web form. on the same web form i am also using a toolbar from evolve software. i invested a lot time with both controls. everything worked fine until i got instructions that in evolve toolbar i must use a dropdownlist to chose data. evolve toolbar has no dropdownlist object, so i have to use ControlContainerItem to add dropdownlist to toolbar. problem is when i add it to evolve toolbar and click on navigation buttons of crystal report toolbar, it does not work. i mean i click on next button and can navigate to next page but when i click again on next, it remains on same page and so on. so i can navigate only one page further and then no more. crystal report toolbat get this problem only if i add dropdownlist control to evolve toolbar. if i do not add, crystal report toolbar works very fine and i can navigate until last page. i can take another toolbar instead of evolve toolbar but i have invested a lot of time in using evolve toolbar and right now i have no time to take another toolbar and investting time to first understand it and then use it. so please help me to explain why crystal report toolbar is behaving so stupid. follows is the web page with code behind.
<evolve:toolbar>...............
<evolve:controlcontaineritem id="customItem" runat="server"
="" cssclass="toolbartext" itemcelldistance="100px">
<asp:dropdownlist id="ddlYear" runat="server" width="150"
="" onselectedindexchanged="ddlYear_SelectedIndexChanged">
<asp:listitem>last 12 months
<cr:crystalreportviewer id="CrystalReportViewer1" runat="server"
="" autodatabind="true" enabledatabaselogonprompt="False" reportsourceid="CrystalReportSource1" displaygrouptree="False" enableparameterprompt="False" hascrystallogo="False" hasgotopagebutton="False" hassearchbutton="False" hastogglegrouptreebutton="False" hasviewlist="False" height="1121px" width="753px" onnavigate="CrystalReportViewer1_Navigate">
<cr:crystalreportsource id="CrystalReportSource1" runat="server"
="" onload="CrystalReportSource1_Load">
<report filename="..\CrystalReports\DeltaPrMonth.rpt">
Codebehind:
protected void Page_Load(object sender, EventArgs e)
{
customItem.Controls.Add(ddlYear);
}
many many thanks for your urgent help.
paijy
paijyj
|
|
|
|
|
I really hope somebody can help me here, this is wrecking my head...
Our application is sending emails through CDO (from asp) and we have recently had the requirement to send these mails in foreign character sets (greek specifically in this case). So i am setting the mail encoding like so:
With objMessage.Bodypart ' Initialize the bodypart to support UTF-8
.ContentMediaType = "text/plain"
.Charset = "utf-8"
.ContentTransferEncoding = "8bit"
End With
On my development system (XP, which has been set to all Greek at present, just to confuse me), i send the email and everything is fine. On our test system (Server 2003, also all greek), everything but the subject line of the email is fine...
When i look at the source of the emails from either system, the email from the test system is missing the encoding (?utf-8?) markup around the subject text.
Does anybody have any idea why this might be happening...?
|
|
|
|
|
|
Doesn't really cover for asp using CDO...
|
|
|
|
|
Hi I am Manigandan, I want to know, How to create dynamic Email Id on mail server.........
Please Help me out..........
R.Manigandan
|
|
|
|
|
I dont know if it is exactly what u need , but use autonumbers in your database, In SQL 2005 use the identity specification property of the column and set it to true. it will have a auto increment.
Oliekrokenosterpikkelikkeastrysvoel
|
|
|
|
|
Which mailserver software? They should have an API to support it.
|
|
|
|
|
I have developed a website using Asp.NET and C#.It is Working fine in LocalHost.Where as in Hosting the site Session variable are going to be null.
I cannot find the Solution.
Please any one can help me.
Regards
Narendra Mohan
|
|
|
|
|
Antivirus software scanning and updating web.config or like that?
|
|
|
|
|
I have been looking for free SSL snippets to use on my webpages, but I am finding it extremely difficult? The paid ones are abundantly available! I thought the purpose of open source code is for the public to continually criticise to make it even better.
-- modified at 12:25 Thursday 29th March, 2007
|
|
|
|
|
Add-ons to open source products doesn't have to be open source. As an example, Linux being open source doesn't force every application developed for it to be open source.
---
single minded; short sighted; long gone;
|
|
|
|
|
So does it mean anyone can develop add-ons & market them or it's for those with hosting capabilities like Joomla/Mambo?
|
|
|
|
|
|
Use the alert method. Example:
<a href="" onclick="window.alert('Thanks.');return false;">Click me</a>
---
single minded; short sighted; long gone;
|
|
|
|
|
|
The event is of course named onclick , not removed . It's the backward way of this forum to handle "security" that f**ks up the code.
---
single minded; short sighted; long gone;
|
|
|
|
|
i want some example for how do handle check box in asp.net
|
|
|
|
|
Add a checkbox.
Set the autopostback = true
create the checkedchange event handeler.
Here is some info from MS help:
Create an event handler for the control's CheckedChanged event.
By default, the CheckedChanged event does not immediately cause the page to be posted to the server. Instead, the event is raised in server code the next time the form is posted. To have the CheckedChanged event cause an immediate posting, set the CheckBox control's AutoPostBack property to true.
Hope that helps.
Ben
|
|
|
|
|
Hi to all,.
How to Validate TextArea Value for JavaScript (Like Checking Null values)
Mohan Balal
|
|
|
|
|
|
Hello,
I have a problem to use JScript (I can't use JavaScript) on ASP.NET masterpage.
when I use this script on ordinary ASP.NET page, it works ok.
How can I use script like this on master page?
if(window.form.txtSomeTextBox.value == "")
{
window.form.txtSomeTextBox.focus();
}
Thanks!
Wojtek
|
|
|
|
|
I assume the text box your referencing is an ASP.NET control? (as opposed to a normal HTML tag) When you use a master page the ID of all controls in the child page will be changed. This happens with any control that implements INamingContainer (DataGrids etc.). So your reference to window.form.txtSomeTextBox won't return anything becuase no form input with that ID/name exists (it will be something like ct100_ContentPlaceholder1_txtSomeTextBox).
|
|
|
|
|
Hello,
I have a question how to catch TAB key press with JScript (I can't use JavaScript on this page) on ASP.NET website??
Maybe someone had similar problem?
Thanks!
Wojtek
|
|
|
|
|
1. JScript and JavaScript is the same language (almost; JScript is a superset of JavaScript).
2. Catch 'onkeydown' event and inspect 'keyCode' for value of 9. Read this:
http://www.quirksmode.org/js/keys.html
-------------------------
Don't worry, be happy )
|
|
|
|
|
When I want to view the webpage that I have developed from the other system; I used the url specifying the system name to point out the project while using ASP.Net 1.1; whereas when I used in ASP.Net 2.0 specifying the same as ASP.Net 1.1, it gives a Runtime Error . Can anyone help to solve this problem
Regards,
LEE
|
|
|
|