cancel
Showing results for 
Search instead for 
Did you mean: 

Uplaod Excel file

Former Member
0 Kudos

Hi all,

I want to upload an excel file…Is it that the size of the file is only 20KB..

Regards,

Chandrashekar.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Pls you can be more clear ...........?

We use FileUpload UIelement for upload , but where you want to upload ???

To KM or to Server ?????

No problem for 20kb of size.

Thanks ,

Srini

Former Member
0 Kudos

Hi Friends,

I would like to know the maximum limit(Size) for Uploading a file in Excel.

How can i Upload a file in Excel format?

Please let me know.

Thanks and regards,

Chandrashekar.

Former Member
0 Kudos

Hi

1)Take a FileUpload UI element

2)create a vaue attribute of type resource.

3)then attch this attribute , resource property of the FileUpload.

4)For confirmation just take a button and write the following code in the button's action.

IPrivateFileUploadView.IContextElement ele=wdContext.currentContextElement();

if(ele.getFileResource()!=null)

{

IWDResource res=ele.getFileResource();

String s=res.getResourceType().getFileExtension());

String s1=res.getResourceName());

}

else

//display error msg

In the above Fileuplaod is the view name and fileresource is the attribute name.

Regards

Hazrath

Edited by: Hazrath on Mar 31, 2008 1:33 PM