Hi,
How to Change the Color of the Pie Chart in ASP.Net Application.
I have used ASP Charts in my application and the Pie Chart is Filled with some Default Colors. How shall i change them to some Specific Colors??
Please Help me fixing this Issue...
Regards
Sivan.G
User Profile
Collapse
-
How to Change the Color of the Pie Chart in ASP.Net ....??
-
Is Optional parameter to a Procedure is Possible in MySQL 5.0.....?
Hi,
Is this possible in MySQL 5.0....?
Can we pass an optional parameter to a procedure. Like SQL Shall we set a default value to the parameter of a Procedure in MySQL 5.0
Thanks,
Sivan.G -
Hi arjel,
This is how we shall use a Stored procedure in MySQL 5.0
Example:[code=mysql]
Delimiter $$
DROP PROCEDURE IF EXISTS getAuthors $$
CREATE PROCEDURE getAuthors ()
BEGIN
SELECT
AuthorName,
Address,
City,
Phone
FROM Author
END $$
Delimiter ;[/code]
The Delimiter should be specified else error will be thrown.Paramete r can be passed in... -
Hi Ronald,
i've already read that documentation but to include VIEWs to the Backup is not being mentioned. The Backup just contains Tables,Procedur es,Triggers alone.Can u tel how to include Views also along with the Procedures,Trig gers and Tables.
Thanks
Sivan.GLeave a comment:
-
Sorry just now i came across u r post.Hope u'd have found out if not then try this out..
mysql -u[username] -p[password] Newdatabasename <DumpFile...Leave a comment:
-
backup/restore a complete database in MySQL 5.0
Hi,
How can we backup or restore a database with all its tables,procedur es,views,trigge rs etc., when i tried using mysqldump command i'm able to backup the tables and procedures alone.But restoring it is still a ? Can any one help me with this problem. Please let me know the way to backup and restore the complete database.
Thanks
Sivan.G -
Sending Mail through SMTP in ASP.Net
Hi
i'm trying to send mail to an gmail or yahoo id from an ASP.Net application by SMTP service using the following code..
Code:Dim msg As New Net.Mail.MailMessage(TextBox1.Text, TextBox2.Text, TextBox3.Text, TextBox4.Text) Dim mySmtp As New Net.Mail.SmtpClient("IP ADDRESS") Try mySmtp.Send(msg) Label5.Text = "Mail Sent" Catch ex As Exception Label5.Text = ex.Message
-
Checking Duplicate Values in a List box....
Hi,
I'm having 2 listboxes and The task is to move the selected item from listbox 1 to listbox 2 which is not already present in listbox2. listbox 1's selection property is set to MULTIPLE. can u tell the solution to check the values and then enter it to the second listbox..if the item already exists in listbox 2 then it should be ignored.....
Thanks in Advance...... -
Using Timer Control in ASP.Net(vs2003)...
Hi all,
I have created a form and included a Timer control and hav set the interval as 1000. Now i hav a variable tim with val=10. the problem is i need to decrement the value every 1 second(tat's y i've given the interval as 1000) for that i've decremented the value of tim by 1 in the TIMER ELASPED event but when i display t value in a Label its not being displayed.... Can any one help me PLZZZZZZ.......
The Code... -
Changing the Date Format Using Format(Date.Today, "mm/dd/yyyy") in ASP.Net
Hi,
i have form in Asp.net(2003) in that i've to change the format of the date by the following statement
Format(Date.Tod ay, "dd/mm/yyyy")
but when i give this code the month part displays as 00 i.e i get the output as the folowing for eg:
"18/00/2007" can any one help me in changing the format...
Thanks in Advance.....
Sivan.G..... -
Accept only number in a text box in asp.net with VB
while entering data to text box it should only accept the numbers and no text should be accepted.. so how should this be done... please do reply..
No activity results to display
Show More
Leave a comment: