|
Hi Frds,
I am getting problem in SSRS Chart control.
My output of SP is
------------------
Inc NAME NO% Yes%
----------------------------------------------
A1 Bujji 90% 100%
A2 Bujji1 30% 50%
B Type Acceptd Rejectd
B1 abc 20% 1%
B2 xyz 10% 2%
Above output is generating from SP Only. Here B Type Acceptd and Rejectd added like coloumns but those are part of Report
now I need to create a chart x- axis should have A1,A2,A3....An values and Y-axis should have bars with Yes% and No %
Here I am getting the Accepted and Rejectd values also. So please tell me how to prepare a chart putting condition for Inc in A1,A2
|
|
|
|
|
Dear Members,
I want to build an application like a mailer, in which i want to add a AJAX feature like a outlook, gmail (send to)etc i.e. if i enter any word into send to textbox related to that word email must be displayed on below from database (AJAX Autocomplete feature), if i select the email id and enter ";" and after that again enter any word again, the email id related to that word fetch from database.
I want to add This feature using ASP.NET .
if any help is possible please mail me on navrajyadav@gmail.com
Thank You,
Regards,
Navraj Yadav
|
|
|
|
|
Hi i want to show a pdf file in my asp.net form
Anyone please help me with this
|
|
|
|
|
You should have searched in this forum before asking. I have already answered this question several times.
Use this :
Byte[] docbytes = this.getDocumentbytes("PDFDocument.pdf");
Response.ContentType = "application/pdf";
Response.AddHeader("content-length",docbytes.Length.ToString());
Response.BinaryWrite(docbytes);
from getDocumentbytes read the file and return the bytes.
|
|
|
|
|
copy the pdf file and paste it in Server.Mappath.
Just place a Link and give the link to the pdf document..!
If reader is installed in your server you can view the document..!
LatestArticle :Log4Net
Why Do Some People Forget To Mark as Answer .If It Helps.
|
|
|
|
|
but sashidhar,
this would only work if the link is open to all and also without any security imposed.
Also, it is not always a good idea to navigate the whole browser to the page, as we will loose control of the browser totally. Rather, I think if this is the requirement, it is always better to open a new window and then show the pdf.
|
|
|
|
|
If he is Using Forms Authentication..! Then it is secured..!
LatestArticle :Log4Net
Why Do Some People Forget To Mark as Answer .If It Helps.
|
|
|
|
|
How to use SAML in Classic ASP and ASP.Net? I would appreciate if someone give example.
thanks
Vijay
|
|
|
|
|
Hi,
I'm facing an big issue. i have created an small project which is working good in normal environment.
but when it is going in cloud computing, events are not working properly.i have used datalist and itemcommand is used. but its not working.
Please help me as soon as possible. Its very urgent.
I'm waiting for reply.
krishna veer singh
|
|
|
|
|
What issues you are getting ?
Please mention if you are getting any error...
|
|
|
|
|
I have no idea about it. But I would like to share my experience with Computing Conference. Its a Cloud Computing Virtual Conference 2009,Which is the global cloud computing event, covering latest trends and innovations in the world of cloud computing. It is the Annual Virtual Conference on Cloud Computing! It is hosted online March 23-25, 2009.
http://cloudslam09.com
|
|
|
|
|
Excellent Post. I too have heard much about cloud Computing Conference. I gathered much information about it too. Here by I would like to say that, I am going to attend the 2nd Annual Virtual Conference which is going to be hosted online March 23-25, 2010 by http://cloudslam10.com
|
|
|
|
|
Hi..
I m implementing credit card processing in my website.
The provider has given something like this.
It works fine as pasting it on simple .htm page.
When u run this page a button appears, when u click it one by one pages appear for credit card processing.
asks for input data of customers, bla.. bla..bla..
I have one button in my customer registration say "Finish"... I want the above process.cgi to run after clicking this button ( from codebehind).
And could u tell me How to accomodate the above screens in my iframes or something like this, so that customer can interact with process.cgi and still can view my website...
Thanks in advance.,
You can even give some clues...
Hemant
By:
Hemant Thaker
|
|
|
|
|
|
\\Create A Class
using System;
using System.Collections.Generic;
using System.Text;
namespace Shivam
{
public class RemotePost
{
private System.Collections.Specialized.NameValueCollection Inputs = new System.Collections.Specialized.NameValueCollection();
public string Url = "";
public string Method = "post";
public string FormName = "form1";
public void Add(string name, string value)
{
Inputs.Add(name, value);
}
public void Post()
{
System.Web.HttpContext.Current.Response.Clear();
System.Web.HttpContext.Current.Response.Write("<html><head>");
System.Web.HttpContext.Current.Response.Write(string.Format("</head><body onload=\"document.{0}.submit()\">", FormName));
System.Web.HttpContext.Current.Response.Write(string.Format("<form name=\"{0}\" method=\"{1}\" action=\"{2}\" >", FormName, Method, Url));
for (int i = 0; i < Inputs.Keys.Count; i++)
{
System.Web.HttpContext.Current.Response.Write(string.Format("<input name=\"{0}\" type=\"hidden\" value=\"{1}\">", Inputs.Keys[i], Inputs[Inputs.Keys[i]]));
}
System.Web.HttpContext.Current.Response.Write("</form>");
System.Web.HttpContext.Current.Response.Write("</body></html>");
System.Web.HttpContext.Current.Response.End();
}
}
}
//Class End
\\On Button Click Write Following Line of Code
\\Change Key Value as well as payment provider Based on ur field
RemotePost myremotepost = new RemotePost();
myremotepost.Url = "https://www.myvirtualmerchant.com/VirtualMerchant/process.do";
myremotepost.Add("ssl_amount",ssl_amount.Value);
myremotepost.Add("ssl_merchant_id",ssl_merchant_id.Value);
myremotepost.Add("ssl_pin",ssl_pin.Value);
myremotepost.Add("ssl_show_form",ssl_show_form.Value);
myremotepost.Add("ssl_transaction_type", ssl_transaction_type.Value);
myremotepost.Add("ssl_result_format", ssl_result_format.Value);
myremotepost.Add("ssl_receipt_decl_method", ssl_receipt_decl_method.Value);
myremotepost.Add("ssl_receipt_decl_get_url", ssl_receipt_decl_get_url.Value);
myremotepost.Add("ssl_receipt_apprvl_method", ssl_receipt_apprvl_method.Value);
myremotepost.Add("ssl_receipt_apprvl_get_url", ssl_receipt_apprvl_get_url.Value);
myremotepost.Post();
|
|
|
|
|
Hi
Need to hide the Repeated District name only in SSRS
I am getting Query output like this
District Name Date count
-------------------------------------
VSP TL 01/01/2009 20
VSP AM 01/06/2009 10
VSP TM 01/08/2009 100
Hyd TL 01/01/2009 20
Hyd AM 01/09/2009 10
TPT TL 01/01/2009 20
TPT TM 01/06/2009 190
Expected Output
I need out put like this in SSRS
District Name Date count
-------------------------------------
VSP TL 01/01/2009 20
AM 01/06/2009 10
TM 01/08/2009 100
Hyd TL 01/01/2009 20
AM 01/09/2009 10
TPT TL 01/01/2009 20
TM 01/06/2009 190
|
|
|
|
|
Why dont you modify the query for that ... .
Distinct keyword is what you need I think...
Does this question belongs to ASP.NET ?
|
|
|
|
|
I have done through SSRS Grouping. Question is not related to ASP.NET
But I could not find the SSRS Questions here?
So Where can I post SSRS Related Queries?
|
|
|
|
|
|
How can i add empty row in Grid View in ASP dot net using VB Dot net.
All fields are bound but i want to count TOTAL manually.
e.g
Type Col1 col2 col3
1 10 20 30
2 5 1 5
3 1 5 2
Total 16 26 37
Help please
|
|
|
|
|
You can add your code on GridView databound event ..
Vinod Kumar Prajapati
Software Engineer
EBC Publishing Pvt. Ltd.
|
|
|
|
|
Send me source code please
|
|
|
|
|
You can use ItemTemplate og GridView for inserting rows.
Use Label controls in that.
When you want to add empty row, add empty labels to it and later you can assign text to that row. 
|
|
|
|
|
Yes .. You can do this. Just follow these simple steps mentioned here :
Add New Row in DataGrid[^]
Hope you like my solution.
|
|
|
|
|
Hi,
for that you can add footer template in your grid view and take rowdatbound event of the gridview at server side. in the rowdatbound event you can check each row this way
protected void GVLeavelist_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
// Fetch each row here and calculate the data
ViewState["Total"] = 'Your Value';
}
else if((e.Row.RowType == DataControlRowType.Footer)
{
// then used viewstate value to display the total
}
}
|
|
|
|