Quantcast
Channel: User Ali Khalid - Stack Overflow
Browsing latest articles
Browse All 42 View Live
↧

Comment by Ali Khalid on Accessing page public property from user control in...

Hi Icarus, You are right, I should have been more clear in my question. I am building a asp.net website not a web application.

View Article


Comment by Ali Khalid on Adding HTTP request header to WCF request

You add the web service directly to your project c#. VS will automatically generate classes for you to call your web service directly but it might not give the option to add a request header, when...

View Article


Comment by Ali Khalid on Checking whether website has certificate C#

whats kind of certificate?

View Article

Comment by Ali Khalid on how to call webservicemethod in windows service

This question is too broad, in order for people to help you, please try to ask a specific question e.g. in your question, it is not clear, weather you need architectural guidance or a specific code...

View Article

Comment by Ali Khalid on How to show popup in 1 thread?

Are you using partial update panels on the page ?

View Article


Comment by Ali Khalid on wp7 listbox selection

In point of view, the major problem is that you have a 1000+ items in a listbox. Do you really need that many items in a listbox. Can you break this down to multiple listboxes ?

View Article

Comment by Ali Khalid on How to check the range of the user input?

The best way to ask a JS question is to us jsfiddle.net . Upload your code on the site and put a link here, this way people can directly make a change to the code and quickly see the results of there...

View Article

Comment by Ali Khalid on Get attribute values to the XML-File

Can you paste the actual code, you are using.

View Article


Comment by Ali Khalid on Create Template Field for n number of columns in...

Can you post a screen shot of your problem.

View Article


Comment by Ali Khalid on using with object type

This Answer provides the reason why you dont need to dispose it stackoverflow.com/a/3734298/394381

View Article

Comment by Ali Khalid on Bootstrap 3 updates shakes UI when a Bootstrap...

Does this problem occur on all browser or only on a selected few ?

View Article

Comment by Ali Khalid on ASP Textbox control placeholder property doesn't...

Yes I agree with you but in case the original poster wants to keep the placeholder tag, I guess he could use the solution i posted.

View Article

Comment by Ali Khalid on Read authentication info (Principal) by developing a...

Try this var principal =ClaimsPrincipal.CreateFromHttpContext(HttpContext.Current);

View Article


Comment by Ali Khalid on Testing functionality based on HTML5 DOM-methods

Could you perhaps use "Modernizr" to check if the functionality exists?

View Article

Comment by Ali Khalid on HTTP Error 400 bad request python

can you the post the content of text_to_check variable, which when passed to urlopen, you receive HTTP 400 error.

View Article


Answer by Ali Khalid for Load Facebook into an iframe

Google and Facebook are using a X-Frame-Options in the HTTP response header to avoid the content being loaded in a iFrame.The X-Frame-Options HTTP response header can be used to indicate whether or not...

View Article

Answer by Ali Khalid for C# How to get the size of the download file for...

In order to find out the length (size) of the file before downloading, you have to read the Content-Length header in the HTTP response, it will provide the size of the file.Source:...

View Article


Answer by Ali Khalid for Static to instance, how do I handle properly?

I don't think it will be possible to keep the same name and parameters but you could do this[Obsolete("This class is obsolete; use class B instead")]Visual Studio will hint to the user, that they...

View Article

Answer by Ali Khalid for .net barcode generation

try jquery-barcodeIts a javascript library to generate bar codes. Check out this question for other alternatives.

View Article

Answer by Ali Khalid for Cookie.Path doesn't work with Internet Explorer

Change cookie.Path = Request.Url.GetLeftPart(UriPartial.Authority);to thiscookie.Path = "/";I am assuming you want to apply the cookie to the whole domain.

View Article

Answer by Ali Khalid for javascript async calls

When the slider moves, store the value of the slider and wait for a short period of time (Lets suppose 500 ms), if there is no movement in that time period then call the web service, otherwise if the...

View Article


Answer by Ali Khalid for ASP.NET - Is it possible to put the user agent into...

The User-Agent string format is currently specified by Section 14.43 of RFC 2616 (HTTP/1.1)The field can contain multiple product tokens (section 3.8) andcomments identifying the agent and any...

View Article


Answer by Ali Khalid for ASP.NET - How to find out if the user is a mobile user?

