45 Posted Topics
[CODE]<script language="javascript" type="text/javascript"> function popwin() { var w=window.Open("yourpage.html",'PageTitle','toolbar=no,width=300,height=400'); w.window.focus(); } </script>[/CODE] Use this javascript code between <head> tag.Call it on button click.
take the idea from the following code: [CODE] using System; using System.Configuration; using System.Data; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Data.OleDb; public partial class _Default : System.Web.UI.Page { //OleDbConnection con = new OleDbConnection(ConfigurationSettings .AppSettings ["conn"]); OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\WebSite\\Registration\\App_Data\\web.mdb;Persist Security Info=True"); …
Is their any way to make an exe from my python files other that py2exe as am getting some problem.And for the same is their any method for linux also.
[QUOTE=;][/QUOTE] You can take idea from my chat app on [url]http://realzone71.googlepages.com[/url]
My asp.net Page contains a panel,panel contains gridview with both scroll bars eg: horizontal and vertical.How to print only whole panel content using javascript or another method.
How to replace '/' to '//' in database path,after selecting it from openfiledialog() control. From [CODE]OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:[B]\[/B]Documents[B]\[/B]Visual Studio 2008[B]\[/B]WebSites[B]\[/B]myproject[B]\[/B]db[B]\[/B]mobile.mdb");[/CODE] To [CODE]OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:[B]\\[/B]Documents[B]\\[/B]Visual Studio 2008[B]\\[/B]WebSites[B]\\[/B]myproject[B]\\[/B]db[B]\\[/B]mobile.mdb");[/CODE] using button click
How can i host webserver from home pc.Webserver like abyss or xampp.I am using usb dongle for internet,i have no router.I have searched on google but most of them use port forwarding in router..
How can i insert password from textbox in database in encrypted form and match from database to login.
[B]How to install a new template in mybb 1.6?[/B]
How can I upload image by checking pixel(ie 100x100) and size(ie 50kb)in MS Access and retrieve from database to show in image control using C#.
How to show image in image control from ms access database.
Simpliy use dreamweaver by insert media option and save it,after that open .aspx file in Visual studio.
How can I fetch data from database to show in table cells not in grid.
[QUOTE=;][/QUOTE] Use javascript code.
i hav created software in visual studio 2008 window application using C#,now i want to add serial number.how can i do it pls give ur suggestions.
How can I access remote database using window application in C#.I want to insert/update and delete the record from database which placed in web server using window application.
How can i scroll text in win form using timer.
View my sw collections made by myself.take and give ideas. [url]http://realzone71.googlepages.com[/url]
i am using visual studio 2008,windows vista operating system,i put the ms access database inside "c:/windows/test.mdb",i also put in c:/test.mdb.but in both cases when i execute update query it gives error-"Operation must use an updateable query".But it works fine when i put database in non-window drive as E:,P: etc,also in …
My window application gives error-"Operation must use an updateable query" while run in vista.I used update and insert statements.How can I provide permission to write/update in Ms Access database.
Anybody have windows7,please send me windows7 media folder(location: C:/windows/media).Zip and send to me. THANKS
How can I use "double" in "System.Threading.Thread.Sleep(int)".
How to find the difference between system time and user input time in the format [hh:mm] in millisecond.
I have locked ms access database with password.When i add it to setup of project,it gives error that database is locked or not found.How can i add database with password to the setup using visual studio 2008.
I have installed oracle10g ExpEdition,it hasn't inbuilt table. I need oracle tables emp,dept,salgrade,mgr.If you have installed oracle9i , you can easily export the tables. I am describing the method. [ICODE]open command prompt type C:\>exp scott/tiger file="c:\emp.dmp" tables=(emp,dept,salgrade,mgr) [/ICODE] then go to c drive,You can see the exported emp.dmp file. Please …
I am using visual studio 2008 with C# developing an window application, I want to displsy blinking text with marquee on label using [B]thread[/B].But it generates error :--Cross thread error. What is this and pls solve my problem.
I want to create Google Custom Search TextBox that has background image and image disappears on onmouseclick and appears back on onmouseout. What is the code behiend it.Pls write the code. [B]THANX[/B]
[[CODE]<img src="abc.jpg" style="opacity:1;filter:alpha(opacity=100)" onmouseover="this.style.opacity=0.4;this.filter.alpha.opacity=40" onmmouseout="this.style.opacity=1;this.filter.alpha.opacity=100" [/CODE]
My website contains database,which runs successfully in visual studio 2008,but when I put it in \wwwroot in IIS, database not working.PLS solve my problem.
I want to create custom search box like Google. I want to place the image inside the textbox and when user click on textbox the image on textbox must disappear.How it is possible.
[B]Good question follow these steps:[/B] 1. First make flash movie using macromedia flash8 or any version. 2. save .swf file to website folder. 3.Now use DREAMWEAVER, open your .aspx file using dreamweaver. 4.Go to insert->media->flash at the desire location. 5.Give the path to .swf file. 6.Save it. 7.Now open .aspx …
Here is my small project [URL="http://aspspider.biz/realzone/default.aspx"]http://aspspider.biz/realzone/default.aspx[/URL] Here you can see my small project and can take some ideas.Pls give me some usefull suggestions.
I want to generate non-repeated random number. I tried the following code but it generates repeated random number. [code] protected void Button1_Click(object sender, EventArgs e) { Random rnd = new Random(); int n = rnd.Next(1, 100); Label1.Text = n.ToString (); } [/code]
[B]Try this:[/B] First add folder name it download then add abc.mp3 file and write the following code: [CODE] <a href="download/abc.mp3">Download Music</a> [/CODE]
[B]Follow These Steps:[/B] 1.Add new folder to website and name it images 2.Add desire pictures to this folder. 3.Now add xml file. 4.write the following code [CODE] <?xml version="1.0" encoding="utf-8" ?> <Advertisements> <Ad> <ImageUrl>images/1.jpg</ImageUrl> </Ad> <Ad> <ImageUrl>images/2.jpg</ImageUrl> </Ad> <Ad> <ImageUrl>images/3.jpg</ImageUrl> </Ad> <Ad> <ImageUrl>images/4.jpg</ImageUrl> </Ad> </Advertisements> [/CODE] 5.Add adrotator to web …
Hi,ritika,It will really help you. First add panel to webpage.Then write the following code in source: <asp:panel> <marquee direction="up"> ABC<br> DEF<br> GHI<br> Notice<br> </marquee> </asp:panel>
[B]1.[/B] I want to put javascript in webpage that shows gif image on moving cursor anywhere on the page and [B]2.[/B]I want to get the value of one textbox and put this value to another textbox.
I have problem in database file which I made in Access, language C#,It works fine after installation in default location "C:/program files/default company name/project name/abc.mdb", but when I install it in different drive (non-window drive) then my project doesn't find the database file.So,how can I remove this problem.
How can i encrypt access .mdb file ,make it .mde and add password .what is the connection string in C#,how can i access it and how can i make backup file.
I have a problem in my project in C# visual studio 2008, I added a textfile in my project,on button click it opens,After deployement (installation)it works fine in window xp but give error in vista,it do not find the path specified. Folling is the code: private void pictureBox9_Click(object sender, EventArgs …
The End.
adobe71