|
open the browser in full screen mode (F11).. use javascript fot it
|
|
|
|
|
i have an text file with some data. i want load the text file in mu sql server 2005 database by using vb.net.
can any one plzz help me...
Regards,
S.Inayat Basha.
|
|
|
|
|
Open the file, read text from it and store it into database. Do you want us to develop it for you?
Please don't forget to mark 'Good Answer', if you find it really a good one!
Kashif
|
|
|
|
|
can u plz send me the code for it....
|
|
|
|
|
At least give it a try! First search on google how to open up a file then google for reading it and then for inserting into db.
Please don't forget to mark 'Good Answer', if you find it really a good one!
Kashif
|
|
|
|
|
Open the file and read content using the classes in System.IO, then insert it into sql server. What you tried to accomplish this?
|
|
|
|
|
If the text file is already in proper format, use this:
load data local infile "my_data.txt" into table my_table;
|
|
|
|
|
how to store and retrive multilanguages(like hindi, gujrati) database in SQL server. Please Give some sample examples for it by using C#.NET
|
|
|
|
|
Just go through it, it's really easy if you find any hurdle implementing just ping us
Please don't forget to mark 'Good Answer', if you find it really a good one!
Kashif
|
|
|
|
|
This forum is for asp.net related questions. So please bear it in mind next time.
I think you can store it as Unicode. In sql server, nchar, nvarchar and ntext are support Unicode.
|
|
|
|
|
User nvarchar datatype to store Unicode characters.
|
|
|
|
|
|
hi
i need Regular expression for Mon, Nov 02, 2009 in asp.net 2.0.
please help me.. urgently.....
regards
D.V.Mallikarjuna Guptha
|
|
|
|
|
Try this
[a-zA-Z]{3},\s{1}[a-zA-Z]{3}\s{1}[0-9]{2},\s{1}[0-9]{4}
Parwej Ahamad
ahamad.parwej@gmail.com
|
|
|
|
|
This one will even allow "Abc, Xyz 99, 9999"
|
|
|
|
|
Yes you are right. But yes you can modify on the basis of that expression with little effort.
Parwej Ahamad
ahamad.parwej@gmail.com
|
|
|
|
|
Hi Guys and Gals
I've tried almost everything, so this is the last resort. I really do hope someone might be able to help me.
I have a web page (ASP.NET). In here I have a button. When the user clicks the button a bat file needs to execute on the client machine. The bat file will contain a link to a .aut file.
I've tried the System.Diagnostics.Process, but this executes the file on the server and also under the NETWORK SERVICE account. Thus the user never see what's happening because it's not happening on his/her machine.
Can anybody please either give me advice on how to accomplish this or direct me to a article that can explain this. I've been searching for 8 hours now and just cant find anything workable.
Thank you so much. I will be forever greatful.
Elizma
|
|
|
|
|
I think it's only possible with ActiveX
Please don't forget to mark 'Good Answer', if you find it really a good one!
Kashif
|
|
|
|
|
As like Gamzun said an activeX control may helps you. But it only properly works on IE. Perhaps a java applet is also able to execute an exe.
|
|
|
|
|
Create an anchor tag that points to the absolute path of the batch file. But the batch file needs to be in the client machine already.
<a href="file://C:/myfile.bat">Click here</a>
|
|
|
|
|
Hi
Thank you soooo much for your solution. It works, but only partialy. It does not run when I call it from an aspx page, but if I create an html page it runs, but only if I run it directly from the saved location.
When I deploy it into IIS and browse to the file, nothing happens. It's almost as if IIS is blocking this.
This will also explain why nothing is happening in the aspx page.
Am I missing something?
Kind Regards,
Elizma
|
|
|
|
|
its possible using client side script..
|
|
|
|
|
Client side scripts cannot access file system
|
|
|
|
|
javascript
var obj = new ActiveXObject("Wscript.shell");
obj.Run(FileName);
|
|
|
|
|
Hi
any solution or alternative to be sent mail without using smtp details by asp.net c# coding
thanks
You get the best out of others when you give the best of yourself.
|
|
|
|