- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 22
- Posts with Upvotes
- 21
- Upvoting Members
- 9
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
94 Posted Topics
Re: What are you using? Webforms, WPF, Winforms, MVC? | |
Re: Perhaps this code will help you, found at [SharePoint Code Snippets by Sudarsan](http://sharepointcodesnippetsbysudarsan.blogspot.ca/2012/10/absolute-url-of-list-list-item-in.html) Example- Get Full Url Of A SharePoint List SPUtility.GetFullUrl(SPContext.Current.Site, listobj.DefaultDisplayFormUrl); Example- Get Full Url Of A SharePoint ListItem SPUtility.GetFullUrl(SPContext.Current.Site,"/"+ itemobj.Url); | |
Re: I would add Unity to the list of choices. I recently created my first basic game in Unity. It took me about 4 evenings to get it to beta status. The biggest plus to unity is its multi-platform. 2nd is that you can do a lot of stuff by drag … | |
Hey folks. Great job on the new site! Reporting a strange overlay issue on the Homepage in Chrome 19.0.1084.46 m on 64bit Windows 7. There is a taller than normal header and a blank spot on the right sidebar that, on mouseover, displays an overlay on the screen. Like the … | |
Re: Why don't you use a SQL Statement instead? If you only need one record (oldest date) then it isn't efficient to bring back all records from the database. Amend your query to something, [CODE]SELECT TOP 1 [fieldname], [etc...], FROM tablename WHERE [column2] = '<listvalue>' ORDER BY [datefield][/CODE] That will give … | |
Re: [quote=Comatose]I think you have to manipulate the printer object directly.....[/quote] This is correct. Use: [CODE]Printer.Orientation = 2 Form1.PrintForm[/CODE] 1 for Portrait and 2 for Landscape. | |
Re: Try setting a css class to that column and setting the css style "visibility:hidden;". This way asp can still access the data but the user won't see it. If the data is confidential then your best bet is to pull the data from DB on post back and work with … | |
Re: Hmm, off the top of my head, name is depreciated. What browser are you trying? Swap out "name" for "id". Also, try [CODE]onclick="return clearVillage();"[/CODE] Some browsers, (IE usually), likes the return keyword at times. Also, Check to ensure the button isn't calling the function before the function is declared. (i.e. … | |
Re: High quality like that is rarely free. Just sayin. | |
A friend of my recently asked me to help him set up a web based radio. Upon doing some research I found he has only original content (not copy right stuff), all static mp3 files, not live talk, and wants to loop the audio. I've found sites like radionomy and … | |
Re: [QUOTE=freedom-impulse;488692]im having a problem in connecting data access with vb 6 enterprise edition i dont know how to connect trough ADO[/QUOTE] Read the sticky thread on this forum. Here is a link for your reading convenience: [URL="http://www.daniweb.com/forums/thread41057.html"]http://www.daniweb.com/forums/thread41057.html[/URL] | |
Re: CSS styled XHTML is much better for a blog. gridviews would probably just create too much extra html and probably even table tags.... :S | |
Re: [QUOTE=tet3828;1366284] Should this data be stored in an array? or an sql database? [/QUOTE] What you have there is meta data. The best way to get started from your level is to think about that data as an [URL="http://www.informit.com/articles/article.aspx?p=101373&seqNum=2"]object[/URL]. So, each picture will be an object with properties. Size, location … | |
Re: I think the grid view and detail view should do this for you. Check those controls out. | |
![]() | Re: Where is it hosted? You usually have to order a Certificate from a provider like RapidSSL, GoDaddy, Geotrust, etc. The process will involve a bit of back and forth from your hosting provider unless you manager your own server. Some shared hosting accounts provide a free shared SSL, but that … ![]() |
Re: You can use an option group for multiple choice answers. A module or project level variable will hold the score. Give it your best shot and post your code if you have issues. | |
Re: This should get you on your way. [URL="http://www.codeproject.com/KB/GDI-plus/TransparentImageWatermark.aspx"]http://www.codeproject.com/KB/GDI-plus/TransparentImageWatermark.aspx[/URL] | |
Re: If your going to store the rules in SQL Server, why not store the data in SQL server? If you really can't move the data, you can use an XML file to store the validation rules and then compare the data in the text file. So your XML file would … | |
Re: The basic idea is this: Each port can only have 1 passive listening socket, but many active sockets. You code must listen for connections on the port, when one is detected, it must create a new socket to handle the active connection and then go back to passively listening for … | |
Re: Sounds like you need to take code out of the same table as category, might help make the system more usable. | |
Re: I feel your pain. We have several applications written in classic asp. We are starting all new projects in VS2008, .NET platform. All of our legacy asp code is maintained via Dreamweaver CS3 or CS4. While I know a complete port to .net is usually not cost effective, I would … | |
Re: Once you figure out the loops, i would kindly suggest that you initilize your random function before calling it. I'm sure one of the expert residents (nudge at comatose) can explain a lot more as i'm not 100% sure how this is done in VB, but each time you start … | |
Re: We use Isqsolutions.com as a reseller at work and find them very reliable. I can safely recommend them as a good choice for ASP and ASP.NET functionality. The also support MS Access, SQL Server and MySQL. | |
Re: [QUOTE=mohamed1;814947]thank u for reply so i think if site is not on my computer i just hired space and domain i must call the company i hired from and tell them to do as u told is that no other way because they are with very slow response?!?!?[/QUOTE] Most hosts … | |
Re: I did something similar recently. Basically a form which requires approval before being saved. So, I created a copy of the table which normally holds the form data. On save, the data is saved to the copied table. Once approved, the data gets copied to the original table and the … | |
Re: You should ask this question over in the .net forum.... | |
Re: With ASP, you want to use the QueryString Collection of the Request Object. [URL="http://www.w3schools.com/ASP/coll_querystring.asp"]http://www.w3schools.com/ASP/coll_querystring.asp[/URL] So, you would code something like this: [CODE] Dim email email = Request.QueryString("email") [/CODE] I would also suggest creating a hash (md5 or sha) from the email and using that in the querystrings. This just keeps … | |
Re: Can you post your form html? Thanks. There is probably just a disconnect between the form item names and your form processor code. | |
I must be getting soft.... How the heck to do I programmatically add new rows to a datagrid / flexgrid or whatever grid using VBA? It's not bound to anything and I'm trying to add data on the fly. Any ideas? | |
Some strange errors occurring in my asp.net website. I was using the MS ApplicationBlocks.data.dll to connect o my SQL database. Once I started testing my website on IIS as opposed to the ASP.NET development server, I started getting connection pool errors. So, like anyone would, I searched for every instance … | |
Re: This is c# code, not classic asp, you should ask this in the ASP.NET forum. | |
Re: Sounds like a web application to me. I would recommend heading over to [URL="http://www.w3schools.com/ado/"]w3schools[/URL]..... best place to start learning classic asp IMHO. Look up the ADO, ASP and VBSCRIPT categories and post back here if you have specific questions. Generally, you will need to: 1: use a form to get … | |
Re: [URL="http://drnicwilliams.com/2006/11/21/diy-widgets/"]This article explains how.[/URL] | |
Re: That would depend on the ShockwaveFlash1 object. You could use a loop from 1 to 13 to cut down on the code, but if the object doesn't allow setting multiple variables in one call, you really don't have any choice. Do you have an object reference? If so, post a … | |
Re: use the split function using : as your find character. Then, using your array set your textboxes = to the proper indices. textbox.text = myarray(1) etc. myarray(0) will hold the text "dispframe" and you should probably drop the leading : Make sense? | |
Re: freevbcode.com has some really good classic asp code for download. I'd start there. | |
Re: Ok, this isn't really hard. You just need javascript. Of course navigation with JavaScript is almost never a good idea, but here is how. I'm assuming you have a page called index.asp. index.asp has an iframe called iframe_index.asp. We will link to a page called target.asp with an iframe called … | |
Re: [QUOTE=aashishn86;814044][code] <% [COLOR="Red"]comobj.CommandType = adCmdTable[/COLOR] %> [/code] [/QUOTE] You don't have adCmdTable defined. ASP doesn't have the built in definitions as does VB. You need to declare it first. do this before you set the commandtype: [CODE] dim adCmdTable adCmdTable = 2[/CODE] [URL="http://www.w3schools.com/ado/prop_comm_commandtype.asp"]And visit here for more technical details on … | |
Re: How about using javascript? [CODE]document.myform.submit;[/CODE] | |
Re: [QUOTE=aashishn86;813407][code] rstest.Open "test", constr, adOpenDynamic, adLockOptimistic, adCommandTableDirect [/code] [/QUOTE] aashishn86, you cannot use named parameters without first declaring them. Try [code] rstest.Open "test", constr, 2, 3, 512 [/code] [URL="http://www.w3schools.com/ado/met_rs_open.asp"]See here for more numeric values.[/URL] Alternatively, you can declare the variables first. like so: [CODE] DIM adOpenDynamic, adLockOptimistic, adCommandTableDirect adOpenDynamic = … | |
Re: [QUOTE=emilio;795031]hi i want to call a sql server stored procedure from my webform. the stored procedure return parameters. how can i "catch" these parameters and use hem ?[/QUOTE] [URL="http://www.15seconds.com/issue/010718.htm"]This tutorial should get you going.[/URL] | |
Re: You don't give us much to go on here. Do you have a sample page, or a link to the control page? Typically javascript like so will work: [code] var txtValue = document.getElementById('idoftextbox').value; [/code] If that's not clear, post some more details. | |
Re: First off, thats C# and not asp. This needs to be in the ASP.NET forum. Second, if it worked fine and then SQL Connect suddenly stops, check your database not your code. You probably have an offline SQL database. | |
Re: [QUOTE=themightycrag;814796] <% strConnection = "driver={MySQL ODBC 3.51 Driver};server=localhost;uid=*****;password=*****;database=******" Set adoDataConn = Server.CreateObject("ADODB.Connection") adoDataConn.Open strConnection set batable = adoDataConn.execute("Select * from thedemopage.bands order by viewcount desc limit 10") do until (batable.eof ) response.write batable("band") & "1<br>" response.write batable("band") & "2<br>" response.write batable("band") & "3<br>" response.write batable("band") & "4<br>" batable.movenext loop %> … | |
Re: Is there a specific reason you are using excel as a database? It is not a very scalable method. If your users really need to access the data as an excel spreadsheet you can always give them the option to export smaller sets of data through excel. I say this … | |
Re: Try binding the datagrid to a database table. | |
Note: I debated whether this should go in ASP forum or SQL Server forum and I think it belongs here. Ok, I have a classic ASP web application, a custom intranet, which has been used in 7-8 different installs, 3-4 different servers with no issues. It uses a SQL Server … | |
Re: All this means is that you have more up-front planning to do. You must map the current db structure to a new db structure. This all takes time of course, and it's your job to communicate to management the extra time involved. To help illustrate your point, make a visual … | |
Re: Are you missing a required referenced dll or COM Object? |
The End.