Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

Poonam Gandash

@Poonam Gandash
About
Posts
35
Topics
17
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to share particular website content on facebook
    P Poonam Gandash

    I want to add share button to my website. I have added share button, but it shares URL not particular content, for e.g.- http://myguru.in/article\_details27.htm I want to share particular image(wallpaper) or content not full URL. As done in 99likes.com http://99likes.com/posters/6041 Please suggest how to do this. Thanks a lot in advance

    Web Development com tutorial

  • URL rewriting
    P Poonam Gandash

    I want with PHP

    Web Development tutorial html com

  • Export excel data to SQL server in ASP
    P Poonam Gandash

    ' Path to excel file z="uploadasp/contact_data.xls;" Path = Server.MapPath(z) SQL_Query = "SELECT * FROM [Commercial$]" Driver ="{Microsoft Excel Driver (*.xls)}" DataSource = "DBQ=" & Path & ";" DataSource = DataSource & "DefaultDir=" & Path & ";" DataSource = DataSource & "Driver=" & Driver & ";" DataSource = DataSource & "FIL=excel 5.0;ReadOnly=1;" Set MyConn =Server.CreateObject("ADODB.Connection") MyConn.ConnectionTimeout = 15 MyConn.CommandTimeout = 30 MyConn.Open DataSource 'Set MyConn = Server.CreateObject("ADODB.Connection") 'Set MyConn = Server.CreateObject("ADODB.Recordset") 'strBaseFilePath ="uploadasp/contact_data.xls" 'MyConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ '"Data Source=" & Server.MapPath(strBaseFilePath) & ";" & _ '"Extended Properties=""Excel 8.0;""" 'RS.Open SQL_Query, MyConn, adOpenStatic 'Lets loop through the data and output it into a HTML table Set RS = MyConn.Execute(SQL_Query) IF RS.EOF THEN 'There is no data to show tot=0 ELSE 'Lets output the field names ' FOR EACH Field IN RS.Fields ' NEXT 'Now we will output each row of the data tot=0 tota=0 DO WHILE NOT RS.EOF if rs.fields(0)<>"" then Set rs4 = Server.CreateObject("ADODB.Recordset") rs4.open "select * from data where 1<>1",Con,1,3 rs4.addnew IF rs.Fields(0)<>"" THEN RS4("name")=rs.Fields(0) IF rs.Fields(1)<>"" THEN RS4("surname")=rs.Fields(1) IF rs.Fields(2)<>"" THEN RS4("primary_email")=rs.Fields(2) rs4.UPDATE end if RS.MoveNext LOOP END IF RS.Close Set RS = nothing MyConn.Close Set MyConn = nothing =================== Hope this code will help

    Web Development database sql-server sysadmin help

  • URL rewriting
    P Poonam Gandash

    I want to know how to change URL visible in browser visit : http://www.magiconabudget.com/productdetail/singles/abuna-acolyte/46/1704 http://www.goiit.com/posts/list/organic-chemistry-is-practicing-conversions-enough-to-tackle-1049675.htm These both are programming pages but one is not showing file extension and other is showing programming pages at HTML page How to do that. Please guide Thanks

    Web Development tutorial html com

  • failure email - store in db
    P Poonam Gandash

    Thanks for your answer. Suggested link is in asp.net I want in classic asp. You'd need to make a connection, probably using POP, to read them and flag those in your database. -Can you guide how to make a connection using pop. Please guide Thanks

    Web Development database tutorial

  • failure email - store in db
    P Poonam Gandash

    Hi I wrote a code to send newsletter to all members of site. There are 1000 members on site. Some mails are bouncing back. How I can store bounce mail addresses directly in database. How I can record - when my mail was read and how many times from which IP. I have seen this working application in classic asp. I am working in classic asp. Please guide. thanks in advance

    Web Development database tutorial

  • Exporting MySQL data to excel (HTML tags)
    P Poonam Gandash

    I am exporting data from MySQL to excel using php. One field is having embeding code for video(with HTML tags) for eg. embedding code of youtube.com all fields data is exporting to excel perfectly but this video field is coming blank. for eg. try to export embed code of this page from mysql to excel [] blank is coming in excel When I am importing from excel to mysql its working fine. Plzzz Help. Thanks in Advance

    Web Development php html mysql com help

  • e-learning Survey
    P Poonam Gandash

    Hello Friends I am conducting a survey on e-learning. Please participate in this survey at following URL: www.rpgwebsolutions.com/online_survey/main.asp Please help me in collecting data. Thanks Poonam

    Web Development com help learning

  • how to disable copy - print - icons from image
    P Poonam Gandash

    visit my site rpgwebsolutions.com on main page if you right click it says no right click permission but as we mouseover on image icons of save - print etc. appears. How to disable these icons. Plzzzzz help

    Web Development com help tutorial

  • how to read returned identity value from stored procedure
    P Poonam Gandash

    Then How to read this value in asp

    Database database sysadmin help tutorial learning

  • how to read returned identity value from stored procedure
    P Poonam Gandash

    How to return and read in asp please explain in detail Thanks in advance

    Database database sysadmin help tutorial learning

  • how to read returned identity value from stored procedure
    P Poonam Gandash

    I am inserting record in table using stored procedure. CREATE PROCEDURE add_member( @UserName Varchar( 50 ), @Password Varchar( 50 ), @dob datetime, @education Varchar(50), @designation Varchar(50), @name Varchar(50) ) AS If Exists( SELECT username FROM member WHERE username = @username ) RETURN -1 ELSE BEGIN DECLARE @ID int -- new ID value holder INSERT member ( username, password, dob, education, designation, name ) VALUES ( @username, @password, @dob, @education, @designation, @name ) -- get the new identity column value SET @id = @@IDENTITY END GO ------------------------------- I am using classic asp to add records in this way - sql = "add_member " & "'" & request.form("username") & "'" & "," & "'" & request.form("password") & "'" & "," & "'2/2/2'" & "," & request.form("education") & "," & request.form("designation") & "," & "'" & request.form("name") & "'" set rsAdd = Server.CreateObject("ADODB.Recordset") rsAdd.Open sql, con Its adding new record successfully But I am not able to read id of newly added record. Plzzzzzzz help

    Database database sysadmin help tutorial learning

  • How to centralise page according to resolution of user system
    P Poonam Gandash

    I have developed table less page using div. Check www.rpgwebsolutions.com/nutrition/index.html but I am not able to centralize the page according to resolution of user. Please suggest method supported by all browsers. I will prefer using css Data must not get centralise only div containing data.

    Web Development css html database com tutorial

  • Need Javascript
    P Poonam Gandash

    I want to add facility in website build your jacket as on site : www.lettermansclub.com Can anybody guide me how to do this. Using javascript I can add change image on mouse click. But this will require a lot of images for different colors and different styles. I hope there must be other method to do this. Please reply soon.

    Web Development tutorial javascript wpf com

  • Problem in query
    P Poonam Gandash

    I developing a software in which I am listing products. On product name there is link which shows product details on the basis on product name passed to details page. Some product contain name with % symbol shows error in details page. Other product details are coming fine. How to resolve this problem. Please suggest.

    Database help database tutorial

  • How to create automatic page
    P Poonam Gandash

    How to get data from database on a html page??

    Web Development html database tutorial

  • How to create automatic page
    P Poonam Gandash

    I am developing ASP website. Its website of at about 1000 products with shopping cart and CMS. Our client want to add his products at his end. That I did, By providing him a module to add product, and sending product details to DB. But he want to create new page(preferrably HTML Page) for each and every product for promotion purpose. Means whenever he add new product through provided module new page should be created automatically. Anyone can suggest how to do this.

    Web Development html database tutorial

  • How to protect site from Virus attacks
    P Poonam Gandash

    Anybody can please suggest most secure hosting services. I am from India but I have account in Paypal and ICICI so I can purchase space from any country. I purchase space from different 10 servers but somebody is tracking site listed on rpgwebsolutions.com ( which I have removed now for safety). All sites listed there are struck by virus hosted on different servers. Even Globat was strucked. Virus is asking to install some Chinese font. I have more than 200 sites. Now I am in big trouble somebody please help. :((

    Web Development help html database com hosting

  • How to protect site from Virus attacks
    P Poonam Gandash

    I Contacted them but they are saying that there are vanerablities in my code. :((

    Web Development help html database com hosting

  • How to protect site from Virus attacks
    P Poonam Gandash

    I am in great trouble I am getting virus attacks on my site again and again. Just check trumpandgates.com , oceanicsky.org ( make sure you have antivirus on your system) when I discussed with my hosting people they are saying that its code venerabalities problem. But site having even single html page were also attacked. Please please help me. I have more than 200 sites attacked time and again. Please suggest me how to make my sites safe and protect from Viruses. I have protected site from sql injections. with this code Function IllegalChars(sInput) Dim sBadChars, iCounter sBadChars=array("select", "drop","insert", "delete", "xp_", "#", "%","(", ")","<",">","=","`") For iCounter = 0 to uBound(sBadChars) If Instr(sInput,sBadChars(iCounter))>0 Then IllegalChars=True End If Next End function Dim sUsername, sPassword sUsername=Request.Form("username") sPassword=Request.Form("password") If IllegalChars(sUsername)=True OR IllegalChars(sPassword)=True Then Response.redirect("no_access.asp") End If

    Web Development help html database com hosting
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups