Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
52% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
5
Posts with Downvotes
5
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #3K
~31.7K People Reached
Favorite Tags
Member Avatar for niths

hi all, i had a image upload option where i can upload images.Now how do i select multiple files and upload them... [CODE]<form name="upload" enctype="multipart/form-data" action="fileupload.php" method="post"> <table> <tr> <td> Upload Images: <input type="file" name="imageupload"> </td> <td><input type="submit" name="submit" value="Submit"></td> </tr> </table> </form>[/CODE] when i click browse button i can …

Member Avatar for sheikhali449
0
512
Member Avatar for niths

hi all, I have a asp page. In that i am displaying some data in a grid view from database.In grid view i am displaying TicketNo,TicketName and status. Now my problem is that when page loads if the status have a value as 'OPEN' that row should be in red …

Member Avatar for A0110
0
255
Member Avatar for niths

hello all, In my script i have a plus(+) and minus(-) signs. Instead of those i need to call image from my image folder. so can anyone help me please.. Thank You.[ICODE]<script language="JavaScript"> $(document).ready(function() { $(".topnav").accordion({ accordion:false, speed: 500, closedSign: '[+]', openedSign: '[-]' }); }); </script> [/ICODE]

0
73
Member Avatar for niths

Hello, I have a page where i can upload files. so when i upload a file with .odt extension it should convert those files to word document files.. so can any help me.. Thank you. [CODE]protected void btnUpdate_Click(object sender, EventArgs e) { string destination = Server.MapPath("~/Documents" + "\\" + name …

Member Avatar for harishbansal90
0
464
Member Avatar for niths

Hello, I have a page where i can upload images. Now i need to copy the uploaded images to a third party server. I have the details of that page. so can anyone help me. Thank You.

Member Avatar for diafol
0
110
Member Avatar for niths

HI all, I had a gridview in which users are listed in that. In that gridview i had an edit option so that i can edit user details. so my problem is... when i click edit in a row i need the userid present in that row. Thank you. here …

Member Avatar for ranj_s20
0
345
Member Avatar for niths

hello, I am having a windows application where i need to load a website. This is fine with me. Now in that website i am having 20 checkboxes, now i need to get all the checkbox values to my windows application dynamically. so can anyone give me some idea... Thank …

Member Avatar for stbuchok
0
56
Member Avatar for niths

hello everybody, I am having problem with logout of a Users Account in Firefox because whenever the user presses the Back browser button, the personal page was displayed, showing their personal details. Is there a way to logout successfully in firefox and chrome i;e when user click back button after …

Member Avatar for jfarrugia
0
68
Member Avatar for niths

hi all, In my page i need to get the system ip address. i used this code. [CODE] string myHost = System.Net.Dns.GetHostName(); string myIP = System.Net.Dns.GetHostByName(myHost).AddressList[0].ToString();[/CODE] this is working fine when i run application in local system. Now i hosted that application in server say(10.20.7.63). so now when i access …

Member Avatar for zmeditation1
0
208
Member Avatar for niths

hi all, I am having a string. Now i need to get the last word in that string. suppose string text = "Hello.. how are you"; Now i need to get 'you' from that string. can anyone help me.. Thank you.

Member Avatar for niths
0
135
Member Avatar for niths

hi all, i had a problem with displaying the data in textbox. My code is here [CODE] string note = "SELECT Notes,NDate FROM Ticket_Notes WHERE TicketNo ='" + tktno.Text + "' "; SqlCommand cmd3 = new SqlCommand(note, con); SqlDataReader id = cmd3.ExecuteReader(); while (id.Read()) { dnotes = id.GetValue(0).ToString(); ndate = …

Member Avatar for CsharpChico
0
181
Member Avatar for niths

hi, i am using ajaxslideshow in my website. i had got some code after searching in google.It is working fine but it is showing images which are in folder.I need images which are in database. so how can i get images based on image path stored in database. here is …

0
80
Member Avatar for niths

Hi all, I have some images path in database. So i need to get those images in a slide show like this [URL="http://www.trans4mind.com/personal_development/JavaScript/imageSlideShow.htm"]http://www.trans4mind.com/personal_development/JavaScript/imageSlideShow.htm[/URL] But in this link only 4 images were there. But for me i need images from database. so how can we do that can anyone help me.. …

Member Avatar for abelLazm
0
95
Member Avatar for niths

hi, After searching in google for a long time i found this code for uploading multiple files at a time in .net. so here is the code ---sample.aspx--- [CODE]<%@ Page Language="VB" %> <script runat="server"> Private Sub InsertMsg(ByVal msg As String) End Sub Private Sub Attachments1_AttachmentAdded(ByVal sender As Object, ByVal args …

Member Avatar for dnanetwork
0
108
Member Avatar for niths

hi all, i am integrating facebook to my website so that user can login into facebook and get his photos from facebook to my website.. so how can i do that can anyone help me.. Thank u..

Member Avatar for niths
0
222
Member Avatar for niths

hi all, i had a folderbrowserdialogue. and wen i click on a folder it should get me that folder name, files names in that folder and subfolders and files names in that subfolder to be displayed in listview. i had tried this and it is displaying files in selected folder.Now …

Member Avatar for Mitja Bonca
0
514
Member Avatar for niths

i had a database with two tables a.table1,b.table2. In a.table1 i had three columns i;e a.col1(primary key),a.col2,a.col3 In b.table2 i had three columns i;e b.col1(foreign key),b.col2,b.col3 I want to delete a row in a.table1,b.table2 whose column names are different...but iam getting error as a.col1 is a primary key... so hw …

Member Avatar for debasisdas
0
64
Member Avatar for niths

hi all, i am doing a website where the client can upload images.. and for storing that images i am using this amazons3. so now i am in a confusion, like how to give path to store in amazons3.. can anyone suggest me.. Thank you.

Member Avatar for itknowledge_now
0
84
Member Avatar for niths

hi all, i am having a page of some images thumbnails. so now wen i click on image i need to get a lightbox popup. so for that i am using jquery. so wen i run the application i am getting error like this.. so can anyone helpme. this is …

Member Avatar for kvprajapati
0
98
Member Avatar for niths

hello, i am having a problem while displaying files present in the selected folder (using folderbrowserdialog) in a listbox. i had tried this but i didnt get it... so can anyone suggest me if there is any error over here.. Thank u.. [CODE] FolderBrowserDialog folderBrowserDialog1 = new FolderBrowserDialog(); folderBrowserDialog1.ShowDialog(); DialogResult …

Member Avatar for kvprajapati
0
103
Member Avatar for niths

hello, I am having a website, to that website i need to integrate picasa so that people can upload photos which are in picasa site..so how can we do that can anyone suggest me.. Thank u..

Member Avatar for pritaeas
0
51
Member Avatar for niths

hello all, i need html table to be inserted in php code..i tried this but i am getting some problem with it so can anyone help me.. Thank u.. [CODE] $messageproper ="\n\n" . "Name: " . ucwords($_POST['name']) . "\n" . "Email: " . ucwords($email) . "\n" . "Message: " . …

Member Avatar for nonshatter
0
174
Member Avatar for niths

hello all, i had a page where we can see list of users and there is an option to edit them. So when we click on edit button a popup with lightbox comes and now when i edit it and press update... nothing is updating. The reason is i need …

Member Avatar for pritaeas
0
77
Member Avatar for vzradha

I have a form which will have to call two different php scripts based on the click of 2 submit buttons. Below is a sample of what I have so far [CODE] <?php echo'<form name="form1" method="post">'; echo '<div>'; echo '<input type="submit" name="submit1" id="submit1" value="Create">'; echo '</div>'."\n"; echo '<div>'; echo '<input …

Member Avatar for niths
0
178
Member Avatar for niths

hello all, i need multiple upload at once for my site.that should be a very similar to this [url]http://demo.element-it.com/Examples/multipow/index.htm[/url] 1.simple upload (click on that) i tried this but it is trial version. so can any one suggest me if there are any other like this and that should be freeware... …

Member Avatar for Cool&Awesome
0
116
Member Avatar for niths

hi all, i had a image upload code and it is working fine but while uploading i need some progress bar. so i got some progress bars..so can any one suggest me how to integrate that progress bar in my code...Is there any examples... Thank u.

Member Avatar for muralibobby2015
0
80
Member Avatar for niths

hi all, i need to save the uploaded image in some images folder with uploaded date folder and then image like images/2010-11-01/image.jpg can any one help me.. i tried this...it is working fine but wat i want is i need to create uploaded date folder and save in that folder.. …

Member Avatar for niths
0
116
Member Avatar for niths

hi all, i need to split a string and place it in two strings..like $f1=123 4567 is a string. i need to place 123 in $f2 and 4567 in $f3 how to do that can any one help me

Member Avatar for cwarn23
1
106
Member Avatar for niths

hi all, i had a query and i need to substr that query. [CODE]@s ="select Emp_Id,First_Name,Last_Name,Gender,Mobile_No,Email_id,Blood_Group from Employee where Emp_ID like '%", empid ,"%' and [/CODE] my query is this now i used substr [CODE]set str1 = (SUBSTR(@s,-4));[/CODE] SO in str1 i am getting values as 'and'...Now i dont need …

Member Avatar for smantscheff
0
71
Member Avatar for niths

hi all, In my page i had a highest education qualification section and 2nd Highest Qualification 1.In HIghest qualification i had course and Year of pass as dropdown fields 2 In 2nd Highest qualification i had course and Year of pass as dropdown fields same as highest qualification. Now i …

Member Avatar for fornandakishore
0
4K