Categories
- 2011-2020 Agile Apple ASP.NET Cloud Companies Comparison Creativity Databases Deliberate Practice Experience Google Innovation Learning Management Microsoft Mobiles Predictions Productivity Programmers Programming Project Management SDLC Skills SoftwareCraftsmanship SQL-Server Success Super Uncategorized VB.NET
- alignment
- Amazon
- Apple
- ASP.NET
- Backup
- behaviour
- Cell
- Cloud
- cloud development
- comments
- Companies
- Comparison
- Creativity
- CSS
- Databae
- Databases
- DBA
- DELETE
- Deliberate Practice
- DevOps
- Dreyfus Model
- EC2
- error msg
- events
- expertice
- frames
- free software
- God
- GridView
- happyness
- HTML
- HTTP handler
- image
- INSERT
- JavaScript
- layout
- learning
- MaxSize
- Microsoft
- morals
- Nokia
- Oracle
- page
- parameter
- path
- PC development
- phone development
- predict
- Productivity
- QueryString
- risk
- science
- Smart Solution
- social media
- SoftwareCraftsmanship
- sp_
- SQL Server
- steve jobs
- Storage
- tables
- team
- Time Management
- Tough Problem
- TreeView
- UI
- UPDATE
- Upload
- VB.NET
- Virtualization
- VM
- web.config
- web development
- Word
Top Posts & Pages
Twitter Updates
Tweets by AhmedAbayazidCounter
Category Archives: JavaScript
Print using JavaScript
If you would like to print your HTML page contents using your printer, here is a one line javascript: Code Explain: <a href=”” : This is for the mouse hand to appear when mouse hover over print icon. onclick=”” : … Continue reading
Posted in HTML, JavaScript, Programming
Leave a comment
How to open a new page/window and send parameters by clicking a button?
Because neither Server.Transfer nor Response.Redirect has an option to open a new page/window , this is a workaround: Failed Solutions: I thought this is a Smart solution <asp:Button ID=”OpenNewPage” runat=”server” Text=”Open New Page” OnClientClick =”document.forms [0].target = ‘_blank’;“/> But it … Continue reading