Check out 51degreesIt’s provided as a .NET open source class library that detects mobile devices and browsers, enhancing the information available to .NET programmers. Using 51Degrees.mobi Device Data,...

View Article

Answer by Ali Khalid for Execute javascript on page load but not on button click

Try this:<script type="text/javascript">function getFlashMovie(movieName) { var isIE = navigator.appName.indexOf("Microsoft") != -1; return (isIE) ? window[movieName] :...

View Article

Answer by Ali Khalid for form post back related

You can use the Page.IsPostBack Property to check, if its a Postback or page refresh.

View Article


Accessing page public property from user control in master page

I am trying to access a public property of a page inside a master page from a user control which is also inside the same master page. Most of the examples I have seen recommend that I place the value...

View Article

Answer by Ali Khalid for Convert sound to byte array in javascript

You can see this blog post to understand the JS File Reader API. Basically you want to use the readAsArrayBuffer() of JS File Reader API to read the file and get back a byte array.

View Article

Image may be NSFW.
Clik here to view.

Answer by Ali Khalid for YUI Compressor with .NET website project

ASP.NET web applications do support post build events. Go to web applications settings page.Click on the Build Events button and this window will open.Click on the "Edit Post Build" button to open the...

View Article

Freebase MQL query retrieving inconsistent results

When I run this query in the freebase query builder[{"/type/object/id": "/en/michael_jackson","/type/object/name": null,"/type/object/type": "/music/artist","/music/artist/album": [{"id": null,"name":...

View Article



Answer by Ali Khalid for Reproduce the gmail windows shortcuts

You will have to check e.target.typeto see if you are in a input or other part of the page.

View Article

Answer by Ali Khalid for Getting and inserting into other table UserId

just convert the column in the other table to a string and insert the uniqueidentifier as a string in the other table.

View Article

Answer by Ali Khalid for Retrieve the event name and the control that...

Rather than overriding the default 'System.Web.UI.Page' class, you can intercept events using PostSharp. You can check out the following article to get a walk-through PostSharp Principles: Day 11 –...

View Article

Answer by Ali Khalid for How to show popup in 1 thread?

In order to understand why you are having this problem, you must understand the basics of the HTTP protocol. HTTP is a stateless protocol, which means that once the client (browser) request a page from...

View Article


Answer by Ali Khalid for Tracing GET/POST calls

There are a couple of proxies (http://mitmproxy.org/ is popular, I really like http://www.charlesproxy.com/) which can MITM the HTTPS connection.

View Article

Answer by Ali Khalid for Google Analytics for Mac OSx application

Google Analytics is designed to work with web applications not for desktop apps. Although it might be possible to collect info about your application and send it to your Google Analytic account but the...

View Article

Answer by Ali Khalid for How to replace part of string by position?

As an extension method.public static class StringBuilderExtension{ public static string SubsituteString(this string OriginalStr, int index, int length, string SubsituteStr) { return new...

View Article


Answer by Ali Khalid for What is the purpose of the separating tag

The <more\> is a empty child element of the <Item> element. You can rewrite the above example as <?xml version='1.0'?><!-- This is a sample XML document...

View Article


Answer by Ali Khalid for SignalR chat room with Acknowledgement of message...

When sending a message, append a random string of 8 characters to the start of the message. On your message received function, cut out the first 8 characters and send those back to the original sender....

View Article

Answer by Ali Khalid for seek in http connection when downloading with python

The http protocol defines a way for a client to request part of the resource see http://www.w3.org/Protocols/rfc2616/Since all HTTP entities are represented in HTTP messages as sequences of bytes, the...

View Article

Answer by Ali Khalid for Can I install and run SQL Server locally to develop...

Visit SQL Server Downloads and download the Express edition

View Article

Answer by Ali Khalid for How to insert data to multiple tables in one db...

There is no way to create a user and add the roles at the same time unless you want to create a custom stored procedure in MySQL. Lets try to simplify your problem. You do not know the USER ID before...

View Article


Answer by Ali Khalid for in-memory DB (lokiJS) vs regular indexedDB

LokiJS is a in-memory DB, which means it will allow you to load, query etc all your data in-memory. Since it is written in Javascript, it will work on multiple environments, inside your browser, inside...

View Article
Browsing latest articles
Browse All 42 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>