-
- AJAX stands for Asynchronous Java script and XML
- AJAX enable a page asynchronously post back a page.
- Only required part load from server instead of entire page so its increase web performance.
-
Some control which are design for post back like file browser which can’t load a file if its not post back so you can’t upload a file when it’s in AJAX section.For upload a file in AJAX section using file browser you need to register a button for post back if user will click on than button then all page will be reloaded.<asp:UpdatePanel ID="U1" runat="server"><ContentTemplate>........................................................................</ContentTemplate><Triggers><asp:PostBackTrigger ControlID="saveButton"></Triggers></asp:UpdatePanel>Here is your html code i leave ...... for your content Savebutton is a which post back entire pageSo i registered this button in trigger section post backTrigger register control which have to post back.....
Friday, 8 June 2012
How to save a file from HTML File Control in AJAX Section Using ASP.Net with C#
I am a programmer and the founder of Girfa IT Services, working in the field of technology since 2009. I started my career as a computer teacher, which was my full-time profession for nearly 10 years. After a decade of teaching, I decided to turn my passion for programming into my full-time career, while continuing teaching as a part-time activity. In real life, I consider myself a bit lazy—and I have actually turned that laziness into my programming philosophy! I always try to build reusable components, tools, and solutions instead of writing the same code repeatedly. This has become one of my key strengths as a programmer and helps me save time, reduce repetitive work, and build applications more efficiently. For me, programming is not just about writing code; it is about finding smarter, simpler, and reusable ways to solve problems. I believe that a good programmer should not only make things work, but should also make them easier to maintain, reuse, and improve.
Wednesday, 6 June 2012
Create Album Using Java Script with fade effect
Hi.................
This post will help you to make a picture album.Pictures of album will change during a second internal.
I have done this with the help of java script.
- This post will create a static album in nature you can't add a new image at run time if you want to add or remove image you will have to change java script code.
- Save your picture in a folder and rename all picture into 1 to increasing order e.g (1.jpg , 2. jpg ,3,jpg...)
- Count no. of picture in your folder because I'll use this number in java script code block
- I used a timer which will run continue you can not stop it
I am a programmer and the founder of Girfa IT Services, working in the field of technology since 2009. I started my career as a computer teacher, which was my full-time profession for nearly 10 years. After a decade of teaching, I decided to turn my passion for programming into my full-time career, while continuing teaching as a part-time activity. In real life, I consider myself a bit lazy—and I have actually turned that laziness into my programming philosophy! I always try to build reusable components, tools, and solutions instead of writing the same code repeatedly. This has become one of my key strengths as a programmer and helps me save time, reduce repetitive work, and build applications more efficiently. For me, programming is not just about writing code; it is about finding smarter, simpler, and reusable ways to solve problems. I believe that a good programmer should not only make things work, but should also make them easier to maintain, reuse, and improve.
Image Slide Show Using HTML
you to make a moveable slide show right to left
This is a flat HTML coding.
This is achieve by marquee tag.Marquee tag has capacity to move any type of object inside it.I used marquee for make this slide show.
- I saved my HTML file and all image in a folder so used relative path
- if your image isn't in current folder then you need to provide full path of that image.....
I am a programmer and the founder of Girfa IT Services, working in the field of technology since 2009. I started my career as a computer teacher, which was my full-time profession for nearly 10 years. After a decade of teaching, I decided to turn my passion for programming into my full-time career, while continuing teaching as a part-time activity. In real life, I consider myself a bit lazy—and I have actually turned that laziness into my programming philosophy! I always try to build reusable components, tools, and solutions instead of writing the same code repeatedly. This has become one of my key strengths as a programmer and helps me save time, reduce repetitive work, and build applications more efficiently. For me, programming is not just about writing code; it is about finding smarter, simpler, and reusable ways to solve problems. I believe that a good programmer should not only make things work, but should also make them easier to maintain, reuse, and improve.
Monday, 4 June 2012
Save and Retrieve an image in Ms Access Using VB.Net
I am a programmer and the founder of Girfa IT Services, working in the field of technology since 2009. I started my career as a computer teacher, which was my full-time profession for nearly 10 years. After a decade of teaching, I decided to turn my passion for programming into my full-time career, while continuing teaching as a part-time activity. In real life, I consider myself a bit lazy—and I have actually turned that laziness into my programming philosophy! I always try to build reusable components, tools, and solutions instead of writing the same code repeatedly. This has become one of my key strengths as a programmer and helps me save time, reduce repetitive work, and build applications more efficiently. For me, programming is not just about writing code; it is about finding smarter, simpler, and reusable ways to solve problems. I believe that a good programmer should not only make things work, but should also make them easier to maintain, reuse, and improve.
Saturday, 2 June 2012
Retrieve an Image from SQL Server in Picture Box Using VB.Net
Hi, There
Retrieving an image from sql server database is so simple just do following steps
Retrieving an image from sql server database is so simple just do following steps
- Make a project and database which i mention in my Blog Take a look
- Add a picture box on your form, and a button for show image
- On Show Button Click event paste following code
I am a programmer and the founder of Girfa IT Services, working in the field of technology since 2009. I started my career as a computer teacher, which was my full-time profession for nearly 10 years. After a decade of teaching, I decided to turn my passion for programming into my full-time career, while continuing teaching as a part-time activity. In real life, I consider myself a bit lazy—and I have actually turned that laziness into my programming philosophy! I always try to build reusable components, tools, and solutions instead of writing the same code repeatedly. This has become one of my key strengths as a programmer and helps me save time, reduce repetitive work, and build applications more efficiently. For me, programming is not just about writing code; it is about finding smarter, simpler, and reusable ways to solve problems. I believe that a good programmer should not only make things work, but should also make them easier to maintain, reuse, and improve.
Friday, 1 June 2012
Save an Image in SQL Server Database With VB.Net
Hi
Saving Image is an important part of any software,They're many ways to handling image.One easy and secure way is save your image in sql server database.If you want to save image in sql server then follow these steps
Saving Image is an important part of any software,They're many ways to handling image.One easy and secure way is save your image in sql server database.If you want to save image in sql server then follow these steps
- Make a database and a table with following description my database name is bsw and table name is stu
VB Project Controls Which you have to use
- You have to import 2 name space
Imports System.IO
Imports System.Data.SqlClient - Add OpenFileDialog control
- And make a global string variable named str
- On Browse picture button click paste following code
OpenFileDialog1.ShowDialog()
str = OpenFileDialog1.FileName
On Click event of save button paste following code
Dim con As New SqlConnection("initial catalog=bsw;data source=.;integrated security=true") Dim com As New SqlCommand()
Try
Dim fs As New FileStream(str,FileMode.Open)
Dim data() As Byte = New [Byte](fs.Length) {}
fs.Read(data, 0, fs.Length)
fs.Close()
'readed image
Dim roll As New SqlParameter("roll", SqlDbType.Int)
roll.Value = Val(TextBox1.Text)
Dim name As New SqlParameter("name", SqlDbType.Char, 10)
name.Value = TextBox2.Text
Dim city As New SqlParameter("city", SqlDbType.Char, 10)
city.Value = TextBox3.Text
Dim img As New SqlParameter("img", SqlDbType.Image)
img.Value = data
'Adding parameters
com.Parameters.Add(roll)
com.Parameters.Add(name)
com.Parameters.Add(city)
com.Parameters.Add(img)
con.Open()
com.Connection = con
com.CommandText = "insert into stu values(@roll,@name,@city,@img)"
com.ExecuteNonQuery()
MsgBox("Saved")
Me.StuTableAdapter.Fill(Me.BswDataSet1.stu)
Catch ex As Exception
MsgBox(ex.Message)
End Try
I am a programmer and the founder of Girfa IT Services, working in the field of technology since 2009. I started my career as a computer teacher, which was my full-time profession for nearly 10 years. After a decade of teaching, I decided to turn my passion for programming into my full-time career, while continuing teaching as a part-time activity. In real life, I consider myself a bit lazy—and I have actually turned that laziness into my programming philosophy! I always try to build reusable components, tools, and solutions instead of writing the same code repeatedly. This has become one of my key strengths as a programmer and helps me save time, reduce repetitive work, and build applications more efficiently. For me, programming is not just about writing code; it is about finding smarter, simpler, and reusable ways to solve problems. I believe that a good programmer should not only make things work, but should also make them easier to maintain, reuse, and improve.
Subscribe to:
Posts (Atom)
