Hello Friends
Here i write some thing for .net devlopers who need to upload multiple file with help of fileupload control in asp .net. nice thing about this code is you don`t have to create as much button as your fileupload control you add in your aspx page. this code gives you upload all files with single click it is same as yahoo mail attach file in mail.
Please see below code and follow that all.
Make One Upload.aspx page and paste this code in that page.
Add Five or six or as you want fileupload control and one button with id “btnUpload” and create one click event for that button. paste below code in that event.
Protected Sub btnUpload_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnUpload.Click
Try
Dim FC As HttpFileCollection = Request.Files
For i As Integer = 0 To FC.Count - 1
Dim Upload As HttpPostedFile = FC(i)
If Upload.ContentLength > 0 Then
Upload.SaveAs(Server.MapPath(”~/MemberSection/plans”) & “/” & System.IO.Path.GetFileName(Upload.FileName))
End If
Next i
Catch ex As Exception
Response.Write(”Error:
” & ex.Message)
End Try
End Sub
Enjoy Multiple file upload with single click.
Hello Friends,
.net guys and girls who wants to add flash file in .aspx pages don`t worry at all here i serve you some guild line and code for those who wants to add flash file flash menu or any flash movie in aspx pags.
Please Copy and Paste below code in your aspx page replace “yourfilename” to your Flash file name and enjoy after that effect. Read the rest of this entry »
Hello Friends i got some thing for you. who think that he or she will build his or her carrier in asp .net and Don`t have a time to go and study .net. so don`t worry guys and girls i provides some site names and links which provides free tutorials,code and videos for you at free of cost. Read the rest of this entry »
Hello Friends,
Asp .Net Guys and girls i have one great news for all of us.Visual Studio 2005 and 2008 not Provides any media control for .net so if we want to add any media related files in our web page like flash movie , video file and other media file than we was used some third party control or some embed tags.
I have lots of asp .net media control which supports “Ajax” and which are certified by Microsoft asp.net team. So just go below sites and download all controls use in your websites and improve your appearance of web page. this all asp .net media control available for visual studio 2005 and 2008.
Read the rest of this entry »
Hello Friends Please Read this Post very carefully and you will find out that urlRewriting is as simple as get ball from chlids hand.
Please Follow the steps
First you need to decide that from .aspx which extenstion you want to rewrite your page .html,.htm,.asp or with wildcard charactres.
After that you will add one class file in app_code folder name with as you want but whatever name is given by you please add that name in wb.config module section how i will tell you in same post. Read the rest of this entry »
Hello Friends i recently found that some web programmers and designer not able to understand how to manage whole site in <div> tag. programmer and designer think that work with table format in web page is easier than div format. so i write this post for that guys and girls who afraid of with working div tags.
Read the rest of this entry »
Some Clients Need That When In Grid view Sorting Oration Will Perform we Can`t Get That what will be Doing in Grid. Also Clients Said that in Which Direction Our Sorting is Currently available that is also not know please do some thing. So Here is the answer Please Paste this Simple Code in Your .Aspx.vb File and Get Sorting Indicator When you Do Sorting.
Read the rest of this entry »
Visit Below Url Where they Provides Free Of Cost Form Creation With Applying Just Few Clicks.
http://jotform.com/
Go to This Url After that First Of all Click On New Menu. New Menu Ask that Which Type Of Form You Want to Build. Select Form Type. Site Provides Tool Box , Power Tools , Payment Tools And Properties also Which Will Help you to Create Professional Form.
After Creating Whole Page Just Click On Source Button Which will Generates You Html Code With CSS(Cascade Style Sheet).Copy whole Code and Place in to Your Web Page.
Enjoy Web Page With Out Any Effort.
Home Page : Click Here