256 Posted Topics

Member Avatar for sheepmage
Member Avatar for evios

Why do you need the excel document if you are simply adding all this data to the database? Do all your calculations in your code behind. it will be faster.

Member Avatar for Fungus1487
0
148
Member Avatar for dwlamb_001

are you displaying tabular information ? it very much looks like it. one thing is tables are [B]NOT[/B] bad. But are simply bad when using them for entirely different purposes than they were created for. If you have tabular data use tables.

Member Avatar for dwlamb_001
0
130
Member Avatar for Lamaison

[QUOTE=Lamaison;600178]I'm a PHP newbie, I need to assign query results to variables that have an incrementing number in the variable name, can someone help me with this? So let say I return a few rows of from MySQL, I would like loop though the results and assign the values to …

Member Avatar for Fungus1487
0
145
Member Avatar for lbob

because you are dynamically creating buttons they are not retaining state on postback and therefore wont fire the event assigned to them. You need to re-instantiate each dynamic control individually. E.g. when creating each control assign it an ID and save this to the viewstate. Then on page load loop …

Member Avatar for ericstenson
0
103
Member Avatar for bala24

couldnt you use VBA in the ppt itself. You can use tcp/ip connections thru VBA. it may be along winded approach but without using a third party tool you may be solving this nightmare for a very long time.

Member Avatar for bala24
0
104
Member Avatar for kavithakesav

i dont think your ICO is a proper icon how did you create/convert it?

Member Avatar for Fungus1487
0
314
Member Avatar for CassieJ

if you used a server side language such as php/asp.net you could generate content based on say what a client has stored in a database. this is how most heavy client edited sites work that i have worked on due to them not having to have any experience with the …

Member Avatar for Fungus1487
0
150
Member Avatar for abz258
Member Avatar for Fungus1487
0
71
Member Avatar for marequi

[QUOTE=Kalidoss;590514]Dear Bharathi Krishna.. I am a beginner to this forum as well as creating web pages... I am basically a geologist, but interested in developing web pages... could you please help me out from the scarch to design a member login page.. which verifies the username and password from the …

Member Avatar for Fungus1487
0
324
Member Avatar for queenc

why do you need to use ajax ? you can do a simple postback which is alot easier. if ajax is amust you must have some knowledge of javascript aswell.

Member Avatar for queenc
0
261
Member Avatar for queenc

[code]SELECT startpost.posttitle, startpost.dat, creuser.username FROM startpost INNER JOIN creuser ON startpost.userid = creuser.uid[/CODE] That will display all the startpost data with the username for the startposts. Specifying a Where clause like below will let you show one startpost record based on its id. [code]SELECT startpost.posttitle, startpost.dat, creuser.username FROM startpost INNER …

Member Avatar for queenc
0
113
Member Avatar for ritika_khanna

you need to do this on the client with javascript [CODE]window.print();[/CODE] although this will not work in any other browser except internet explorer.

Member Avatar for Fungus1487
0
75
Member Avatar for ritika_khanna

contact the bank/payment site you wish to use as they all have there own tools for doing this and all are different. They usually have a development sample aswell to get you up and running.

Member Avatar for Fungus1487
0
72
Member Avatar for yassar

but if you have to use mysql then go the php route as it is integrated alot better into the php language.

Member Avatar for Fungus1487
0
145
Member Avatar for dskumar_85

Hey hey, this is an old VB ASP.net project i did, shouldnt be too hard for you to change the syntax. [CODE] Dim memSt As New System.IO.MemoryStream Dim imgMe As Drawing.Image = Drawing.Image.FromFile(Server.MapPath("me.jpg")) ' Get image imgMe.Save(memSt, Drawing.Imaging.ImageFormat.Gif) ' Save image to memory stream memSt.WriteTo(Response.OutputStream) [/CODE] this example outputs the …

Member Avatar for Fungus1487
0
39
Member Avatar for brightline

[QUOTE=brightline;586953]I had stored a word file in database in "image field" then I restore it in a byte array. I want to convert this byte array into string to write it on the web page. I am using ASP.NET 0.2 and SQL 2005. thanks.[/QUOTE] [CODE]System.Text.Encoding.GetString(byte())[/CODE]

Member Avatar for Fungus1487
0
92
Member Avatar for brightline

will you be looking to edit this document online then update what is in the database ? also why bother storing this in a database and not just reference a local file ?

Member Avatar for Fungus1487
0
95
Member Avatar for vasudha k

what does your code to varify the password look like? could we see a sample?

Member Avatar for Fungus1487
0
85
Member Avatar for shaveta chatak

1) create a web application 2) right click on the solution explorer root folder. 3) press "Add New Item" 4) select "Web User Control" and give it a name. 5) write your asp.net/html etc. 6) to use on a page drag and drop from solution explorer.

Member Avatar for Fungus1487
0
54
Member Avatar for vishakha_ate

do you have flash installed for internet explorer as firefox uses a seperate plugin to IE. Also use firefox. It is a faster browser!

Member Avatar for vishakha_ate
0
115
Member Avatar for Fungus1487

Hello All. This seems like a simple question but i cannot find a solid answer anywhere. Im in the middle of streamlining our web application for use on local network and external use. When a form loads there are usually several blocks of code that run. EG. Fetch Title From …

Member Avatar for Fungus1487
0
103
Member Avatar for Fungus1487

Hello All, im looking to find the best technique to use for the following scenario i believe this is going to be best using application level variables. Scenario: I have a table in a database with roughly 100 rows (increasing constantly) they are all holding integers. These rows all hold …

0
61
Member Avatar for Fungus1487

Hello all, hope i can get some help on this one as im not brilliant with my database scripts. I have table "A" and table "B", table "A" contains information on a portfolio and table "B" is a joining table which connects this table to a user of the system …

