|
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.
|
|
|
|
|
it sounds like you wanna ride a horse without a horse :S
Please don't forget to mark 'Good Answer', if you find it really a good one!
Kashif
|
|
|
|
|
Hi
thanks for your kind response.
you are correct but client is telling that I dont have any smtp server so try without smtp detail to be sent mail.
any alternative like using cdo net.
I tried but it supports to asp only so I created asp page and put code there and calling from .aspx page but not able to access .asp page from .aspx page.
Regards,
Harry
You get the best out of others when you give the best of yourself.
|
|
|
|
|
|
Using SMTP protocol with SSL authentication how should we do?
|
|
|
|
|
using gmail Smtp Host you can send mail.. try smtp.gmail.com
|
|
|
|
|
How to use Ajax calendar control using asp in c#.
Plz tell me in detail
|
|
|
|
|
http://www.asp.net/LEARN/ajax-videos/video-124.aspx
|
|
|
|