My pleasure yuifox... Happy coding ;)
If you can dream it, You can do it. Explore My School - Schools In India
My pleasure yuifox... Happy coding ;)
If you can dream it, You can do it. Explore My School - Schools In India
At lease someone cares for night coders.... Thank you very much Chris for sharing this tool. :thumbsup:
If you can dream it, You can do it. My Websites - Explore My School
Just to add to Dave's comment - The for-loop is faster than the foreach-loop if the array must only be accessed once per iteration. (More Details with Benchmark Test[^]).
If you can dream it, You can do it. Explore My School
theru[^], this guys is asking the question in Q/A forum and himself answering them all. He is not only answering the questions but also accepting them himself..... lint to his Q/A : http://www.codeproject.com/script/Answers/MemberPosts.aspx?tab=answers&mid=8263600[^]
I quit being afraid when my first venture failed and the sky didn't fall down.
:thumbsup: for being so honest...
I quit being afraid when my first venture failed and the sky didn't fall down.
:laugh:
I quit being afraid when my first venture failed and the sky didn't fall down.
ITextSharp is for create/edit purpose of PDF....? If OP just wants to open the file, then can't he do so by calling Process.Run('FilePath'); method....?
I quit being afraid when my first venture failed and the sky didn't fall down.
Refer this link : Camera Vision - video surveillance on C#[^] Hope this helps. All the best.
I quit being afraid when my first venture failed and the sky didn't fall down.
You can surely debug the code from .js file. But for that you need to enable the script debugging option from the browser. Follow these steps to enable the script debugging. IE Tools->Internet Options…->Advanced->Disable Script Debugging : Uncheck this box Hope this helps. All the best.
I quit being afraid when my first venture failed and the sky didn't fall down.
Great link..... :thumbsup::thumbsup::thumbsup:
I quit being afraid when my first venture failed and the sky didn't fall down.
most welcome....
I quit being afraid when my first venture failed and the sky didn't fall down.
:wtf:
I quit being afraid when my first venture failed and the sky didn't fall down.
I think you are looking for master pages in ASP.NET. Here are few links which will get you going.. 1. http://msdn.microsoft.com/en-us/library/wtxbf3hh.aspx[^] 2. http://www.asp.net/master-pages/tutorials[^] 3. http://www.asp.net/master-pages/tutorials/creating-a-site-wide-layout-using-master-pages-cs[^] 4. http://www.asp.net/master-pages/tutorials/interacting-with-the-master-page-from-the-content-page-cs[^] 5. http://odetocode.com/code/419.aspx[^] 6. ASP.NET 2.0 Master Pages[^] 7. http://www.w3schools.com/aspnet/aspnet_masterpages.asp[^] Hope this helps. All the best.
I quit being afraid when my first venture failed and the sky didn't fall down.
Yes for sure, if you do not want any invalid to insert in the database then also you can use the trigger. But again there are two options to do so.. Option 1: Use the Constraints 1. http://dev.mysql.com/doc/refman/5.0/en/constraint-invalid-data.html[^] 2. http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/general005.htm[^] 3. http://odetocode.com/articles/79.aspx[^] Option 2: Use Trigger 1. http://manuals.sybase.com/onlinebooks/group-as/asg1250e/sqlug/@Generic__BookTextView/48841;pt=48327/*[^] 2. Just do the rollback in the trigger to restrict the data Maintain data integrity: http://ss64.com/ora/syntax-constraints.html[^] I would recommend you using the first approach, because Triggers are not that easy when it comes to maintainance of the project. Hope this helps. All the best.
I quit being afraid when my first venture failed and the sky didn't fall down.
I think he is asking combination.....
I quit being afraid when my first venture failed and the sky didn't fall down.
I fell off the chair laughing at this one........ OP would have certainly got the answer..
I quit being afraid when my first venture failed and the sky didn't fall down.
You do not need to use the triggers through ASP.Net. They will be automatically fired by SQL.
I quit being afraid when my first venture failed and the sky didn't fall down.
You first need to understand the trigger. Here is a brief explanation : Trigger is native to SQL and not to ASP.NET. Trigger is a code segment in SQL that gets executed when a specified condition is met. There are three types of trigger Inser, Update, Delete trigger. Insert Trigger will be executed when you insert a new row into the table. Same applies to update and delete trigger. So with this much explanation you must be clear that Trigger is the thing that is not called explicitly, rather SQL server will automatically execute your trigger when you insert, update or delete any record from the table. Coming back to your question : As you said, you know how to call a stored procedure, so call it as you do. Write a trigger on your desired table for a insert/update/delete operation. When the specified operation is performed in the Stored Procedure, trigger will be automatically fired by SQL. Important : Trigger is in SQL and not ASP.NET. Trigger can not be executed explicitly as you do Stored Procedure. Trigger is taken care by SQL server. For further reference : How to Write Trigger 1. http://msdn.microsoft.com/en-us/library/ms189799.aspx[^] 2. http://www.sqlservercentral.com/Forums/Topic351362-92-1.aspx[^] 3. http://download.oracle.com/docs/cd/B12037_01/server.101/b10759/statements_7004.htm[^] How Trigger Works 1. http://manuals.sybase.com/onlinebooks/group-as/asg1250e/sqlug/@Generic__BookTextView/47865;pt=47764[^] 2. http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/triggers.htm[
I think you have missed the links Abhinav... Everything is appearing as a text only.....
I quit being afraid when my first venture failed and the sky didn't fall down.
VS is the best Development environment for the .Net development. And good thing is, it is getting better and better....
I quit being afraid when my first venture failed and the sky didn't fall down.