Can any one help me how to create graphical report in ASP. Thanks in Advance.
jebin k
Posts
-
Creating graphical report(Pie chart, Bar gragh) in ASP -
Disable X button in javascript confirm alertI need to disable confirm alert x button because when the user clicks X its takes as okay option. Thanks in Advance
-
Go to the speciifed textHi, I have a very long aspx page where i have some links followed by the description for those link headings. When i click the link in the top the focus has to go to the description mentioned some where below and vice versa. How can i achieve it.
-
Visible false TemplateField in server sideHi, I load the datagrid based on a condition. If i load the datagrid by the first condition then i need to visible false some TemplateField in grid. Can i achieve this, any solution available for this. Thanks in Advance.
-
Hacking problem.Hi, I have a web application hosted in a server and i am accessing it from remote. I give my credit card number and cvv, it does encrypting before saving in database, but i need to know before it is send to the server can anyone hack my information. If it can be hacked any solutions to overcome this problem. Thanks in Advance
-
Autocomplete arcticle without WebserviceHi, Can any one help me with a Autocomplete article without using webservice
-
Transfer session stateHi, I am creating a website and there a million hits so i decide to split my server, I have a session for username how will i transfer my session value to next server.
-
Data view not workingI have set Enableviewstate=true, my paging is working fine. The problem is gvToDoList_Sorting event is not firing when i click header to sort.
-
Data view not workingHi, When i try to sort, dataview records disappears. I have used AllowSorting="true". When I tried to debug the sorting event is not firing. Can anyone say what is the problem.
-
Retrieve textbox value while using master page conceptyes it working, thanks.
-
Retrieve textbox value while using master page conceptThis is how i have declared my textbox asp:TextBox ID="txtUsername" runat="server" CssClass="textBox" Width="200px" -- modified at 6:41 Thursday 25th October, 2007
-
Retrieve textbox value while using master page conceptTextbox is in content page only, i tried this code too but not working. I saw view source i noticed the name change so i took and tried with that name. function check_user() { var str = document.getElementById('ctl00_ContentPlaceHolder1_txtUsername').value; }
-
Retrieve textbox value while using master page conceptHi, I am using master page and i inherited a aspx page and wrote html code inside asp:Content. I wrote a javascript code to get a textbox value for validation document.getElementById("txt_Amount").value, but i could not retrieve the value. Can any one say what i am doing wrong.
-
Outline in websitesCan we curve table like that. Excuse if my question is wrong
-
Outline in websitesHi, I see in many website a curved outline to a specific area, I need to know whether it is a curved Table border or it is an image.
-
Load Dataset first row value in ListboxThanks
-
Load Dataset first row value in ListboxFirst row value.
-
Load Dataset first row value in ListboxHi, I need to load the Dataset's first row value in a List box. Can any one say the syntax.
-
Wrong syntax when trying to save CSV file column as stringI have Varchar as my datatype, I checked CSV File in that Date column i found in the Format cells that the column is defined as Date. I think that may the problem , this is the code i use string ConStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + path + ";Extended Properties=\"Text;HDR=No;FMT=Delimited\\\""; System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection(ConStr); System.Data.OleDb.OleDbDataAdapter da = new System.Data.OleDb.OleDbDataAdapter("Select * from " + file, conn); da.Fill(ds, "TextFile"); DGCsv.DataSource = ds.Tables[0].DefaultView;
-
Wrong syntax when trying to save CSV file column as stringThis is what i do string ConStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + path + ";Extended Properties=\"Text;HDR=No;FMT=Delimited\\\""; System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection(ConStr); System.Data.OleDb.OleDbDataAdapter da = new System.Data.OleDb.OleDbDataAdapter("Select * from " + file, conn); da.Fill(ds, "TextFile"); DGCsv.DataSource = ds.Tables[0].DefaultView;