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.

~1K People Reached
Favorite Tags
Member Avatar for coder389

I have files in e pub format. I have to show their contents to the user. How do I read them in asp.net?

Member Avatar for geniusvishal
0
83
Member Avatar for suneye

I am getting an error that is"Invalid object name 't_Images' " here is my code: SqlConnection s = new SqlConnection(con); s.Open(); byte[] data; using (System.IO.MemoryStream stream = new System.IO.MemoryStream()) { video.Save(stream, System.Drawing.Imaging.ImageFormat.Bmp); data = stream.ToArray(); } SqlCommand s_Com = new SqlCommand("INSERT INTO t_Images (Image_ID,Image)"+" VALUES (1,@data) ; ", s); SqlParameter …

Member Avatar for Mitja Bonca
0
135
Member Avatar for coder389

I have a long string and I want to display the first 50 characters of it (without including the HTML content). Can anyone suggest any method?

Member Avatar for G_Waddell
0
79
Member Avatar for mani508

hello i saved the image path + filename + guid in database and image store in folder. i want to show image from database in image control of asp.net how its possible? kindly tell me as soon as possible thanks in advance...

Member Avatar for coder389
0
95
Member Avatar for coder389

The speed of retrieval of data on my site is very slow because it loads more than about 10 tabs at the same time. So, I want to implement caching in it. But, I don't know how to implement caching?

Member Avatar for kvprajapati
0
173
Member Avatar for coder389

I have a long string of characters as input and I want to count the number of words in that string. How can I do it through regular expression?

Member Avatar for Mitja Bonca
0
196
Member Avatar for coder389

I have a condition based upon which I require that the AJAX HTML Editor gets disable. This code is not working: edNote.Enabled=false; //edNote is AJAX editor. Please suggest any other means to do this.

Member Avatar for coder389
0
177
Member Avatar for coder389

I want to delete the entire folder or directory along with files and folders contained in it. how can I implement in c#?

Member Avatar for Mitja Bonca
0
228
Member Avatar for coder389

I have the following code: int numberOfWords = 50; string regexMatch = string.Format(@"^(\w+\b.*?){{" + numberOfWords + "}}"); string firstWords = Regex.Match(result, regexMatch).Value; This code displays the first 50 words in a string. Now I want to display next 50 words (51st word to 100th word). How do I do it?

Member Avatar for Momerath
0
140
Member Avatar for coder389

In my web.config file I have to add a key, but I want that its value should be relative to the location of the folder. How can I get it? I have: `<add key="FilePaths" value="c:\Folder1\Folder2\"/>` But I want that I only mention "Folder2" and its starting path is get dynamically. …

0
52
Member Avatar for coder389

I am making a book reader. It takes input files in PDF format. I have to show them in EPUB format. But I don't know how to convert PDF to EPUB format. Please help by suggesting some valuable methods.

0
94