Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~35.9K People Reached
Favorite Forums
Favorite Tags
Member Avatar for soft_coder

Hi, I am using the following method for removing HttpRuntime Cache: HttpRuntime.Cache.Remove("Key"); But some times this code is not working. Any kind of help will be appreciated.

Member Avatar for davidkroj
0
192
Member Avatar for soft_coder

Hi I am facing the following the following problem. I have 2 ListViews and 2 DataPagers - 1 for each. Now when I paginate first DataPager the second DataPager page index is getting reset to 0. So, the second ListView is getting reset to the first page. Any kind of …

0
79
Member Avatar for soft_coder

Hi! I have the following scenario: [CODE] <html> <head> </head> <body> <iframe id="iframe_page" src="https://www.samplepage.com"/> </body> </html> [/CODE] Please see the html above. Here I have an iframe loading a page in another domain. What exactly happening is, first the iframe loads a page in our domain then that page redirects …

0
58
Member Avatar for soft_coder

Hi! I am calling a Java Web Service from asp.net. I am invoking the service only once but it is getting invoked on Java Side multiple times. I have no idea why this is happening. Any kind of help will be appreciated.

Member Avatar for hericles
0
73
Member Avatar for soft_coder

Hi! I have added a user control to a master page that contains only JavaScript only, neither HTML nor server side code. When I opened the page I got the following error: [B][url]http://server/_catalogs/masterpage/Master.master(26):[/url] error CS0030: Cannot convert type 'Microsoft.SharePoint.WebControls.CssRegistration' to 'System.Web.UI.IAttributeAccessor'[/B] Please suggest.

Member Avatar for hericles
0
95
Member Avatar for soft_coder

Hi! I am facing a peculiar issue. I have four update panels in an aspx page and each contains a Timer with Interval increasing by 1 millisecond, each inside a webpart. The issue is the first timer is triggering correctly but when the 2nd timer is triggered then it is …

Member Avatar for soft_coder
0
165
Member Avatar for soft_coder

Hi I have a byte array of size 2138 and it is serialized. Now I want to store that in cache or session. I have the following: 1. Deserialized the Byte array into an object. 2. Stored the same in Session. 3. Whenever required I have again Serialized the Object …

0
69
Member Avatar for soft_coder

Hi! I want to set the style of individual items in an asp:dropdownlist. The item may be disabled/enabled. My immediate requirement is to set the style of an individual item in a dropdown which is disabled. [CODE] ddlCategory.DataSource = dtCategory; ddlCategory.DataTextField = "CategoryName"; ddlCategory.DataValueField = "CategoryID"; ddlCategory.DataBind(); [/CODE] The above …

0
64
Member Avatar for soft_coder

Hi I am using [CODE]window.status = "Message"[/CODE] for IE but I want to do the same in other browsers. For time being I want to do it in firefox but I have to manually enable it in browser options. Is it possible to do so programmatically? Thanks in advance.

Member Avatar for twiss
0
60
Member Avatar for soft_coder

