No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
I'm just a cool guy who likes quality friends, very curious, a technology enthusiast, interested in beautiful non-hypocritical chicks and mad about comp software.
61 Posted Topics
Re: html 5 is a great advancement in the html spec.If you want to develop a web appllication, a website that goes beyond presentation use it.Has great support for css 3.Also customised for developing on mobile devices in conjunction with css 3 and javascript- web apps for the iphone etc.Supported by … | |
Re: you can write a function that clears the text boxes that you specify. [CODE]'the function takes a parameter coresponding to the name of the text box function CLEARTEXTBOXES(txtboxname as string, txtboxname2 as string,txtboxname3 as_ string) ' to txtboxnamen as string txtboxname.text="" txtboxname.set focus end function [/CODE] if you acall cleartextboxes … | |
Hi guys, Have been developing C# desktop apps for a while now and when it comes to packaging(not clickonce),deployment with cd/dvd, I publish using visual studio's Build->publish option.The application installs well but all the paths to resources like images are broken.Where I'm I supposed to place the resources or which … | |
Hi guys, I would like to develop for android and have my apps use the gooogle app engine as the on the cloud backend. Have been tring to install the google plugin for eclipse(GPE) and the google app engine sdk opn eclipse indigo both from a local source and from … | |
which is the best web design kit for starting out in professional web design- the kind that incorporates client side and server side scripting together or the best of one? | |
Hi guys Im developing this java application and i have the following hurdles: a) I would like to develop an installer for all platforms(including windows,linux and Mac). b)Can someone please illustrate clearly how to connect to a mysql database in java after having downloaded the driver(connector/j) and having imported all … | |
Re: Okay from what you're saying you'll need a lot of grounding in developing the application if it's 3 tired(front-end(interface),programming,database).I think its going to take u some time.First you need to know the server-side programming language you'll be using in .net(C# or Vb.net).Then you'll need to learn some database programming(extracting data … | |
Hi guys I have this asp.net site that works just fine on windows.When viewed under firefox in in linux mint the character encoding is incomprehensible(You cant read the words which means the character encoding is not supported.).Other sites like google and forbes just work fine so i wondered what is … ![]() | |
Re: [QUOTE=;][/QUOTE] Can u try to give the exact code fragment that has a bug so we can help u out....The stack trace is not that helpful if u want to figure it out. | |
Re: hi, Your question does'nt make any sense because sql is a language with predefined rules and syntax.Unless you let whoever is writing the statement select from dropdownlists the values that represent actual database fields its going to be very hard. You should form your queries in code depending on the … | |
Hi guys I have lots of external resources on my site i.e styles(css),scripts(javascript) and images.How can i ensure that they are downloaded fast when the page is requested for immediate usage on page provided there's a normal internet connection.The external styles i have are downloading too slow and the javascript … | |
Re: The bottom line is to compare strings.Take the selected item in the combo box and compare it with all the strings in the list box.I am guessing you're conversant with programming in asp.net i.e vb.net or c#.I'll give u a code snippet in vb.net: [CODE] 'assuming combo box=cbocombo and list … | |
Re: Just use opacity:value without filter it works fine in firefox not sure about opera,chrome and safari.It's a no go zone for IE. | |
Hi guys.I'm working on a site where i require the layout to be fluid i.e the elements take percentages for their widths.I however don't want the layout to scatter as it currently does when the browser is resized.I have tried min-widths for the various elements like body but it still … | |
Re: Okay like @hericles pointed above that code is too much for checking available of a user.Make sure the primary key field of your table is entered by the user as part of the log in info.Use the primary key to retrieve the row of the respective user.If not row ids … | |
Re: Where is this coming from in your application , is it client side or server side be a bit specific | |
Re: Sql strings are surrounded with single quotes like 'parameter value'.Use single quotes and see what happens | |
Re: I think u can do that by placing the page with foreign language in a directory named 'en' and the application will just figure it out- its just a suggestion u can try it. | |
Re: I used to get errors with that line 1.I omitted it completely and used inline scripts in the page by delimiting server side scripts with [CODE] <script runat="server"> 'code here </script> [/CODE] All the problems disappeared you can try it. | |
Re: You can just access the database in the desktop application and grab the data you want from there and use it in your asp.net app. | |
Re: Hi with all due respect,Think about migrating to ASP.NET and SQL server.That's where the fun is and the party is bigger classic asp kinda passed by time.Chill out im just saying!! | |
Re: what do you mean by specific index.Try to be more specific in what you're tring to accomplish. | |
Re: when the user enters the e-mail address for registration you can verify that it exists by: -If the e-mail address is the primary key in the table the dbms will return an error for duplicate keys if you try to save it.You can trap this error if you have trapped … | |
Re: You can create a data table in a dataset with the same structure as the database table.Every time the user uploads an image the image is stored in the data table.To stop the table from refreshing you store it in a viewstate.You add the details pertaining to the image for … | |
Re: Okay you can set your website as the default that the browser opens.Then make the login page the homepage('index.aspx'). | |
Re: You can't use an html page for connecting to a database because you can't write any server-side code in it.Like those guys have said above html pages are static.To change their content you have to edit the code(html).On the other hand, asp.net pages can also be static but if they … | |
Re: It depends on the language you want to specialize in(C# or VB.NET).Just get on amazon .com you'll find all the books you want. good luck. | |
Re: Hi by the way your english is not that bad, so relax!!Your question is kind of vague;'want to put some pictures into visual web developer'.backgrounds of what are u changing?The application you're building will run on a server and the interface will be a web browser(firefox,opera etc).Visual web developer is … | |
hi Im developing a procedure that should write some client side objects like an array or even enforcing asynchronous postbacks to the server using jquery ajax features.Im new to this and i get some minor errors after trying out the solutins. for registerarraydeclaration this is what i have: [CODE] clientscript.registerarraydeclaration("array … | |
Re: Okay in this case since the server treats each incoming request as a new request,storing the ip addresses was a good idea.You can declare a counter field in your table.during each request by the login form you check if the value of the counter field is equal to 5 for … | |
hi guys.Im trying to program an image link from server code such that when you click on the link it calls a server side program to do more stuff like open a new window and write more details pertaining the selected item.its just like in facebook and elsewhere when you … ![]() | |
Re: hi I was dealing with the same scenario and i found out storing image in the database is not the best option-takes more download time and still u'll write more code. The best thing to do is store the images in a file directory in your project folder and then … | |
Hi I'm working with sql server and ado.net datasets.Is there a way the dataset can be paged to the client for local access without contacting the server.If this is not possible how does one post back to the server from the client say in javascript after client side events like … | |
Re: I think the problem is that you're using <tr><td> without nestinfg them in a table. I think rows and collumns should only be used in tables.try [CODE]<table><tr><td></td></tr></table>[/CODE] see if it works.The alternate could be to nest multiple <div>s inside one main <div> and then positioning them in css. | |
Re: You have not set the text property of t and therefore calling t.text results in a null exception.this could be the problem. | |
Re: Try using asp.net master pages to achieve your effect.But all the same clientside technologies are best for effects, browser has the final word anyway. | |
Re: try setting the autopostback property of the treeview to true in the page load event ie [CODE]treeviewid.autopostback=true[/CODE] | |
HI Id lyk to know how you create web pages that are consistent on different resolutions especially the small ones i mean small monitors. I've used some css absolute positioning on my site stuff really overlaps on smaller screens-bad.thanks | |
hi guys a)I'm working on this project in asp.net and sql server.I would like to host the site im my local iis server for testing purposes b4 i publish.when i import the site to iis it poses some 404 complaining about the web.config file. what i'm i not doing ryt. … | |
Re: think application software, the kind that people use as utilities in conjunction with other softwares as asp.net and the .net framework as a whole depends mostly on pre-tailored classes. But anyway if u think about it, there's so much u can do with code. | |
i'd lyk to upload files into the database via a dataset to first test some conditions. i've maitained the dataset's state between postbacks to add all the rows b4 updating. however the datarow line[CODE]dim autorow as datarow autorow= viewstate("dataset").tables("datatable").newrow ' the dataset and the datatable are all declared [/CODE] pops … | |
Re: use [CODE]server.mappath("path to server folder") & fileuploadcontrol.filename ' after having attested that the file upload control contains a valid file. [/CODE] | |
i have just downloaded sql server 2008 from the microsoft download center. when i try to install it at extraction it says its not a valid win 32 apllication. what could be the problem? | |
hi guys i've stored images in sql server. how do i retrieve the images and displaying them on the same page that sends the request. i kinda figured how to retrieve the images using the [CODE]file.outpustream [/CODE]. just need to know o i display the image using an image tag. | |
cannot load type"projectname.webform". what could be the problem. should i be testing my app using asp.net's development server or ISS. | |
just started out on php, kinda having problems configuring the language (php), the database server and the web server on windows 7. what could i not be doing right. I have edited apache's conf file to use php and stuff. One problem is that i have IIS running as the … | |
Re: try foxserv or phptriad- u can google them and download for free. | |
i'm working on this project in asp.net in conjunction with vb.net.the thing is code behind is just not getting fired, well it used to but then it stopped. I'm using visual studio 2010 ultimate edition as my editor and of course IIS as my web server. I really don't get … | |
Re: add a paramaeter to the parameter collection and assign the value of the form to that parameter. then set the parameter as the upadate value in your update statement. | |
i would like a registration form in html to pass its form fields values to an asp.net's form's onload event procedure. how do i access the field values passed by the html form.the idea is to update a database using these values without using asp.net's web controls. |
The End.