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
O

Om Prakash Pant

@Om Prakash Pant
About
Posts
20
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Issues with MsgBox result
    O Om Prakash Pant

    You can use javascript as well for this:

    <%Dim DeckName, DeckNo
    DeckName = Request.QueryString("DeckName")
    DeckNo = Request.QueryString("DeckNo")
    If Request.QueryString("Change") = "Y" then %>

    <script type="text/javascript">
    var r=confirm("Would you like to also update UMID Deck Rev Number?");
    if (r==true)
    {
    window.location.replace("UMID_EditDeck.asp?DeckNum=<%=DeckNo%>");
    }
    }
    </script>
    <% End If %>

    Om Prakash Pant

    ASP.NET csharp tools tutorial question announcement

  • ORA-01033: ORACLE initialization or shutdown in progress
    O Om Prakash Pant

    Please check: http://www.dba-oracle.com/t_ora_01033_initialization_shutdown_progress.htm[^]

    Om Prakash Pant

    Database help database oracle

  • Simple Master/Details relationship??
    O Om Prakash Pant

    Please check the following example: A Master Detail DataGrid[^]

    Om Prakash Pant

    Database data-structures help question

  • Select Query problem...
    O Om Prakash Pant

    Although the data type is char, but the data in the column is numeric then you can convert the field and then compare.

    select * from table_name where cast(field_name as int) = 100;

    Om Prakash Pant

    Database database help question

  • i need help plz
    O Om Prakash Pant

    If you don't want to use the datagrid view then you can use HTML table to display. Example: http://www.asp.net/mvc/tutorials/displaying-a-table-of-database-data-cs[^]

    Om Prakash Pant

    Database csharp css database help

  • compare two tables in different environments.
    O Om Prakash Pant

    Please check the following link which might help you: http://www.sqlteam.com/article/comparing-tables[^]

    Om Prakash Pant

    Database question database sql-server sysadmin help

  • FORM Submit email not working using ASP
    O Om Prakash Pant

    Please check the following link for more examples and explanation http://classicasp.aspfaq.com/email/how-do-i-send-e-mail-with-cdo.html[^]

    Om Prakash Pant

    ASP.NET help html com question

  • how to open ms word from asp.net with c#
    O Om Prakash Pant

    Please check the following KB article: Microsoft Word Documents from ASP.NET[^]

    Om Prakash Pant

    ASP.NET csharp tutorial asp-net

  • JavaScript:Window.Open(...)
    O Om Prakash Pant

    By following code, you can specify the size of a window so that it will open a window with the same size document area <!-- function myOpen(page,width,height) { if (navigator.appName == 'Netscape') { adjWidth = width + 20; adjHeight = height + 20; } else { adjWidth = width + 50; adjHeight = height + 150; } window.open(page,'windowName','width=' + adjWidth + ',height=' + adjHeight + ',toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes'); } myOpen('irt.gif',170,66); //--> Om Prakash

    Web Development question csharp javascript html tools

  • How to call &quot;Send page by email&quot; in javascript?
    O Om Prakash Pant

    Please check the following url: http://javascript.internet.com/page-details/email-this-page.html Om Prakash

    Web Development javascript tutorial question

  • how to create text boxes dinamically in javascript???
    O Om Prakash Pant

    Please check the following link : http://www.psacake.com/web/je.asp[^] Om Prakash

    Web Development javascript help tutorial question

  • download items
    O Om Prakash Pant

    You can use some component for download such as smartupload. Please check the following link: http://www.aspsmart.com/scripts/aspSmartUpload/publigen/content/templates/show.asp?P=357&L=EN Hope this helps Om Prakash

    Web Development tutorial question

  • Session expiry in ASP
    O Om Prakash Pant

    What is the default settings done as IIS level? Om Prakash

    Web Development help question

  • asp help
    O Om Prakash Pant

    Hi, you can access this in javascript as follows: top.frames[0].form1.combo_name.selectedIndex Om Prakash

    Web Development help tutorial question

  • SQL Problem
    O Om Prakash Pant

    You can use 'not in' in query : select * from table1 where idperson not in (select idperson from table2) Om Prakash

    Database database help question

  • How to Insert a comma &quot;,&quot; in the SQL SERVER?
    O Om Prakash Pant

    SQL server does inserts comma in the table. Check the following query : Insert into Names(Name) values(FirstName + ',' + I + ',' + LastName'); Om Prakash

    Database database sql-server sysadmin tutorial question

  • cancel button Save Dialog box track
    O Om Prakash Pant

    If u are using javascript, then here is the code: function Submit() { if(confirm('continue?')) alert('ok') //submit form here.. else alert('cancel') //do nothing } Om Prakash

    Web Development help tutorial

  • Forward slashes as VBScript comment
    O Om Prakash Pant

    Forward slashes can be used as comments in javascript. In VbScript as u said, rem or single quotes will work. Om Prakash

    Web Development help question

  • record inserting twice in database
    O Om Prakash Pant

    Is there any code in the submit button? If yes, then does this javascript code include form.submit() statememt..? If it does, then remove form.submit() line. Om Prakash

    Web Development database sysadmin

  • VBScript and ASP
    O Om Prakash Pant

    You cannot call ASP function from client side. You can submit the form and then in the next page, call "ShowMe" function. Om Prakash

    Web Development help
  • Login

  • Don't have an account? Register

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