Hi I am developer in .NET but I need to access session object in client side and redirect the page to login. i am using the following code snippet but I am unable to achieve the target. [CODE]function CheckSession() { var session = '<%=Session["username"] != null%>'; //session = '<%=Session["username"]%>'; alert(session); …

Member Avatar for soft_coder
0
24K
Member Avatar for soft_coder

Hi! I am a .NET developer. I have two consecutive web parts. Each webpart is inside an update panel. So the scenario is like there are two update panels one after the other. The problem I am facing is when one is fired the other is also firing. The code …

Member Avatar for soft_coder
0
107
Member Avatar for soft_coder

Hi! I am a .NET developer. I have added a Java WSDL as a web reference to an application. After someday I deleted the reference and added it again. From that day I am unable to build/debug/deploy the solution. I am getting the following error: [B]Custom tool error: Unable to …

0
54
Member Avatar for soft_coder

I have a sharepoint application in which all the pages after login page are loading slowly. It takes around 1.5 to 2 minutes. I am calling web services in the page and storing the response in cache. The cache expires in 15 minutes and it is again recreated. What should …

0
56
Member Avatar for soft_coder

Hi! I have to create a virtual keyboard and for that I need a div tag with small buttons. I have the code for virtual keyboard using jquery but I don't know any CSS methods in order to make the format of a virtual keyboard. For example, the kind od …

0
65
Member Avatar for soft_coder

Hi! I want to create a circle using ext-js and fill it with 3D gradient. But I don't know. I searched almost all the APIs but I couldn't find the method to do so. Any help will appreciated.

0
55
Member Avatar for soft_coder

Hi! I am trying to find the length of a video file using the following code: [CODE]Microsoft.DirectX.AudioVideoPlayback.Video video = new Microsoft.DirectX.AudioVideoPlayback.Video(path); StringBuilder sb = new StringBuilder(); sb.Append(video.Caption); sb.Append("\r\n"); sb.Append(video.Size.Width.ToString()); sb.Append( "\r\n"); sb.Append(video.Size.Height.ToString()); sb.Append("\r\n"); sb.Append(video.Duration.ToString()); textBox1.Text = sb.ToString(); [/CODE] But in order to use this code I need to add reference …

Member Avatar for Fortinbra
0
203
Member Avatar for soft_coder

Hi! I have created a listview in which data is binded from a sharepoint list. There is an asp image button inside the listview on clicking which a an image should be displayed. The code is as follows: ASPX file: [CODE]<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ …

Member Avatar for soft_coder
0
1K
Member Avatar for soft_coder

Hi! I have created a modal dialog using Jquery and I am opening an aspx page inside the modal dialog. The code is as follows: ASPX Page: [CODE]<%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %> <%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %> <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, …

Member Avatar for soft_coder
0
148
Member Avatar for soft_coder

Hi! I have created an asp.net page with codebehind in Sharepoint. The code is as follows: The ASPX page: [CODE]<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %> <%@ Import Namespace="Microsoft.SharePoint" %> …

0
77
Member Avatar for soft_coder

I need to create a web service for sharepoint whose methods are accessible to outside world.Please let me know how can i achieve this. I am a novice. Please help! Thanks in Advance

0
54
Member Avatar for soft_coder

Hi! I have successfully implemented a modal dialog using jquery with the help of Daniweb forum but I am facing one more problem. Well, I have to intregrate it with a sharepoint page. 1. It is running fine in a normal web application. 2. It is running in a webpart. …

Member Avatar for soft_coder
0
660
Member Avatar for soft_coder

Hi! I am trying to create a callout using jquery but somehow the code is not working. [CODE]<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <link rel="stylesheet" type="text/css" href="Scripts/Menu.css"/> <script type="text/javascript" src="Scripts/jquery.js"></script> <script type="text/javascript" src="Scripts/jquery.callout.js"></script> <!--<script type="text/javascript" src="jquery.callout-min.js"></script>--> <script type="text/javascript" src="Scripts/callout.js"></script> <title></title> </head> <body> <form id="form1" runat="server"> <ul id="myMenu" class="contextMenu"> <li class="insert"><a href="#insert" class="link" …

Member Avatar for Airshow
0
1K
Member Avatar for soft_coder

Hi! I am a developer. I am using jquery to create a modal dialog. I am using the following code snippets. Please tell what is going wrong: [CODE]<link rel="stylesheet" type="text/css" href="jquery-ui-1.8.7.custom.css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="jquery.min.1.4.js"></script> <script type="text/javascript" src="jquery-ui.min.1.8.js"></script> <script type="text/javascript" src="jquery.min.1.3.2.js"></script> <script type="text/javascript" src="jquery-ui.min.1.7.2.js"></script> [/CODE] [CODE]$(document).ready(function () …

Member Avatar for soft_coder
0
147
Member Avatar for soft_coder

Hi! I am working with jquery and I need to open an aspx page in a div tag that comes as a modal dialog. I am successful in doing the following: [CODE]$("#addaccount").load('test.html'); $("#addaccount").load('test.php'); $("#addaccount").load('test.jsp');[/CODE] But when I do this: [CODE]$("#addaccount").load('test.aspx');[/CODE] Something goes wrong and I am unable to do so. …

0
58
Member Avatar for soft_coder

Hi! I have created a modal dialog. When I close it the page refreshes automatically but in my scenario the page should not do so. The code I am using is: [CODE]$(document).ready(function () { $("#addaccount").dialog({ height: 'auto', width: 'auto', modal: true, autoOpen: false }); $("#addaccountlink").click(function (e) { $('#addaccount').dialog('open'); });[/CODE] Here …

Member Avatar for soft_coder
0
7K
Member Avatar for soft_coder

I have tried the following but I am unable to do so: <link rel="stylesheet" type="text/css" href="http://7h5nk1s:11261/ecmaomexamples/SiteAssets/password_meter.css"/> <script type="text/javascript" src="http://7h5nk1s:11261/ecmaomexamples/SiteAssets/password_meter.js"></script> When I try to access these files the following line throws error: document.write('<script type="text/javascript" src="/_layouts/blank.debug.js?rev=jE3bS2JFTB63z3iWgauX9w%3D%3D"></' + 'script>'); in the sharepoint page. Urgent help needed.

0
81
Member Avatar for soft_coder

Hi! I am a developer. I am using jquery to implement various functionalities. I am using jquery.js with jquery-1.2.6.min.js. It shows an error in the following code snippet: (!q&&!n&&c.data(this,k,new c[l][k](this,p))._init()) as object expected when I debug the web application. I am a novice in this field. Any kind of help …

Member Avatar for soft_coder
0
273