Member Avatar for Fungus1487
0
67
Member Avatar for vamsikgummadi

there are some free components available that allow you to view excel documents in asp.net i cant think for the love of god where i saw them tho. best to GOOGLE it. Another alternative is to use something like a datagrid and create your own excel like application. this way …

Member Avatar for vamsikgummadi
0
289
Member Avatar for Fungus1487

Hello all, i have googled around without any reference to what i am looking for (whether it can be done). I wish to limit the amount of memory used at any one time per session I.e. for tasks that may require some time i dont want one user using up …

0
57
Member Avatar for Serunson

i cant really say i like one genre more than another as it also depends on how im playing it. Computer based games then personally startegy is where its at, whereas consoles i like action/adventure/rpg im guessing others will have different preferences too.

Member Avatar for maravich12
0
139
Member Avatar for fatihpiristine
Member Avatar for Corna
Member Avatar for ebabes
Member Avatar for Venom Rush

you dont need str_replace inside str_replace etc etc. use two arrays [CODE] $your_txt = "Hello 'WORLD'"; $txt = array("'", "\""); $txt_replace = array("'", "\\\""); $x=str_replace($txt, $txt_replace, $your_txt); echo $x; [/CODE] this way you can have two arrays and no messy inner replacements inside replacements. although nav33n may have shown you …

Member Avatar for Venom Rush
0
214
Member Avatar for Fungus1487

Hello all, i have recently finished work on a clients database. they now wish for one field in the database to have 10% taken off for each record. can this be performed soley through an SQL statement on the MYSQL database.

Member Avatar for Fungus1487
0
95
Member Avatar for Geminyi

[QUOTE=macneato;510787]Thing is... when it comes to footers.. They really should be at the bottom of your content and not the screen. Just think about it!? Would you continue reading even when there is no content? Anyway, I kinda understand where you coming from (after viewing your site). So here is …

Member Avatar for MidiMagic
0
107
Member Avatar for jochem23

[QUOTE]Duh, i'd figured that out allready... But using javascript print method means getting that ugly print dialog screen, which i don't want.[/QUOTE] without this you are breaking standard conventions and may confuse users more.

Member Avatar for SheSaidImaPregy
1
351
Member Avatar for HazardTW

i have recently finished a project for one group which owns four companys and i had the opposite. they wanted identical sites with minor differences. answer is dont fight your customer/client do it their way or you doint get paid! offer critisism where nescessary if you think it will work …

Member Avatar for HazardTW
0
168
Member Avatar for ali_ggl

use ajax to capture a pages source then parse the page source using php or asp.net (this will work only if the page your capturing has valid markup or if you add lots of error handling)

Member Avatar for Fungus1487
0
107
Member Avatar for gpdrums
Member Avatar for Fungus1487
0
79
Member Avatar for raw.nic

its easier to develop for firefox then adapt to IE than vice versa. although there is a memory leak in firefox which results in memory build up, only noticeable if left open a very very long time.

Member Avatar for TheAlex
0
178
Member Avatar for manish_gajjar

maybe it would be wiser to ask in the [URL="http://www.daniweb.com/forums/forum117.html"]javascript forum[/URL]

Member Avatar for Walkere
0
86
Member Avatar for Geminyi

its is because the bar is positioned absolutely. and when you set a width of 100% it is 100% of the viewable area so when your content is larger than your browser it exceeds 100%. dont position it absolutley. this is bad. perhaps use a table layout for the top …

Member Avatar for Fungus1487
0
101
Member Avatar for lifeworks

i dont beleive you can upload a directory at all in php. they could upload a zip file then use php to break apart the file and then create the directorys/file structure in this.

Member Avatar for lifeworks
0
80
Member Avatar for smilyswapna10

you need to post this in the [URL="http://www.daniweb.com/forums/forum117.html"]javascript forum[/URL]

Member Avatar for Fungus1487
0
61
Member Avatar for dks1383

but you still wont be able to align PART of the text differently to another part. Not in the same textbox anyway.

Member Avatar for Fungus1487
0
114
Member Avatar for Taffd

the only way i use is to set a session variable of the current time then everytime a postback occurs check this time is greater than (now - 20 mins) and if it is let them continue else destroy the session. works for me.

Member Avatar for joshua.tilson
0
134
Member Avatar for xeption12

1. they are not the same 2. nope as the browser still needs to read the html markup 3. xsl is mainly used as template form else there would be no real advantage of going to the trouble of setting it up 4. i believe xml and xsl are just …

Member Avatar for Fungus1487
0
82
Member Avatar for x3n1x

you can technically fake the interaction if thats what he means. AJAX uses javascript to interact with a server side page. you dont actually see the page interacting with the javascript so it would technically be a html page. so to speak.

Member Avatar for x3n1x
0
151
Member Avatar for Faber980
Member Avatar for hidash_in

[CODE] var date1 = new Date(); var date2 = new Date(); var diff = new Date(); diff.setTime(Math.abs(date1.getTime() - date2.getTime())); return (diff.getTime() / (1000 * 60 * 60 * 24)); [/CODE] theres the basics given that date1, date2 are the dates you wish to compare

Member Avatar for MidiMagic
0
119
Member Avatar for knowledgelover

you want to bind users from database to the Web.config file ? why not when the login button is pressed perform sql statement "SELECT userid FROM users WHERE username = 'JOE BLOGGS' AND password = '123'" then if a result is returned they are the correct user ? Theres not …

Member Avatar for knowledgelover
0
98
Member Avatar for innovativeatul

you would probably require a database to hold all your furntiure details which would then require a server side language to retrieve these details. and yes you can do perspective changes in flash albeit it is not really a perspective change at all. You do not require a plugin to …

Member Avatar for GreenDay2001
0
155

The End.