Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

Pravin Patil Mumbai

@Pravin Patil Mumbai
About
Posts
142
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • difference between these code
    P Pravin Patil Mumbai

    My pleasure yuifox... Happy coding ;)

    If you can dream it, You can do it. Explore My School - Schools In India

    Visual Basic csharp json question

  • f.lux - Better lighting for your computer [eye strain saver!]
    P Pravin Patil Mumbai

    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

    Free Tools c++ com json architecture

  • difference between these code
    P Pravin Patil Mumbai

    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

    Visual Basic csharp json question

  • This guys is asking the question and himself answering all...
    P Pravin Patil Mumbai

    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.

    Spam and Abuse Watch question com tools

  • Am I getting reputation points for someone else's work?
    P Pravin Patil Mumbai

    :thumbsup: for being so honest...

    I quit being afraid when my first venture failed and the sky didn't fall down.

    Site Bugs / Suggestions csharp html com tools question

  • jquery
    P Pravin Patil Mumbai

    :laugh:

    I quit being afraid when my first venture failed and the sky didn't fall down.

    Web Development javascript

  • Open a pdf file on a winform project
    P Pravin Patil Mumbai

    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.

    C#

  • CCTV in asp.net
    P Pravin Patil Mumbai

    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.

    ASP.NET csharp asp-net help

  • asp.net 2010 debugging
    P Pravin Patil Mumbai

    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.

    ASP.NET csharp asp-net javascript html css

  • WTF of the day...
    P Pravin Patil Mumbai

    Great link..... :thumbsup::thumbsup::thumbsup:

    I quit being afraid when my first venture failed and the sky didn't fall down.

    The Lounge com question announcement

  • Template in asp.net
    P Pravin Patil Mumbai

    most welcome....

    I quit being afraid when my first venture failed and the sky didn't fall down.

    ASP.NET csharp asp-net wpf tutorial learning

  • Whats shock and badluck..?
    P Pravin Patil Mumbai

    :wtf:

    I quit being afraid when my first venture failed and the sky didn't fall down.

    The Lounge question

  • Template in asp.net
    P Pravin Patil Mumbai

    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.

    ASP.NET csharp asp-net wpf tutorial learning

  • Trigger in asp.net
    P Pravin Patil Mumbai

    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.

    ASP.NET database help csharp asp-net sql-server

  • How to Finding Solutions
    P Pravin Patil Mumbai

    I think he is asking combination.....

    I quit being afraid when my first venture failed and the sky didn't fall down.

    C# tutorial question

  • DropDownList
    P Pravin Patil Mumbai

    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.

    ASP.NET help

  • Trigger in asp.net
    P Pravin Patil Mumbai

    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.

    ASP.NET database help csharp asp-net sql-server

  • Trigger in asp.net
    P Pravin Patil Mumbai

    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[

    ASP.NET database help csharp asp-net sql-server

  • c#
    P Pravin Patil Mumbai

    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.

    C# csharp help

  • Why Visual Studio does NOT suck today
    P Pravin Patil Mumbai

    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.

    The Lounge visual-studio csharp
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups