|
I have a vb.net application that is installed on a machine acting as a webserver. I need to open this application from an asp.net website. I have been told that I should use an ActiveX control. I have read some articles but i'm still not sure how to use active x controls. I am new to programming so I don't understand most of the terms used. Can someone please explain it to me. Thank you in advance
|
|
|
|
|
ActiveX controls are an old school way running code a client.
What does this application do and where do you want it to run?
I didn't get any requirements for the signature
|
|
|
|
|
I want a user to click on a button and the application should run. The application is a tool that the user will use while adding input to the webpage.
|
|
|
|
|
Well, usually it is difficult to call a windows application from a browser. The reason for this is because of security. Generally you don't want web applications to run code on the client machine.
Is this application for the internet or on a local network?
If you are running the application in an intranet environment you can deploy the windows application using Click Once Deployment[^] and then simply put a link to the web page of the application on your web page.
Passing arguments to the application is another issue all together...
I didn't get any requirements for the signature
|
|
|
|
|
Its running on a local network. Thanks for your response. I will take a look at the article.
|
|
|
|
|
I have a website called abc. I created a virtual directory pointing to this folder. This folder also contains a admin folder. I want users to access as follows: abc.com should take them to default.aspx in the main folder. abc.com\admin should take them to the default.aspx folder in admin folder. How can i achieve this?
|
|
|
|
|
create a virtual directory admin pointing to your admin folder in the main directory.
Set the default(say default.aspx) page for newly created folder.
|
|
|
|
|
first, create virtual directory for abc by right-clicking on the default website in your iis. here in documents tab move default.aspx to top.
Then right-click on the virtual directory abc which you have just created and select new--> virtual directory-->alias name admin-->give tha path and so on.
right click admin VD to select properties in the documents tab move default.aspx to top
this may help u
Regards
sunilwise
|
|
|
|
|
Thanks!
I am getting the following error:
there is a master page in admin folder called admin.master. another page called x.aspx is inheriting from the master page which causes this to appear:
modified on Friday, July 25, 2008 11:53 AM]]>
|
|
|
|
|
Civic06 wrote: now there is a problem because the path is this: abc/admin/admin/Admin.master which obviously doesn't exist. i can modify the MasterPageFile but it causes a problem when i want to compile and debug on my local machine.
i think u have created second virtual directory under admin folder.The second VD you should create under VD abc
Regards
sunilwise
|
|
|
|
|
Hi All
I want to keep Gridview Header and First column in fixed Position and other rows keep vertical scrolling ... can you help me??
|
|
|
|
|
hi,
I have one text box, usually user enters some part numbers to add the product to mini cart.
Now i need to develop intellisense using dotnet i.e when user started to enter any part number, that time it need to display all the partnumbers which is started by that letter.
Supper user enter p then it needs to display all the products whose partnumber is started by p.
like google suggest.
Can help anybody on this.
Thanks and Regards
Dayakar D.N
|
|
|
|
|
If you are working on .Net framework 2.0 or later then use AJAX AutoComplete Extender control.
Search in google or you can get it from here. Demo
please don't forget to vote on the post that helped you.
|
|
|
|
|
Hi guys my file name is like this:
man.xls...,
I am getting that file name using fileinfo object...,
f.name like
Suppose if i want to get only the name of the file,
mean only "man" what i have to do?,
Its possible to get like that?
Thanks & Regards,
NeW OnE,
please don't forget to vote on the post
|
|
|
|
|
New one wrote: Suppose if i want to get only the name of the file,
mean only "man" what i have to do?,
Path.GetFileNameWithoutExtension(f.name);
regard
Khan
please don't forget to vote on the post that helped you.
|
|
|
|
|
I have the below code to count the rows selected from the datagrid and stores the selected value.
How can i get the seleted row's and perticular column.
If datagrid displays code and name of employees,how can i store code of employee for the selected rows.
PLease seee my code,i can count the rows but values are not saving.
On a button click event--->
Dim rowCount As Integer = 0
Dim DemoGridItem As DataGridItem
For Each DemoGridItem In DG1.Items
Dim myCheckbox As CheckBox = CType(DemoGridItem.Cells(0).Controls(1), CheckBox)
If myCheckbox.Checked Then
rowCount += 1
End If
Next
Lblstatus.Text = rowCount.ToString())
Plese tell me how to get code values in different selected rows?
kissy
|
|
|
|
|
Here is the problem, okay besides my customer's broken architecture:
Backend DB uses an entity data class. WebSvcA passes entity. WebSvcB also passes entity.
So what we have is: Entity.Class1, WebSvcA.Class1, and WebSvcB.Class1.
Their solution? A Util.dll with convert functions that go every which way.
I feel ill.
Are there any recommendations? Such as Entity.Class1 impleneting some serialization interface such that the proxy classes are unnecessary? I'm looking in to an automated (non-reflective) way to serialize between the 3 classes as they are all the same. Still, I can't help thinking there is a more clever way (other than changing the architecture which is NOT an option so don't ask).
|
|
|
|
|
Can anyone Pleeeaaassseee tell me how to open a vb.net application from an asp.net 2.0 website. Can I please have the actual steps from start to finish.Thank u in advance
|
|
|
|
|
1. Put a sensible title
2. Learn how to spell
3. A web site cannot randomly start applications on the PC
Bob
Ashfield Consultants Ltd
|
|
|
|
|
I want to create a screen shot by web application on clik on (Report Abuse) a link on page. How I do this
please help me by Diwakar Sharma
modified on Friday, July 25, 2008 8:21 AM
|
|
|
|
|
So you want someone to click a button on your app which makes a screenshot?
|
|
|
|
|
Hi all,
Is there any option to get Content of GridView Column by javascript.
I have more than 10 columns and rows are vari from 1 to 50.
thanks
Sanjay Kunjam
------------------------------------------------------------------
"Computers are useless. They can only give answers" - Pablo Picasso
------------------------------------------------------------------
|
|
|
|
|
It would be much easier to do it using c#, why do you want to use javascript?
|
|
|
|
|
check this out:
http://www.codeproject.com/KB/webforms/JavaRowSelect.aspx
|
|
|
|
|
Hi all,
I am using the above to register my scripts throughout my site.
I have a couple that I want included on all pages so I am doing it on my master page, however, I have others that need to be included from the child pages. This isn't a problem in itself, but some of my child scripts need the master scripts to be included first. So when I register a script on my child page it puts the script before the ones registered by my master page.
Is there a way to append the child script to the end of the registered script include block or will it always be placed at the begining in order of loading?
Thanks for any help in advance.
Mark
|
|
|
|